v2

latestOpenAPI 3.1.12026-08-06856719.6 KB

Charge the saved card

Once the card is saved you can charged the card anytime using the charge API

post/v1/charge/recurring-billing/{recurring_billing_id}

Path parameters

recurring_billing_idstring uuid required

id value from the create recurring billing API

Headers

X-BUSINESS-API-KEYstring required
Example:b286daabf9921b5a01a4621f026c111e046f8911feba212996c92159b98427d

Request body

currencystring required

The currency

Example request

{
  "currency": "SGD"
}

Response

200

payment_idstring
recurring_billing_idstring
amountinteger
currencystring
statusstring

Example response

{
  "payment_id": "9746f906-bdbb-4064-8372-642cf5877e0c",
  "recurring_billing_id": "9746f8c2-2b7c-4c78-8832-012f203ae687",
  "amount": 100,
  "currency": "usd",
  "status": "succeeded"
}