Check Card Generation Status
This checks status of a card request
To check card generation status you make a post request to the check card generation status endpoint by passing Token, BatchNumber, Reference in the request body.
Here is an example on how to make this request with the staging URL
// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/Cards/CheckCardGenerationStatusPOST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Cards/CheckCardGenerationStatus
Request Body
Name
Type
Description
Token*
String
Authentication Key for the request
BatchNumber*
String
Card generation batch number. This is gotten within the response of CardRequest endpoint
Reference*
String
Unique reference per request
{
"IsSuccessful": True,
"ResponseMessage": “successful",
"GenerationStatus": "generated",
"Reference" : "12345"
}Last updated