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