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

amountstring
idempotency_keystring
payment_datestring
payment_method'card' | 'standard_ach'
payment_method_idstring

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

messagestring
statusstring

Example response

{
  "message": "Payment is being processed!",
  "status": "processing"
}