S2S Integration

Charge Transaction

POST https://swipepointe.com/api/charge

Headers

Name
Type
Description

authorization*

String

Bearer YOUR_SECRET_KEY

content-type*

String

application/json

Request Body

Name
Type
Description

amount*

String

amount

currency*

String

currency - USD

reference*

String

your transaction reference

firstname*

String

first name

lastname*

String

last name

email*

String

email

phone*

String

phone

cardName*

String

card name

cardNumber*

String

card number

cardCVV*

String

card CVV

expMonth*

String

expiry month - two digits

expYear*

String

expiry year - two digits

country*

String

county code by alpha 2

city*

String

city

address*

String

address

ip_address*

String

ip address

zip_code*

String

zip code

state*

String

state

callback_url*

String

callback url with method GET

webhook_url

String

webhook url with method POST

Response data for 2D
{
  "status" : "success",
  "message" : "success",
  "data" : {
      "reference" : "abssjsu222",
      "orderid" : "1282827",
      "transaction" : {
          "status" : "success",
          "message": "Transaction is approved"
      }
  }
}

Response data for 3DS
{
  "status" : "success",
  "message" : "success",
  "data" : {
      "reference" : "abssjsu222",
      "orderid" : "1282827",
      "link" : "https://swipepointe.com/checkout/1231/a292929acvvb881272aajakakaka"
  }
}

Last updated