Simulate Card Transaction
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
transaction_currency
string
required{
"card_id": "80b537af-59ec-4ef7-b7da-1e5eb16b5bce",
"merchant_info": "Zinc Cards Simulation",
"transaction_amount": 10.10,
"transaction_currency": "SGD"
}
Request samples
curl --location --request POST 'https://api-sandbox.z.inc/api/v1/account/simulate/card' \
--header 'account-id;' \
--header 'x-api-version;' \
--header 'Content-Type: application/json' \
--data-raw '{
"card_id": "80b537af-59ec-4ef7-b7da-1e5eb16b5bce",
"merchant_info": "Zinc Cards Simulation",
"transaction_amount": 10.10,
"transaction_currency": "SGD"
}'
Responses
application/json Modified at 2024-07-28 14:51:25