The POST /payouts
endpoint initiates a payout.
required | object (PayoutInitiation) The initiation payload for the payout. |
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
The requested entity, such as a payment, was not found
Too many requests
An unexpected or internal server error
The operation was not implemented
Service is unavailable
Gateway has timed out
{- "initiation": {
- "description": "e49j-2145-sp17-k3h0",
- "refId": "9htio4a1sp2akdr1aa",
- "onBehalfOfId": "c5a863bc-86f2-4418-a26f-25b24c7983c7",
- "amount": {
- "value": "10.23",
- "currency": "EUR"
}, - "debtor": {
- "accountId": "a12345"
}, - "creditor": {
- "name": "Customer Inc.",
- "ultimateCreditorName": "Customer Inc.",
- "bankName": "string",
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "accountNumber": "12345678",
- "sortCode": 123456
}
}
}
{- "payout": {
- "id": "po:yj6sSEf7ZYFP8yxN6XWi1KkMEcB:2gFUX1NDget",
- "bankTransactionId": "2UhwCZ3BMaEcAUK8bZdukor7NL4tH6TBuu6aJMp5KKfX:5zKcENpV",
- "memberId": "m:123456abcd:abcd",
- "createdDateTime": "2017-04-05T10:43:07.000+00:00",
- "updatedDateTime": "2017-04-05T10:45:07.000+00:00",
- "status": "INITIATION_COMPLETED",
- "bankPaymentStatus": "ACPC",
- "statusReasonInformation": "The payment is settled on debtor side.",
- "initiation": {
- "description": "payout for some reason",
- "refId": "9htio4a1sp2akdr1aa",
- "amount": {
- "value": "10.23",
- "currency": "EUR"
}, - "debtor": {
- "accountId": "a12345"
}, - "creditor": {
- "name": "Customer Inc.",
- "ultimateCreditorName": "Customer Inc.",
- "bankName": "string",
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "accountNumber": "12345678",
- "sortCode": 123456
}
}
}
}
The GET /payouts
endpoint retrieves a complete or filtered list of payouts.
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
The requested entity, such as a payment, was not found
Too many requests
An unexpected or internal server error
The operation was not implemented
Service is unavailable
Gateway has timed out
{- "payouts": [
- {
- "id": "po:yj6sSEf7ZYFP8yxN6XWi1KkMEcB:2gFUX1NDget",
- "bankTransactionId": "2UhwCZ3BMaEcAUK8bZdukor7NL4tH6TBuu6aJMp5KKfX:5zKcENpV",
- "memberId": "m:123456abcd:abcd",
- "createdDateTime": "2017-04-05T10:43:07.000+00:00",
- "updatedDateTime": "2017-04-05T10:45:07.000+00:00",
- "status": "INITIATION_COMPLETED",
- "bankPaymentStatus": "ACPC",
- "statusReasonInformation": "The payment is settled on debtor side.",
- "initiation": {
- "description": "payout for some reason",
- "refId": "9htio4a1sp2akdr1aa",
- "amount": {
- "value": "10.23",
- "currency": "EUR"
}, - "debtor": {
- "accountId": "a12345"
}, - "creditor": {
- "name": "Customer Inc.",
- "ultimateCreditorName": "Customer Inc.",
- "bankName": "string",
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "accountNumber": "12345678",
- "sortCode": 123456
}
}
}
], - "paging": {
- "limit": 0,
- "offset": "LerV6Jmex"
}
}
The GET /payouts/{id}
endpoint retrieves a given payout.
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
The requested entity, such as a payment, was not found
Too many requests
An unexpected or internal server error
The operation was not implemented
Service is unavailable
Gateway has timed out
{- "payout": {
- "id": "po:yj6sSEf7ZYFP8yxN6XWi1KkMEcB:2gFUX1NDget",
- "bankTransactionId": "2UhwCZ3BMaEcAUK8bZdukor7NL4tH6TBuu6aJMp5KKfX:5zKcENpV",
- "memberId": "m:123456abcd:abcd",
- "createdDateTime": "2017-04-05T10:43:07.000+00:00",
- "updatedDateTime": "2017-04-05T10:45:07.000+00:00",
- "status": "INITIATION_COMPLETED",
- "bankPaymentStatus": "ACPC",
- "statusReasonInformation": "The payment is settled on debtor side.",
- "initiation": {
- "description": "payout for some reason",
- "refId": "9htio4a1sp2akdr1aa",
- "amount": {
- "value": "10.23",
- "currency": "EUR"
}, - "debtor": {
- "accountId": "a12345"
}, - "creditor": {
- "name": "Customer Inc.",
- "ultimateCreditorName": "Customer Inc.",
- "bankName": "string",
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "accountNumber": "12345678",
- "sortCode": 123456
}
}
}
}