v1
latestOpenAPI 3.1.02026-07-24180245513.9 KBPayment Captures
Create payment capture
Create a payment capture, that can be used for reconciliation purposes.
post/payment_captures
Headers
Idempotency-Keystring
Example:8A2gcC
An idempotency key is a unique value generated by the client which the server uses to recognize subsequent retries of the same request.
Request body
Example request
{
"amount": 500,
"currency": "EUR",
"date": "2022-01-03",
"metadata": {
"property_a": true,
"property_b": "some label"
}
}Response
200
Example response
{
"idempotency_key": "8A2gcC",
"object": "payment_capture",
"amount": 500,
"original_payment_amount": 500,
"currency": "EUR",
"date": "2022-01-03",
"value_date": "2022-01-03",
"remittance_date": "2022-01-03",
"fee_amount": 500,
"fee_currency": "EUR",
"net_amount": 500,
"net_currency": "EUR",
"reconciled_amount": 2000,
"metadata": {
"property_a": true,
"property_b": "some label"
},
"cbs_data": {
"transaction_id": "c2c303de-c0f0-4015-801d-6ae24f248092",
"authorization_id": "62f87f47-86c6-4b1e-b49d-e6df91922cd7",
"transactions": [
{
"id": "c2c303de-c0f0-4015-801d-6ae24f248092",
"type": "withdrawal",
"context": "deposit",
"authorization_id": "62f87f47-86c6-4b1e-b49d-e6df91922cd7",
"channel": "cash",
"booked_at": "2022-01-03T11:53:19.568Z"
}
]
}
}