Skip to main content
GET
List task activities

Query Parameters

org_iiban
string

Restrict the result set to activities whose tasks are owned by the specified organization, identified by its 16-char IIBAN. Defaults to the caller's organization when omitted.

Example:

"ABCD EFGH IJKL MNOP"

limit
integer<int32>

Maximum number of activities to return in the page. Defaults to 100 when omitted.

Example:

100

offset
integer<int32>

Number of activities to skip before the page begins, used together with limit for offset-based pagination. Defaults to 0 when omitted.

Example:

0

id
string

Restrict the result set to a single activity identifier, an A-prefixed 14-char base32 string.

Example:

"AABCDEFG23456A"

scope
string

Restrict by the parent task's vault scope. One of domain or vault. Case-insensitive.

Example:

"vault"

vault_id
string[]

Restrict the result set to activities whose tasks are scoped to the supplied vault IDs. Each value is a V-prefixed 14-char base32 identifier with a final check character. Multiple values are OR-ed.

task_id
string

Restrict the result set to activities belonging to the supplied task ID, a T-prefixed 14-char base32 identifier.

Example:

"TABCDEF234567A"

approval_id
string

Restrict the result set to activities whose parent task is linked to the supplied approval UUID.

Example:

"a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"

task_action
string[]

Restrict the result set to activities whose parent task contains one of the supplied action types (for example request_withdrawal, create_vault, normalized_task). Multiple values are OR-ed.

activity_action
string[]

Restrict the result set to activities with one of the supplied action types (for example created, review_approved, review_denied, executed). Multiple values are OR-ed.

created_at_from
string<date-time>

Include only activities created at or after this RFC 3339 UTC timestamp (inclusive), e.g. 2026-01-15T12:34:56Z; the Z (UTC) offset is required.

Example:

"2026-01-15T12:34:56Z"

created_at_to
string<date-time>

Include only activities created at or before this RFC 3339 UTC timestamp (inclusive), e.g. 2026-01-15T12:34:56Z; the Z (UTC) offset is required.

Example:

"2026-01-15T12:34:56Z"

user
string

Restrict the result set to activities performed by the supplied actor IIBAN (16-char alphanumeric in 4x4 groups).

Example:

"ABCD EFGH IJKL MNOP"

Response

Page of task activities matching the requested filters.

result
object[]
required

Page of task activities matching the requested filters, newest first by creation time. Each item matches the Get task activity by id response shape.

total
integer<int32>
required

Total number of activities matching the filters across all pages.

Example:

42