Checkout
Create a payment from checkout token
Creates a payment for the invoice associated with the checkout token. Customer ID and invoice ID are extracted from the token.
post/checkout/v1/payments
Request body
Example request
{
"amount": "100.00",
"idempotency_key": "00000000-0000-0000-0000-000000000000",
"payment_date": "2025-01-01T00:00:000Z",
"payment_method_id": "00000000-0000-0000-0000-000000000000"
}Response
Created
Example response
{
"message": "Payment is being processed!",
"status": "processing"
}