Card Request Status
This help to check the status of the physical card request.
Headers
Name
Type
Description
Request Body
Name
Type
Description
curl --location '{{base_url}}/business/cardrequest-status
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data-raw '{
"requestid": "06211-21140-12129-12329"
}'const axios = require('axios');
let data = JSON.stringify({
"requestid": "06211-21140-12129-12329"
});
let config = {
method: 'GET',
maxBodyLength: Infinity,
url: '{{base_url}}/business/cardrequest-status',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer SECRET_KEY'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Sample response
{
"status": true,
"requeststatus": "processing",
"message": "Card request processing",
"data": []
}{
"status": false,
"responsecode": "00"
}Last updated