get operation history events
GET/org/:orgId/v2/operation/:operationId/history
Get the history events for a Temporal workflow operation by operation ID.
Request
Path Parameters
orgId stringrequired
Organization ID
operationId stringrequired
Temporal Workflow ID
- application/json
Body
object
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
operationHistoryEvent
object[]
attributes
eventID integer
eventTime date-time
eventType string
taskID integer
version integer
worker_may_ignore boolean
{
"operationHistoryEvent": [
{
"attributes": {},
"eventID": 0,
"eventTime": "2026-03-27T03:43:36.973Z",
"eventType": "string",
"taskID": 0,
"version": 0,
"worker_may_ignore": true
}
]
}
Bad request error
- application/json
- Schema
Schema
string
Internal server error
- application/json
- Schema
Schema
string
Loading...