list operations with filters
POST/org/:orgId/v2/operation/list
List or search Temporal workflow operations with flexible filter expressions.
Request
Path Parameters
Organization ID
- application/json
Body
required
Supports logical operators (and/or) and comparison operators (=, !=, in, not_in).
- ListOperationsV2Request
oneOf
filter
object
Filter expression for querying workflows. Supports nested logical operators (and/or) and comparison operators (=, !=, in, not_in). Example: {"operator": "and", "args": [{"operator": "=", "field": "SugerService", "value": "Marketplace"}, {"operator": "=", "field": "SugerPartner", "value": "AWS"}]}
Args for logical operators (and, or)
Possible values: [SugerOrgId, SugerScope, SugerPartner, SugerPartnerId, SugerService, SugerEntityId, SugerAction, ParentWorkflowId, ParentRunId, ExecutionStatus]
Field is temporal workflow filter field
Operator: "=", "!=", "in", "not_in", "and", "or"
Value for single value operators (=, !=, etc)
Values for array operators (in, not_in)
Limit the number of results returned (1-100), default 100
OffsetToken for pagination, use nextOffsetToken from previous response
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
operations
object[]
Only populated if it has child workflows. Otherwise it is nil.
Operation ID.
memo
object
Run ID.
Possible values: [TemporalWorkflow]
{
"offsetToken": "string",
"operations": [
{
"childWorkflowOperations": [
null
],
"endTime": "2026-03-27T03:43:36.971Z",
"id": "string",
"memo": {},
"message": "string",
"name": "string",
"runId": "string",
"startTime": "2026-03-27T03:43:36.971Z",
"status": "string",
"type": "TemporalWorkflow"
}
]
}
Bad request error
- application/json
- Schema
Schema
string
Internal server error
- application/json
- Schema
Schema
string