Get a specific approval procedure by ID for a workflow.
cURL
curl --request GET \ --url https://public.api.serval.com/v2/workflows/{workflow_id}/approval-procedures/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "workflowId": "<string>", "steps": [ { "id": "<string>", "allowSelfApproval": true, "approvers": [ { "appOwner": {}, "notify": true } ], "customWorkflow": { "workflowId": "<string>" } } ] } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the workflow.
The ID of the approval procedure.
Success
The approval procedure.
Show child attributes
Was this page helpful?