curl --request GET \
--url https://dashu.sa/api/external/getDepositDetails
{
"success": true,
"result": {
"items": [
{
"id": 123,
"amount": 200.12,
"service_charge": "1.41"
}
],
"deposit_total_amount_without_fees": "200.12",
"deposit_total_service_fees": "1.41"
}
}
Query Parameters
The API Key of your account.
The deposit reference (you can get it from the getDeposits
endpoint).
Set this property to true
to send the request to the development
environment.
{
"success": true,
"result": {
"items": [
{
"id": 123,
"amount": 200.12,
"service_charge": "1.41"
}
],
"deposit_total_amount_without_fees": "200.12",
"deposit_total_service_fees": "1.41"
}
}
Response properties
A boolean value indicates the response status.
A unique integer value indicating the deposit request in DashPay system.
The total amount of the deposit.
The fee amount of the depsoit process (DashPay fees).
deposit_total_amount_without_fees
The total amount of the deposit without fees.
deposit_total_service_fees
The total amount of fees deducted for this deposit.
Error Codes
Here’s a list of possible error codes of this endpoint.
Code | Description |
---|
1 | Missing or invalid api key |
2 | depositReference is a required parameter. |