Get details for a specific credit card deposit
Are you looking for details of 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 | Description |
---|---|---|
referenceDepositID | string | Credit card deposit identifier returned in Fund an Account (POST /creditCardDeposits) response payload. |
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:
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
- 404 Not Found
- 500 Internal Server Error
- 503 Service Unavailable
Updated 6 days ago