get
https://{URL}/v1/open-api/transactions/summary
This method retrieves a detailed summary of the client's transactions that occurred within a specific day at the time the request was made, providing a comprehensive overview of the daily transaction activities.
A. Request Header
| Field | Format | Mandatory | Length | Example |
|---|---|---|---|---|
| Open-Api-Timestamp | yyyy-mm-dd'T'hh:mm:ss+07:00 | Y | 2024-02-07T10:30:16.000+07:00 | |
| Open-Api-Signature | Digital Signature | Y | 88 | b5IhnXLQDN6wJC368pc8DJ7pNR isFFMZgR3Jl0O+Zgqw7RRQbB5X BLVg/kI5qcc3w8eZGhvzaFN0Fz/+ kz80NQ== |
B. Response Body
| Field | Type | Description | Example |
|---|---|---|---|
| response_code | string | Contains the OpenAPI response code | “200022000” |
| response_message | string | Contains the value of OpenAPI response message | “Sukses” |
| data | object | The object containing transaction info | |
success_count | int | The count of successful transaction | 0 |
success_total | int | The total amount of successful transaction | 0 |
processed_count | int | The count of transaction in process | 0 |
processed_total | int | The total amount of transaction in process | 0 |
failed_count | int | The count of failed transaction | 1 |
failed_total | int | The total amount of failed transaction | 82500 |
C. Sample Response
{
"response_code": "200022000",
"response_message": "Sukses",
"data": {
"success_count": 0,
"success_total": 0,
"processed_count": 0,
"processed_total": 0,
"failed_count": 1,
"failed_total": 82500
}
}