Sign in

Change run step state

documented

Change a run-step state using the action parameter.

POST /runs/{run_id}/run_steps/{id}Run 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.manifest.ly/api/v2/runs/{{$run_id}}/run_steps/{{$id}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: {{$idempotency_key}}" \
  -d '{"action": "{{$action}}", "data": "{{$data}}", "private_data_upload": "{{$private_data_upload}}", "private_data_upload_original_filename": "{{$private_data_upload_original_filename}}", "private_data_upload_content_type": "{{$private_data_upload_content_type}}", "private_data_upload_file_size": {{$private_data_upload_file_size}}}'
Change run step state · Manifestly Checklists · OpenIntegrations