Card Status Change

You can subscribe to the Card Status Change webhook to receive a callback when there is a change in the status of a card. A card can be one of the following statuses: ACTIVE, BLOCKED, CLOSED or INACTIVE:
In most cases you will receive webhook call as soon as card status is changed, but in some cases there could be delays depending upon the processing queue

Sample card status change webhook:

{
"CallbackTime": "2016-08-22T12:20:53.7335395+03:00",
"Data": {
"AcctId": 123213234,
"TransactionType": "CARD",
"Description": "Status Change",
"FirstName": "Jane",
"LastName": "Doe",
"CustomId": "F1Q52343SF",
"CardList":[
{
"CardId": 6231,
"IssueDate": "2014-11-26T00:00:00",
"ExpirationDate": "2017-11-30T00:00:00",
"Last4CardNumber": "1212",
"CardStatus": "CLOSED",
"CardOrderId": 55233
}
]
}
}

Card Status Definitions

INACTIVE: Card account and plastic have been created, but the card has not been activated and is not ready for use. Note that you will receive a webhook with CardStatus=INACTIVE for each card created using the /Card/CreateAsync endpoints, as well as any cards created using the Admin portal or via a file upload.

ACTIVE: Card is active and ready to use.

BLOCKED: Card is set to decline all authorization attempts. Note that a change from INACTIVE status to BLOCKED status results in the card first being activated and then immediately being set to BLOCKED status and will generate 2 webhooks - ACTIVE and BLOCKED.

CLOSED: Card has been terminated and can no longer be used. This status is permanent and cannot be reversed.