All withdrawals related paths
/payments/withdrawals
Trigger a withdrawal
reference_account_id
string
required
Reference account unique identifier.
account_group_id
string
required
Account group unique identifier.
user_id
string
required
User unique identifier.
amount
string
required
remittance_information
string
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).
{
"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",
"remittance_information": "Withdrawal"
}
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",
"status": "NEW"
}
/payments/withdrawals/{withdrawal_id}
Retrieve withdrawal
withdrawal_id
string
required
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",
"status": "CONFIRMED"
}
/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_id
string
required
Cash withdrawal unique identifier
Request has been processed successfully.
Empty response
/account_groups/{account_group_id}/payments/withdrawals
List withdrawals
sort
string
Field of resource to sort by
order
string
Sort order of the result list if the sort
parameter is specified. Use ASC
for ascending or DESC
for descending sort order.
offset
int
Use the offset
argument to specify where in the list of results to start when returning items for a particular query.
limit
int
Use 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",
"status": "CONFIRMED"
}
]
}
id
string
required
Event unique identifier
created_at
string
required
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
type
string
required
Event type
object
object (Payments - Withdrawal)
required
webhook_id
string
required
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",
"status": "NEW"
},
"webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}
Request has been processed successfully.
Empty response
Was this page helpful?