All withdrawals related paths
/payments/withdrawalsTrigger a withdrawal
reference_account_idstringrequired
Reference account unique identifier.
account_group_idstringrequired
Account group unique identifier.
user_idstringrequired
User unique identifier.
amountstringrequired
currencystringAlphabetic three-letter ISO 4217 currency code.
remittance_informationstringPayment reference the end user will see in their bank statement for the corresponding credit transfer booking (“Verwendungszweck”). We recommend that you keep this info concise and avoid special characters or non-standardised formatting (see more).
purpose_codestringPurpose of the payment based on ExternalPurpose1Code from ISO 20022.
{
"reference_account_id": "295378ec-036e-4f3f-ae5c-2be85c93e837",
"account_group_id": "2596db3b-0d03-4651-9eda-970910479dfb",
"user_id": "e56c14b3-8370-4c04-bc67-7092f7ec113c",
"amount": "200.00",
"currency": "EUR",
"remittance_information": "Withdrawal",
"purpose_code": "OTHR"
}Withdrawal
{
"id": "6ffa6b16-2380-4e7a-88b2-ae625c8eef99",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"reference_account_id": "295378ec-036e-4f3f-ae5c-2be85c93e837",
"account_group_id": "ac1c39e9-2101-46b8-a624-d10a9e351b6c",
"user_id": "b668282b-cdf3-439a-bda2-3f3c9f655bb7",
"amount": "200.00",
"currency": "EUR",
"remittance_information": "Withdrawal",
"taxes": [
{
"type": "TOTAL",
"amount": "38.00",
"currency": "EUR"
}
],
"status": "NEW",
"purpose_code": "OTHR"
}/payments/withdrawals/{withdrawal_id}Retrieve withdrawal
withdrawal_idstringrequired
Cash withdrawal unique identifier
Withdrawal
{
"id": "6ffa6b16-2380-4e7a-88b2-ae625c8eef99",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"reference_account_id": "295378ec-036e-4f3f-ae5c-2be85c93e837",
"account_group_id": "ac1c39e9-2101-46b8-a624-d10a9e351b6c",
"user_id": "b668282b-cdf3-439a-bda2-3f3c9f655bb7",
"amount": "200.00",
"currency": "EUR",
"remittance_information": "Withdrawal",
"taxes": [
{
"type": "TOTAL",
"amount": "38.00",
"currency": "EUR"
}
],
"status": "CONFIRMED",
"purpose_code": "OTHR"
}/payments/withdrawals/{withdrawal_id}Cancels a withdrawal specified by its ID. It is only possible to cancel a withdrawal if it has the status NEW.
withdrawal_idstringrequired
Cash withdrawal unique identifier
Request has been processed successfully.
Empty response
/account_groups/{account_group_id}/payments/withdrawalsList withdrawals
sortstringField of resource to sort by
orderstringSort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.
offsetintUse the offset argument to specify where in the list of results to start when returning items for a particular query.
limitintUse the limit argument to specify the maximum number of items returned.
Withdrawals list
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1
},
"data": [
{
"id": "6ffa6b16-2380-4e7a-88b2-ae625c8eef99",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"reference_account_id": "295378ec-036e-4f3f-ae5c-2be85c93e837",
"account_group_id": "ac1c39e9-2101-46b8-a624-d10a9e351b6c",
"user_id": "b668282b-cdf3-439a-bda2-3f3c9f655bb7",
"amount": "200.00",
"currency": "EUR",
"remittance_information": "Withdrawal",
"taxes": [
{
"type": "TOTAL",
"amount": "38.00",
"currency": "EUR"
}
],
"status": "CONFIRMED",
"purpose_code": "OTHR"
}
]
}idstringrequired
Event unique identifier
created_atstringrequired
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
typestringrequired
Event type
objectobject (Payments - Withdrawal)required
idstringrequired
Cash withdrawal unique identifier
created_atstringrequired
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
updated_atstringrequired
Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC
reference_account_idstringrequired
Reference account unique identifier.
account_group_idstringrequired
Account group unique identifier.
user_idstringrequired
User unique identifier.
amountstringrequired
currencystringrequired
Alphabetic three-letter ISO 4217 currency code.
remittance_informationstringrequired
Payment reference the end user will see in their bank statement for the corresponding credit transfer booking (“Verwendungszweck”). We recommend that you keep this info concise and avoid special characters or non-standardised formatting (see more).
taxesarraystatusstringStatus of the withdrawal
purpose_codestringPurpose of the payment based on ExternalPurpose1Code from ISO 20022.
webhook_idstringrequired
Webhook unique identifier.
{
"id": "8962b496-8d42-4560-bfab-10490dd1a721",
"created_at": "2021-07-21T14:10:00.00Z",
"type": "WITHDRAWAL.NEW",
"object": {
"id": "6ffa6b16-2380-4e7a-88b2-ae625c8eef99",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"reference_account_id": "295378ec-036e-4f3f-ae5c-2be85c93e837",
"account_group_id": "ac1c39e9-2101-46b8-a624-d10a9e351b6c",
"user_id": "b668282b-cdf3-439a-bda2-3f3c9f655bb7",
"amount": "200.00",
"currency": "EUR",
"remittance_information": "Withdrawal",
"taxes": [
{
"type": "TOTAL",
"amount": "38.00",
"currency": "EUR"
}
],
"status": "NEW"
},
"webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}Request has been processed successfully.
Empty response
Was this page helpful?