Runs
Authorizations
Path parameters
organizationIdstringRequired
The organization ID
approvalIdstring · uuidRequired
Query parameters
pageTokenstringOptional
Pagination token that keeps of track of the current position in the list
limitinteger · min: 1 · max: 100OptionalDefault:
Limits the number of results to return
10
reversebooleanOptionalDefault:
Order in which to retrieve the results
false
Responses
200
OK
application/json
Responseall of
and
404
Resource not found
application/json
get
GET /organizations/{organizationId}/approvals/{approvalId}/runs HTTP/1.1
Host:
Authorization: Bearer jwt
Accept: */*
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"approvalFlowId": "123e4567-e89b-12d3-a456-426614174000",
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000",
"status": "pending",
"activeStep": 1,
"previousObject": {},
"object": {},
"invoker": {
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
},
"tags": [
{
"key": "text",
"value": "text"
}
],
"results": [
{
"reviewer": {
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
},
"result": "approved",
"comment": "text"
}
],
"createdAt": "2025-07-10T03:10:22.747Z",
"updatedAt": "2025-07-10T03:10:22.747Z"
}
],
"nextPageToken": "text"
}
Authorizations
Path parameters
organizationIdstringRequired
The organization ID
approvalIdstring · uuidRequired
approvalRunIdstring · uuidRequired
Responses
200
OK
application/json
404
Resource not found
application/json
get
GET /organizations/{organizationId}/approvals/{approvalId}/runs/{approvalRunId} HTTP/1.1
Host:
Authorization: Bearer jwt
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"approvalFlowId": "123e4567-e89b-12d3-a456-426614174000",
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000",
"status": "pending",
"activeStep": 1,
"previousObject": {},
"object": {},
"invoker": {
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
},
"tags": [
{
"key": "text",
"value": "text"
}
],
"results": [
{
"reviewer": {
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
},
"result": "approved",
"comment": "text"
}
],
"createdAt": "2025-07-10T03:10:22.747Z",
"updatedAt": "2025-07-10T03:10:22.747Z"
}
Last updated
Was this helpful?