latestOpenAPI 3.0.12026-08-104242199.9 KB
8df83424e244
Reference account payouts
Initiate a payout to a reference account
Initiates a payout to the reference account specified in the request payout. The specified reference account must be associated with the account specified in the request path. Payout will be executed after 2FA confirmation. This endpoint allows the payout from reference account without scoping to a person or business id. Also, this endpoint allows the use of credit line balance when set up in the partner configuration.
post/v1/accounts/{account_id}/reference_account_payouts
Path parameters
account_idstring required
Request body
Example request
{
"reference_account_id": "ee4cc80bee604de09d036d8b7a9b6cb0",
"reference": "9d2b59c2-c68f-413c-b2a9-a2f5bfd3f669",
"end_to_end_id": "RF3-202101-123456",
"description": "Withdrawal SPAY - DD.MM.YYYY",
"use_credit": true,
"instant_payment_rail": "sepa_instant",
"amount": {
"value": 100,
"currency": "EUR",
"unit": "cents"
}
}Response
Successful creation of a payout transaction.
Example response
{
"id": "4b157d71def54b5c9dac28ef1d04432csctp",
"reference": "9d2b59c2-c68f-413c-b2a9-a2f5bfd3f669",
"status": "ACCEPTED",
"end_to_end_id": "RF3-202101-123456",
"description": "Payout for January 2021",
"reference_account_id": "d5325027ca2840d4b3a97b8ec8b837f0racc",
"decline_reason": "instant_payment_rail_failure",
"instant_payment_rail": "sepa_instant",
"use_credit": true,
"amount": {
"currency": "EUR",
"value": 100
}
}