Skip to main content
POST
/
api
/
v3
/
direct-card-charge-internal
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v3/direct-card-charge-internal \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "businessId": 123,
  "amount": 123,
  "currency": "<string>",
  "transactionType": "<string>",
  "enforceSecureAuth": true,
  "cardData": {
    "number": "<string>",
    "expiryMonth": "<string>",
    "expiryYear": "<string>",
    "cvv": "<string>",
    "pin": "<string>"
  },
  "metadata": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Body

businessId
integer<int32>
amount
number<double>
currency
string | null
transactionType
string | null
enforceSecureAuth
boolean
cardData
object
metadata
string | null

Response

200

OK