[GET] Task Status List Paginated
Last updated
Last updated
Use this request to get information about all the tasks in your Organization (or a filtered subset), including their processing and auditing information, in a paginated format.
This request is optimized for high Task counts and thus is ideal to create listing screens or gather large amounts of data.
GET
/api/v1.0/external/sdtask/statuslistpaginated?startDate=2022-03-16T16:59:55Z&endDate=2022-12-25T16:59:55Z&pageNumber=1&pageSize=10
startDate
datetime
(optional)
Include tasks created after this date. Required if endDate
is not specified.
endDate
datetime
(optional)
Include tasks created before this date. Required if startDate
is not specified.
taskStatus
The status of the tasks to filter for. To filter with more than one taskStatus
value, simply add another entry to the query string, i.e ?taskStatus=30&taskStatus=31
to filter on status 30 and 31.
integrationStatus
The integration status of the tasks to filter for. To filter with more than one integrationStatus
value, simply add another entry to the query string, i.e ?integrationStatus=1&integrationStatus=2
to filter on status 1 and 2.
workspaceId
integer
(optional)
The ID of the workspace to filter for. To filter with more than one workspaceId
value, simply add another entry to the query string, i.e ?workspaceId=1&workspaceId=2
to filter on workspace ID 1 and 2.
sort
string
(optional)
Name of property to sort result values. Sorts by createdOn
by default.
pageNumber
integer
The page number to retrieve. Starts at 1 up to the number of total pages available.
pageSize
integer
The number of items to retrieve per page. Defaults to 10 if not specified.
Response Body GetTaskStatusPaginatedResponse
items
the list of returned items for this request. Returns an empty list if no items were found.
pageNumber
integer
The page number retrieved.
totalPages
integer
The total number of pages that the server can potentially retrieve, with the given filters, at the time the request was made.
totalCount
integer
The total count of items available for retrieval, with the given filters, at the time the request was made.
hasPreviousPage
boolean
true
if the currently retrieved page has a previous page available, false
otherwise.
hasNextPage
boolean
true
if a next page exists after the currently retrieved page, false
otherwise.
(optional)
(optional)