curl --request GET \
--url https://dashu.sa/api/external/getTransactions
{
"success": true,
"result": {
"items": [
{
"id": 1,
"payment_method": "ap-mada",
"amount": "313.00",
"service_charge": "1.00",
"time": "2021-01-21 13:12:59"
}
],
"page_num": 1,
"total_pages": 1,
"total_rows": 1
}
}
Query Parameters
The API Key of your account.
The starting date of the result.
Sample: 2021-05-27 15:31:39
The ending date of the result.
Sample: 2021-06-28 23:59:59
The current page number (used for pagination in your system)
Specifies the total items that should be return for each request (each page).
It should be a number between 1 and 50.
{
"success": true,
"result": {
"items": [
{
"id": 1,
"payment_method": "ap-mada",
"amount": "313.00",
"service_charge": "1.00",
"time": "2021-01-21 13:12:59"
}
],
"page_num": 1,
"total_pages": 1,
"total_rows": 1
}
}
Response properties
A boolean value indicates the response status.
A unique integer value indicating the deposit request in DashPay system.
The payment method used by the customer to complete the payment process.
This can be one of the following values:
mada
visa
master
amex
ap-mada
(ApplePay Mada)
ap-visa
(ApplePay Visa)
ap-master
(ApplePay Mastercard)
ap-amex
(ApplePay AmericanExpress)
The total amount of the transaction.
The fee amount of the transaction (DashPay fees).
Date of creating the transaction.
Total pages available (according to the date range specified and the total items per page).
Total rows of the current page (total transactions returned in this request).
Error Codes
Here’s a list of possible error codes of this endpoint.
Code | Description |
---|
1 | Missing or invalid api key |
3 | You cannot pass a number greater than 50 for the parameter itemsPerPage |
4 | Invalid `startDate“. |
5 | invalid `endDate“. |