Skip to main content
GET
/
v2
/
workflow-runs
/
{id}
Get Workflow Run
curl --request GET \
  --url https://public.api.serval.com/v2/workflow-runs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "workflowId": "<string>",
    "teamId": "<string>",
    "status": "WORKFLOW_RUN_STATUS_UNSPECIFIED",
    "createdAt": "<string>",
    "completedAt": "<string>",
    "initiatedByUserId": "<string>",
    "targetUserId": "<string>",
    "inputs": "<string>",
    "output": "<string>",
    "linkedTicketId": "<string>",
    "approvalRequestId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the workflow run.

Response

Success

data
data · object

The workflow run.