Card Payments

Here are the APIs to process card transactions through Sendsprint’s payment gateway.

Sample test cards to use are:

  • 4242424242424242

  • 4273149019799094

  • 4659105569051157

Charge

This endpoint is used to initiate a card payment transaction.

URL
{baseUrl}/developer/chargecard
REQUEST BODY SAMPLE
{
  "source": {
    "type": "string",
    "number": "string",
    "expiry_month": 0,
    "expiry_year": 0,
    "cvv": "string"
  },
  "amount": 0,
  "currency": "string",
  "reference": "string"
}

Last updated