Page cover

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

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?