Delayed Routing API
Create a delayed route
Create a route for a specific payment. The routed amount is credited to the account of your customer.
post/v2/payments/{paymentId}/routes
Headers
idempotency-keystring
Example:123e4567-e89b-12d3-a456-426
A unique key to ensure idempotent requests. This key should be a UUID v4 string.
Request body
Example request
{
"amount": {
"currency": "EUR",
"value": "10.00"
},
"destination": {
"type": "organization",
"organizationId": "org_1234567"
},
"description": "Payment for Order #12345"
}Response
The route object.