get operation details
GET/org/:orgId/v2/operation/:operationId
Get the details of a Temporal workflow operation by operation ID. Optionally include child workflow data.
Request
Path Parameters
orgId stringrequired
Organization ID
operationId stringrequired
Temporal Workflow ID
Query Parameters
runId string
Temporal run ID of the workflow
hasChildren boolean
Include data aggregated from all child workflows (1 level), default false
- application/json
Body
object
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
childWorkflowOperations undefined[]
Only populated if it has child workflows. Otherwise it is nil.
endTime date-time
id string
Operation ID.
memo
object
property name* any
message string
name string
runId string
Run ID.
startTime date-time
status string
type OperationType (string)
Possible values: [TemporalWorkflow]
{
"childWorkflowOperations": [
null
],
"endTime": "2026-03-27T03:43:36.972Z",
"id": "string",
"memo": {},
"message": "string",
"name": "string",
"runId": "string",
"startTime": "2026-03-27T03:43:36.972Z",
"status": "string",
"type": "TemporalWorkflow"
}
Bad request error
- application/json
- Schema
Schema
string
Internal server error
- application/json
- Schema
Schema
string
Loading...