Get Task Pipeline

Returns workflow tasks assigned to a user or the user's User Group(s). This API returns only tasks that are not completed. By default, tasks are sorted in ascending order based on Priority and then Create Date. Use query parameters to return a specific set of data.

Pagination
Offset-based pagination and Page-based pagination is supported.

Offset-based Pagination is achieved by passing "start" and "limit" query parameters.
For example: GET workflow/v1/taskPipeline?start=0&limit=20

Page-based Pagination is achieved by passing "page" and "size" query parameters.
For example: GET workflow/v1/taskPipeline?page=0&size=20

Sorting
The response data can be sorted by multiple columns. To enable sorting, use the sortBy query parameter to pass a comma-separated list of sortable fields. Each sortable field can be prefixed with '+' or '-' to indicate ascending or descending sorting order.
For example, to order tasks by rank in ascending order and priority in descending order:
GET workflow/v1/taskPipeline?sortBy=+rank,-priority

Language