Get details for a specific credit card deposit
Use the following endpoint to find out the details of a specific credit card deposit on your platform:
Endpoint | Description |
---|---|
GET {URI}/creditCardDeposits/{DepositID} | Get details for a specific credit card Deposit. |
Use the following path parameter with this endpoint.
Path Params | Data type | Requirement | Description |
---|---|---|---|
referenceDepositID | string | required | Credit card deposit identifier returned in POST {URI}/creditCardDeposits response payload when you Fund an account. |
The following payload is an example for when you get details for a credit card:
{
"referenceDepositID": "string",
"amount": 0,
"amountCharged": 0,
"feePercent": 0,
"createdDate": "2025-02-03T21:19:59.336Z",
"status": "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 as follows. For details, see i18nkey codes and their error messages:
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
- 404 Not Found
- 500 Internal Server Error
- 503 Service Unavailable
Updated 10 days ago