Get details for a specific credit card deposit
To view the details of a specific credit card, use the credit card token provided in the call. This is specially useful when you intend to apply access restrictions.
Endpoint | Description |
---|---|
GET {URI}/creditCards/{token} | Get details for a specific credit card. |
The following path parameters are used with this endpoint:
Path params | Data type | Description |
---|---|---|
token | string | Credit card token |
The following payload is an example for when you get credit card details:
{
"customerIdentifier": "string",
"accountIdentifier": "string",
"token": "string",
"label": "string",
"lastFourDigits": "string",
"expirationDate": "string",
"status": "string",
"createdDate": "2025-02-14T17:56:23.295Z",
"activationDate": "2025-02-14T17:56:23.295Z",
"contactInformation": [
{
"fullName": "string",
"emailAddress": "string"
}
],
"accountNumber": "string"
}
Here's an example payload for when you receive an error:
{
"timestamp": "2025-02-21T23:23:13.930Z",
"requestId": "string",
"path": "string",
"httpCode": 0,
"httpPhrase": "string",
"i18nKey": "string",
"message": "The error message will show here for error codes ",
"errors": [
{}
]
}
The possible response codes for this endpoint are:
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
- 404 Not Found
- 500 Internal Server Error
- 503 Service Unavailable
Updated 6 days ago