List tasks
Returns a paginated list of custody tasks (approval requests) visible to the authenticated user, filtered by the supplied query parameters and ordered by the requested column. Multi-valued filters are OR-ed within a field and AND-ed across fields.
Rate limit: 200 requests per 30 seconds per IP.
Authorizations
Query Parameters
Restrict the result set to tasks owned by the specified organization, identified by its 16-char IIBAN. Defaults to the caller's organization when omitted.
"ABCD EFGH IJKL MNOP"
Maximum number of tasks to return in the page. Defaults to 100 when omitted.
100
Number of tasks to skip before the page begins, used together with limit for offset-based pagination. Defaults to 0 when omitted.
0
Restrict the result set to tasks in one or more lifecycle states. Allowed values: pending, approved, rejected, denied (alias of rejected), canceled, expired, failed, executed.
Restrict the result set to tasks for which the caller has made the specified decision. One of undecided, approved, denied.
"undecided"
Restrict the result set to the supplied task IDs. Each value is a T-prefixed 14-char base32 identifier.
Restrict the result set to tasks linked to the supplied approval UUIDs.
Restrict the result set to tasks scoped to the supplied vault IDs. Each value is a V-prefixed 14-char base32 identifier with a final check character.
Restrict the result set to tasks whose action type matches one of the supplied values (e.g. request_withdrawal, create_vault, subquorum_update). Multiple values are OR-ed.
Include only tasks created at or after this timestamp (inclusive).
Include only tasks created at or before this timestamp (inclusive).
Include only tasks last updated at or after this timestamp (inclusive).
Include only tasks last updated at or before this timestamp (inclusive).
Include only tasks expiring at or after this timestamp (inclusive).
Include only tasks expiring at or before this timestamp (inclusive).
Column to sort the result set by. One of id, state, vault_id, created_at, updated_at, expires_at. Defaults to created_at.
"created_at"
Sort direction. Either asc or desc. Defaults to desc.
"desc"
Response
Page of task summaries matching the requested filters.
Page of task summaries matching the requested filters, ordered by the requested column.
Total number of tasks matching the filters, prior to pagination.
42
Offset at which the returned page begins. Matches the offset request parameter.
0