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

TwiML™ for Programmable Messaging



What is TwiML?

what-is-twiml page anchor

TwiML (the Twilio Markup Language) is a set of instructions you can use to tell Twilio what to do when you receive an incoming call, SMS, MMS, or WhatsApp message.

TwiML can be generated using one of the Twilio Language Helper Libraries, or written manually to instruct Twilio on what actions to take in response to various SMS related events.

(information)

Info

Not sending messages? TwiML powers more than just Programmable Messaging - check out the documentation on how to use TwiML with Programmable Voice.


A basic TwiML Message response example

a-basic-twiml-message-response-example page anchor

The following manual TwiML will instruct Twilio to respond to an incoming message with a "Hello World!" reply:


_10
<?xml version="1.0" encoding="UTF-8"?>
_10
<Response>
_10
<Message><Body>Hello World!</Body></Message>
_10
</Response>

The same TwiML can also be generated using the examples in these following code samples. The redirect control allows you to point at another TwiML file from your current file.

Toggle between the code in your language of choice and TwiML in the top bar of the code viewer:

Send Hello World and redirect TwiML control

send-hello-world-and-redirect-twiml-control page anchor
Node.js
Python
C#
Java
PHP
Ruby

_10
const MessagingResponse = require('twilio').twiml.MessagingResponse;
_10
_10
_10
const response = new MessagingResponse();
_10
const message = response.message();
_10
message.body('Hello World!');
_10
response.redirect('https://demo.twilio.com/welcome/sms/');
_10
_10
console.log(response.toString());

Output

_10
<?xml version="1.0" encoding="UTF-8"?>
_10
<Response>
_10
<Message><Body>Hello World!</Body></Message>
_10
<Redirect>https://demo.twilio.com/welcome/sms/</Redirect>
_10
</Response>

(information)

Info

Building an Messaging Application? The Messaging Quickstarts show you how to send, receive, and reply to messages using your programming language of choice.


Generating TwiML with the Twilio helper libraries

generating-twiml-with-the-twilio-helper-libraries page anchor

Twilio provides helper libraries to help you generate TwiML in your favorite language.

For example, here's code demonstrating how to send two unique messages one after the other using helper libraries. Select your choice of language to see how it's done:

Node.js
Python
C#
Java
PHP
Ruby

_10
const MessagingResponse = require('twilio').twiml.MessagingResponse;
_10
_10
_10
const response = new MessagingResponse();
_10
response.message('This is message 1 of 2.');
_10
response.message('This is message 2 of 2.');
_10
_10
console.log(response.toString());

Output

_10
<?xml version="1.0" encoding="UTF-8"?>
_10
<Response>
_10
<Message>This is message 1 of 2.</Message>
_10
<Message>This is message 2 of 2.</Message>
_10
</Response>


Twilio's request to your application

twilios-request-to-your-application page anchor

When a message arrives at your Twilio phone number, Twilio sends a request to your web application using the webhook URL that you've specified. For more information about Twilio's request, including the parameters sent to your application, please see our guide to Twilio's Request to your Webhook URL.

Data formats

data-formats page anchor

All phone numbers in requests from Twilio are in E.164 format if possible. For example, (415) 555-4345 would come through as '+14155554345'. However, there are occasionally cases where Twilio cannot normalize an incoming caller ID to E.164. In these situations, Twilio will report the raw caller ID string.

If you're using a non-SMS messaging channel, the channel address is used instead of a phone number. A WhatsApp channel address has a whatsapp: channel prefix (e.g., whatsapp:+15551119999)

All dates and times in requests from Twilio are GMT in RFC 2822(link takes you to an external page) format. For example, 6:13 PM PDT on August 19th, 2010 would be 'Fri, 20 Aug 2010 01:13:42 +0000'

Twilio handles opt-outs on all long code phone numbers in accordance with industry standards.

Opt out keywords(link takes you to an external page) are passed to your application to notify you that a user has opted out. All future messages to the user are not sent. 'Start' and 'Yes' keywords will also be passed to your application and to opt users back in.

When a user has opted out of a phone number that belongs to a Messaging Service, the user has also been opted out of receiving all messages sent from that particular Messaging Service.

PARAMETERDESCRIPTION
OptOutTypeString indicateing whether the message is a STOP, HELP, or START message.
(warning)

Warning

The OptOutType parameter is not included in the webhook payload unless you have Advanced Opt-Out enabled on the Messaging Service.


When a message comes into one of your Twilio numbers, Twilio makes an HTTP request to the message URL configured for that number.

In your response to that request, you can tell Twilio what to do in response to the message. You can configure your number URLs here(link takes you to an external page).

Twilio is a well-behaved HTTP client

twilio-is-a-well-behaved-http-client page anchor

Twilio behaves just like a web browser, so there's nothing new to learn.

  • Cookies : Twilio accepts HTTP cookies and will include them in each request, just like a normal web browser.
  • Redirects : Twilio follows HTTP Redirects (HTTP status codes 301, 307, etc.), just like a normal web browser.
  • Caching : Twilio will cache files when HTTP headers allow it (via ETag and Last-Modified headers) and when the HTTP method is GET , just like a normal web browser.

Twilio will keep cookie state across multiple SMS messages between the same two phone numbers. This allows you to treat the separate messages as a conversation, and store data about the conversation, such as a session identifier, in the cookies for future reference. Twilio will expire the cookies for that conversation after four hours of inactivity.

Twilio understands MIME types

twilio-understands-mime-types page anchor

Twilio does the right thing when your application responds with different MIME types.

MIME TYPEBEHAVIOR
text/xml, application/xml, text/htmlTwilio interprets the returned document as a TwiML XML Instruction Set. This is the most commonly used response.
text/plainTwilio returns the content of the text file to the sender in the form of a message.

How Twilio's TwiML interpreter works

how-twilios-twiml-interpreter-works page anchor

When your application responds to a Twilio request with XML, Twilio runs your document through the TwiML interpreter. To keep things simple, the TwiML interpreter only understands a few specially-named XML elements. In TwiML parlance, these are divided into three groups: the root <Response> element, "verbs" and "nouns." We discuss each group below.

The interpreter starts at the top of your TwiML document and executes instructions ("verbs") in order from top to bottom. As an example, the following TwiML Message snippet sends "Hello World" as a message reply to the sender before redirecting control to the TwiML at https://demo.twilio.com/welcome/sms(link takes you to an external page).


_10
<?xml version="1.0" encoding="UTF-8" ?>
_10
<Response>
_10
<Message>Hello World!</Message>
_10
<Redirect>https://demo.twilio.com/welcome/sms</Redirect>
_10
</Response>

You can provide multiple <Message> verbs in one TwiML document to send multiple messages. For example:


_10
<?xml version="1.0" encoding="UTF-8" ?>
_10
<Response>
_10
<Message>This is message 1 of 2.</Message>
_10
<Message>This is message 2 of 2.</Message>
_10
</Response>

(warning)

Warning

TwiML elements ("verbs" and "nouns") have case-sensitive names. For example, don't use <message> instead of <Message>. Attribute names are also case sensitive and camelCased(link takes you to an external page). You can use XML comments freely; the interpreter ignores them.

The <Response> element

the-response-element page anchor

The root element of Twilio's XML Markup is the <Response> element. In any TwiML response to a Twilio request, all verb elements must be nested within this element. Any other structure is considered invalid.

Example


_10
<?xml version="1.0" encoding="UTF-8"?>
_10
<Response>
_10
<Message>I'm hungry!</Message>
_10
</Response>

Most XML elements in a TwiML document are TwiML verbs. Verb names are case sensitive, as are their attribute names. There is only one core TwiML Message verb and one secondary verb, with detailed documentation on each. The core verb is:

<Message>: Send a message in reply to the incoming message.

(warning)

Warning

There are certain situations when the TwiML interpreter may not reach verbs in a TwiML document because control flow has passed to a different document. This usually happens when a verb's 'action' attribute is set.

For example, if a <Message> is followed by a <Redirect>, the <Redirect> is unreachable if the <Message> verb's action URL is set. In this case, the messaging session flow continues with the TwiML received in your response to the action URL request.

The following verbs may impact control flow: <Message> and <Redirect>

A Noun in TwiML is anything nested inside a verb that is not itself a verb. It's whatever the verb is acting on. This is usually just text. But sometimes, as in the case of <Message> with its <Media> and <Body> nouns, there are nested XML elements that are nouns.

You can use status callbacks to have Twilio reach out to your app when the status of a message has changed.

Status callbacks do not control application flow, so TwiML does not need to be returned. However, you should respond to status callbacks requests with either a 204 No Content or a 200 OK with Content-Type: text/xml and an empty <Response/> in the body. Failure to do so results in warnings in the Console(link takes you to an external page).


Rate this page: