Sign in

Complete a workflow step

documented

Mark a workflow step as complete.

PUT /v1/workflows/{workflow_id}/steps/{id}Workflow Stepsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.crmworkspace.com/v1/workflows/{{$workflow_id}}/steps/{{$id}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"complete": {{$complete}}, "workflow_outcome_id": {{$workflow_outcome_id}}, "due_date_set": {{$due_date_set}}, "due_date": "{{$due_date}}"}'