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

Authorizations

Authorization
string
header
required

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

Body

amount
number<double>
card
string | null
currency
string | null
reference
string | null
email
string | null
transactionType
string | null
enforceSecureAuth
boolean
redirectUrl
string | null
metaData
string | null

Response

200

OK