Card Activation
This endpoint allows you to activate a physical card
POST
{{base_url}}/business/card-activation
Headers
Name
Type
Description
Authorization*
String
SECRET_KEY
Request Body
Name
Type
Description
cardid*
Sting
Card ID
Your secret keys are to be kept confidential and stored only on your servers. Do not pass your secret key to the front-end language where it can be exploited.
Take a look at how you might do this:
curl --location '{{base_url}}/business/card-activation' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data '{
"cardid": "ao022-22e23o-2238-2829d"
}'
Sample response
{
"status": true,
"msg": "Card Activation Successful"
}
Last updated
Was this helpful?