Get Status #
This request accepts a report 'requestId' and returns the status of the request.
GET /v1.0/workspaces/{WORKSPACE_ID}/reports/{REPORT_ID}/results/{REQUEST_ID}
Example - In Progress Request #
This request returns the status of a report request that is still running.
Request #
GET <https://api.na.myreports.cloud/api/v1.0/workspaces/00000000-0000-0000-0000-000000000001/reports/00000000-0000-0000-0000-000000000001/requests/00000000-0000-0000-0000-000000000005> HTTP/1.1
Authorisation: Bearer {TOKEN}
Response #
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: xx
{
"data": {
"dateCreated": "2025-09-22T15:27:40.1946146Z",
"tenantId": "f8322e65-ddac-4f5c-1f6c-08db2fa7b464",
"requestId": "65224fa5-f4c6-4796-b3c8-c4f67d504971",
"reportId": "2aafb829-91aa-4d17-a5d3-bb6fde34ca10",
"status": "Complete",
"statusMessage": "Report processing complete",
"reportTemplateName": "CallListByUserSegmented"
},
"status": "success",
"timestamp": "2019-05-01T10:00:00.2890319Z"
}
Errors #
Unauthorised #
When the token is not provided, invalid or expired
HTTP/1.1 401 Unauthorised