Sign in

Start Execution

documented

Trigger a Studio Flow Execution.

POST https://studio.twilio.com/v1/Flows/{FlowSid}/ExecutionsStudiono 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://studio.twilio.com/v1/Flows/{{$FlowSid}}/Executions" \
  -X POST \
  -u "{{TWILIO_API_KEY}}:{{TWILIO_API_SECRET}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "To={{$to}}" \
  --data-urlencode "From={{$from}}" \
  --data-urlencode "Parameters={\"name\":\"{{$name}}\"}"