Assign assignee to workflow run
documentedAssign a user or group to a workflow run (or specific tasks).
Workflowsno 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://public-api.process.st/api/v1.1/workflow-runs/{{$workflowRunId}}/assignees" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{\"assignees\": [\"{{$assignee_email1}}\", \"{{$assignee_email2}}\"]}'
npx -y keychains@latest curl "https://public-api.process.st/api/v1.1/workflow-runs/{{$workflowRunId}}/assignees" \
-X DELETE \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json"