Get Revenue
Developing
GET
/store/dashboard/recap/revenue
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/store/dashboard/recap/revenue?filter=month&interval=day&start_date&end_date'
Response Response Example
200 - Success
{
"data": [
{
"label": "2025-06-20",
"count": 30
},
{
"label": "2025-06-19",
"count": 10
},
{
"label": "2025-06-18",
"count": 20
},
{
"label": "2025-06-17",
"count": 50
},
{
"label": "2025-06-16",
"count": 0
},
{
"label": "2025-06-15",
"count": 0
},
{
"label": "2025-06-14",
"count": 60
},
{
"label": "2025-06-13",
"count": 10
}
]
}
Request
Query Params
filter
string
optional
Example:
month
interval
string
optional
Example:
day
start_date
string
optional
end_date
string
optional
Responses
Modified at 2025-06-20 10:22:34