Card Request Status
This help to check the status of the physical card request.
POST
{{base_url}}/business/cardrequest-status
Headers
Name
Type
Description
Authorization*
String
SECRET_KEY
Request Body
Name
Type
Description
requestid*
Sting
Request ID returned from the create card endpoint
Your secret keys are to be kept secret and only stored 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/cardrequest-status
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data-raw '{
"requestid": "06211-21140-12129-12329"
}'
Sample response
{
"status": true,
"requeststatus": "processing",
"message": "Card request processing",
"data": []
}
Last updated
Was this helpful?