Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

REST API v1


Studio REST API v2 now Generally Available!

The Studio REST API v2 with Flow publishing support is now Generally Available and includes the ability to programmatically create and update Flows!

We recommend all customers use the v2 API to take advantage of the latest features.

Switch to V2(link takes you to an external page)

The Studio v1 REST API lets you trigger flows programmatically and also retrieve information about your flows and executions. The Incoming Request Trigger on your flow will fire when you create an Execution via the REST API. Important: When triggering flows with the API, don't forget to also configure your phone number(link takes you to an external page)with your Studio flow! If you don't configure the phone number, users won't be able to reply to your messages or interact with your IVR.

HTTP POST to create an Execution

To trigger a new Execution of your Flow via the REST API, make an HTTP POST request to:

https://studio.twilio.com/v1/Flows/{FlowSid}/Executions

POST Parameters

Required Parameters

ParameterDescription
ToThe Contact phone number (or other identifier) to start a Studio Flow Execution, available as variable {{contact.channel.address}}
FromThe Twilio phone number (or other identifier such as a SID of a Messaging Service) to send messages or initiate calls from during the Flow Execution, available as variable {{flow.channel.address}}

Important: The To and From phone numbers must be formatted as E.164 (e.g. +1xxxxxxxxxx) to ensure a Contact's session is tracked correctly.

Optional Parameters

ParameterDescription
ParametersJSON data that will be added to your flow's context and can be accessed as variables inside your flow. For example, if you pass in Parameters={"name":"Zeke"} then inside a widget you can reference the variable {{flow.data.name}} which will return the string "Zeke". Note: the JSON value must explicitly be passed as a string, not as a hash object. Depending on your particular HTTP library, you may need to add quotes or URL encode your JSON string. See curl examples below.

Quick Examples:

Using curl on the command line, you can trigger a flow like so:


_10
curl -X POST "https://studio.twilio.com/v1/Flows/FW9d816f0b90d2a10b913868462e339d29/Executions" --data-urlencode "To=+1646221xxxx" --data-urlencode "From=+1331481xxxx" -u ACCOUNT_SID:AUTH_TOKEN

To pass in additional custom data to your flow, add a Parameters= parameter.


_10
curl -X POST "https://studio.twilio.com/v1/Flows/FW9d816f0b90d2a10b913868462e339d29/Executions" --data-urlencode "To=+1646221xxxx" --data-urlencode "From=+1331481xxxx" --data-urlencode "Parameters={\"name\":\"zeke\"}" -u ACCOUNT_SID:AUTH_TOKEN

If you are using a Twilio helper library, you can trigger a flow like so:

Ruby:


_10
Twilio::REST::Client.new(ACCOUNT_SID, AUTH_TOKEN).studio.v1.flows('FW9d816f0b90d2a10b913868462e339d29').executions.create(from: '+1331481xxxx', to: '1646221xxxx', parameters: '{"name":"Clément"}')

NodeJS:


_10
TwilioClient.studio.v1.flows('FW9d816f0b90d2a10b913868462e339d29').executions.create({ to: '+1646221xxxx', from: '+1331481xxxx', parameters: JSON.stringify({name: "Clément"})}).then(function(execution) { console.log(execution.sid); });

PHP:


_10
$twilio->studio->v1->flows("FW9d816f0b90d2a10b913868462e339d29")->executions->create("+1646221xxxx", "+1331481xxxx", array("parameters" => array("foo" => "bar")));

The Executions resource page documents examples in other languages. For information on the other resources, check out the full REST API documentation for each resource below.


Studio REST API resources

studio-rest-api-resources page anchor
ResourceDescription
FlowAllows you to retrieve a list of Flows created in your account.
ExecutionAllows you to create Executions that will act on the incoming REST API trigger for the Flow specified.
Execution ContextThe execution context gives a JSON representation of your flow and its widgets at the time of execution.
StepEach move through your flow is a Step. The Steps resource allows you to retrieve the steps for a given execution.
Step ContextStep context ties a JSON representation of data parsed as part of an individual widget.

HTTP requests to the REST API are protected with HTTP Basic Authentication like other Twilio REST APIs. To learn more about how Twilio handles authentication, please refer to our security documentation.

To authenticate, you will need your Account SID and Auth Token from the Twilio Console(link takes you to an external page):

Twilio Account Summary section of the console.

You will use your Twilio Account SID as the username and your Auth Token as the password for HTTP Basic authentication.


If you use one of our helper libraries for C#(link takes you to an external page), Java(link takes you to an external page), Node.js(link takes you to an external page), PHP(link takes you to an external page), Python, or Ruby(link takes you to an external page); you needn't worry about the URL for the API or how to do HTTP Basic authentication. The helper libraries take care of it for you.


Engagements name change and deprecation

engagements-name-change-and-deprecation page anchor

During the beta of Twilio Studio (prior to August 1st 2018), flow Executions were named Engagements, and we had an API available for creating Engagements. We got feedback that the word engagements was confusing, so we've changed it: We have renamed Engagements to Executions across the Studio product and API but maintained support for Engagements during this transition. There is no functional difference between /Engagements and /Executions in the API. The Engagements API endpoint is now deprecated:

  • /Engagements will continue to function as is until the end of 2018.
  • Customers should move to /Executions (available via REST and in Twilio helper libraries)
  • The /Engagements API endpoint will cease to function in January 2019 and be removed from new versions of the Twilio helper libraries at that time.

Rate this page: