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

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?