Property | Type | Required | Description |
---|---|---|---|
sourceAccountId | string | Required | Unique identifier of the account associated with the card |
sourceCustomerId | string | Required | Unique identifier of the customer associated with the card |
last4 | string | Required | Last 4 digits of the card number |
iin | string | Required | Issuer identification number associated with the card |
cardType | CardType | Required | Type of card |
status | CardStatus | Required | Status of the card |
networkIdentifier | int | Required | The first digit of the Plastic Account Number (PAN) as the network identifier (3-AE, 4-V, 5-MC, 6-D) |
openDate | string | Required | Date and time of card creation |
closeDate | string | Not required | Date and time of card closure, if applicable. Use this to set a card to CLOSED |
Example
{
"sourceAccountId": "8b54c092-aa96-4376-a450-4055d1fa555e",
"sourceCustomerId": "84e31fa2-0417-4669-b8ed-51242d11a273",
"last4": "1234",
"iin": "345678",
"cardType": "DEBIT",
"status": "OPEN",
"networkIdentifier": 3,
"openDate": "2017-02-13T22:00:28Z",
"closeDate": null
}