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>"
}
'