Gets all tasks that were delivered for project projectId
ordered by delivery date. See the delivery schema for how the task data is returned.
Optional from
timestamp to only return tasks since a given date (formatted using RFC3339 format).
Optional to
timestamp to only return tasks up to a given date (formatted using RFC3339 format).
Optional batch_id
parameter can specify a comma-separated list of hub batch ids to filter the results on.
Optional client_batch_id
parameter can specify a comma-separated list of client batch identifiers to filter the results on.
Optional client_batch_id_match_type
parameter specify how the search of client_batch_id
is performed. It can be either exact
or starts_with
. The default value is exact
.
Optional task_id
parameter as a comma separated list of specific task ids to be returned.
Optional state
parameter to filter tasks on states. Allowed values are "delivered" or "acknowledged". Omitting this parameter will return tasks in both states.
Optional page_size
and page
parameters can be used to set a page size (max. 1000, default 1000) and number (starting from 1), respectively.