Skip to main content
POST
/
api
/
v1
/
card-payment
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/card-payment \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardNumber": "<string>",
  "expiryMonth": "<string>",
  "expiryYear": "<string>",
  "cvv": "<string>",
  "cardPin": "<string>",
  "transactionReference": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Body

cardNumber
string | null
expiryMonth
string | null
expiryYear
string | null
cvv
string | null
cardPin
string | null
transactionReference
string | null

Response

200

OK