Skip to main content
POST
/
api
/
v1
/
tokenized-card-charge
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/tokenized-card-charge \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "amount": 123,
  "email": "<string>",
  "reference": "<string>",
  "currency": "<string>",
  "firstName": "<string>",
  "lastName": "<string>"
}
'

Authorizations

Authorization
string
header
required

Input your Bearer token in this format - Bearer {your token here} to access this API

Body

token
string
required
Minimum string length: 1
amount
number<double>
required
email
string
required
Minimum string length: 1
reference
string
required
Minimum string length: 1
currency
string | null
firstName
string | null
lastName
string | null

Response

200

OK