Get a specific workflow run by ID.
cURL
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>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the workflow run.
Success
The workflow run.
Show child attributes
Was this page helpful?