REST API DOCS
Client APIReports

Reports. Get list of dates

GET
/backend/api/v1/report/dates/

Returns a list of available report dates for weekly and monthly report types.

Notice:

  • you need to have permission to do this operation. Contact DORRS Admin

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/report/dates/"
{  "message": "success",  "data": {    "monthly": [      "2023-10-31"    ],    "weekly": [      "2023-11-19"    ]  },  "code": 200}