Retrieve a collection of payout payments
GET/api/payout_transaction_details
This API endpoint is intended to retrieve a collection of payout payments, specifically recent payout payments for an account.
Request
Query Parameters
Default value: 1
The collection page number
Possible values: <= 50
Default value: 30
The number of items per page
Enable or disable pagination
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
Possible values: [ASC, DESC]
Sort the results by the specified field
Responses
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Beneficiary-PayoutTransactionDetailView
- ]
Possible values: [created, pending, transferred, canceled, pending_execution, executed, execution_error]
If left empty, the next possible execution date will be selected automatically
This text will be seen by the beneficiary
Possible values: [DEBT, SHAR, CRED]
For LOCAL payments leave it empty, for SWIFT payments provide a value
beneficiary object
The beneficiary field is required, except for payments to IBANs linked to existing amnis customers.
[
{
"id": 1,
"account": 1,
"currency": "CHF",
"amount": "100.00",
"status": "executed",
"executionDate": "2023-01-01T00:00:00+00:00",
"transferredAt": "2023-01-01T00:00:00+00:00",
"finishedAt": "2023-01-01T00:00:00+00:00",
"reference": "Payment for car rental",
"feeSchedule": "SHAR",
"contact": 1,
"beneficiary": {},
"fromAutomation": true
}
]
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}