Schema definition for workflow run page.
What this schema does
Defines the object fields used for workflow run page data exchanged by this API.
Used in endpoints
This schema is used as a response structure in the following endpoints:
GET /v1/workflows/{definitionId}/latest/runs(response code(s): 200)GET /v1/workflows/{definitionId}/{version}/runs(response code(s): 200)
Fields
| Field | Type | Required | Description |
|---|---|---|---|
| items | array<object> | Yes | List of items returned for the current page of results. |
| totalPages | integer | Yes | Total number of pages available based on the current query and page size. |
| totalItems | integer | Yes | Total number of items available across all pages. |
| currentPage | integer | Yes | Number of the current page of results. |
| pageSize | integer | Yes | Maximum number of items returned per page. |
{
"items": [
{
"id": "string",
"status": "string",
"initiatedAt": "string"
}
],
"totalPages": 0,
"totalItems": 0,
"currentPage": 0,
"pageSize": 0
}