Get on-demand request statuses

GET
/api/v2/status/requests

Get a paginated list of on-demand request statuses.

Sortable fields (pass via sort_by, case-insensitive):

  • title – Request title
  • source – Request source
  • outputformats – Output formats
  • projectname – Associated project name (sorted at DB level)
  • status – Execution status
  • modifieddate – Last execution date (default, descending)
  • executionend – Execution end date

Default sort: modifieddate descending.

AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: 'Bearer {token}'

In: header

Query Parameters

sort_by?string

Sort by field name (optional). Supported fields: "name", "schedule", "isactive", "status", "lastexecution", "nextexecution".

page?integer

Page number (1-based). Default is 1. Ignored when get_all = true.

Formatint32
Range1 <= value <= 2147483647
page_size?integer

Number of items per page. Default is 10. Maximum is 100. Ignored when get_all = true.

Formatint32
Range1 <= value <= 50
get_all?boolean

When true, pagination is disabled and all items are returned.

sort_direction?string

Sort direction: "asc" or "desc". Default is "asc" (optional)

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v2/status/requests"
{  "isSuccess": true,  "error": {},  "errorDetails": "string",  "message": "string",  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",      "reportId": "836df459-dc40-4aa1-972a-6eb0a864dff9",      "title": "string",      "outputFormats": "string",      "typeMime": "string",      "projectName": "string",      "source": "string",      "fileName": "string",      "lastExecutionDate": "2019-08-24T14:15:22Z",      "executionEndDate": "2019-08-24T14:15:22Z",      "status": "string",      "logFile": "string"    }  ],  "resultInfo": {    "page": 0,    "perPage": 0,    "totalCount": 0,    "totalPages": 0,    "hasPreviousPage": true,    "hasNextPage": true  }}