Card Payment

Process Card Payment

POST /api/process/card/:adviceReference

Process a Card Payment

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Ensure to pass the cardPin for verve Cards (It is required) 
cardPin property can be ignored for other card types 
{
  "cardNumber": "5399839222071010",
  "expiredMonth": "12",
  "expiredYear": "2024",
  "cvv": "123",
  "cardPin": "123456",
  "shouldSaveCard": true
}

Response

Complete Card Payment

POST /api/complete/card

Complete a Card Payment

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Response

Last updated