Sign in

Start Execution

documented

Initiate a Studio Flow execution (with To/From and optional parameters).

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 \
  -H "Authorization: Basic {{TWILIO_API_KEY}}:{{TWILIO_API_SECRET}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'To={{$to}}&From={{$from}}&Parameters=%7B%22name%22%3A%22{{$name}}%22%7D'
Start Execution · Twilio · OpenIntegrations