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.
Not sending messages? TwiML powers more than just Programmable Messaging - check out the documentation on how to use TwiML with Programmable Voice.
The following manual TwiML will instruct Twilio to respond to an incoming message with a "Hello World!" reply:
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Message><Body>Hello World!</Body></Message>4</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:
1const MessagingResponse = require('twilio').twiml.MessagingResponse;234const response = new MessagingResponse();5const message = response.message();6message.body('Hello World!');7response.redirect('https://demo.twilio.com/welcome/sms/');89console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Message><Body>Hello World!</Body></Message>4<Redirect>https://demo.twilio.com/welcome/sms/</Redirect>5</Response>
Building an Messaging Application? The Messaging Quickstarts show you how to send, receive, and reply to messages using your programming language of choice.
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:
1const MessagingResponse = require('twilio').twiml.MessagingResponse;234const response = new MessagingResponse();5response.message('This is message 1 of 2.');6response.message('This is message 2 of 2.');78console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Message>This is message 1 of 2.</Message>4<Message>This is message 2 of 2.</Message>5</Response>
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.
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 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 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.
PARAMETER | DESCRIPTION |
---|---|
OptOutType | String indicating whether the message is a STOP, HELP, or START message. |
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.
Twilio behaves just like a web browser, so there's nothing new to learn.
GET
, just like a normal web browser.Twilio does the right thing when your application responds with different MIME types.
MIME TYPE | BEHAVIOR |
---|---|
text/xml, application/xml, text/html | Twilio interprets the returned document as a TwiML XML Instruction Set. This is the most commonly used response. |
text/plain | Twilio returns the content of the text file to the sender in the form of a message. |
When your application responds to a Twilio request with XML, Twilio runs your document through the TwiML interpreter. 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.
1<?xml version="1.0" encoding="UTF-8" ?>2<Response>3<Message>Hello World!</Message>4<Redirect>https://demo.twilio.com/welcome/sms</Redirect>5</Response>
You can provide multiple <Message>
verbs in one TwiML document to send multiple messages. For example:
1<?xml version="1.0" encoding="UTF-8" ?>2<Response>3<Message>This is message 1 of 2.</Message>4<Message>This is message 2 of 2.</Message>5</Response>
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. You can use XML comments freely; the interpreter ignores them.
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
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Message>I'm hungry!</Message>4</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.
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.