Menu

Expand
Rate this page:

Retrieve and Modify Message History

This guide will show you how you can search, retrieve, and modify the messages you send or receive with Programmable Messaging, using the Message Resource.

A Message resource represents an inbound or outbound message. Twilio creates a Message when any of the following occur:

  • You create a Message resource (i.e., send an outbound message) via the REST API
  • Twilio executes a <Message> TwiML instruction
  • Someone sends a message to one of your Twilio numbers or messaging channel addresses

For step-by-step instructions for sending your first SMS message with Twilio, check out one of the SMS quickstarts.

For detailed instructions on setting up your local environment to code in all of our supported programming languages, see the Environment Setup section of this Guide.

Looking to send WhatsApp messages with Twilio? Try one of the WhatsApp quickstarts.

If you're looking for how to respond to incoming messages, check out the How to Receive and Reply to SMS Messages tutorial.

Search Previous Messages

When you send an SMS or MMS message via the REST API, using the <Message> verb in TwiML, or someone sends a message to one of your Twilio numbers or other channels, Twilio creates a Message instance resource. The Messages list resource represents the set of messages sent from and received by an account.

Retrieving sent and received messages from history can be achieved by querying the Messages list resource. Here you can see how to retrieve all messages from your account:

Loading Code Sample...
        
        

        List all Messages in your account

        If you'd like to have Twilio narrow down this list of messages for you, you can do so by specifying a To number, From number, and a DateSent. The following example shows passing all three but you can pass any combination of parameters you need. This example filters messages for those sent from a specific number to another specific number on or after a certain date:

        Loading Code Sample...
              
              

              List Messages matching filter criteria

              Retrieve a Single Message

              If you know the message SID (i.e. the message's unique identifier), then you can retrieve that specific message directly.

              Loading Code Sample...
                    
                    

                    Fetch a single Message

                    How might you know the SID? When sending a message using the REST API, you will receive a Message instance resource as the response from Twilio. Using this, you can inspect the Sid property of the resource. Read more about sending messages in our guide on the topic.

                    When using the <Message> verb in TwiML, you will need to specify a webhook URL the action attribute to have Twilio call your webhook when the status of the message changes. Your webhook will be passed a MessageSid parameter identifying the incoming message. Read our guide on tracking message status for more on how to do this.

                    When receiving a message, your webhook will be passed a MessageSid parameter identifying the incoming message. You can learn more about receiving messages here.

                    However you obtain the SID, you can immediately request the message using the above code, or, you can save the SID in a database for later recall.

                    Delete or Redact Previously Sent Messages

                    If you want to delete a message from history, you can easily do so by deleting the Message instance resource.

                    Loading Code Sample...
                          
                          

                          Delete a Message

                          Perhaps you want to redact the body of the message for security purposes, but you don't want to delete the message from history entirely. Redacting a message is done by posting an empty body to the message resource (i.e., this is a specific use of the Message update call):

                          Loading Code Sample...
                                
                                

                                Redact the body of a Message

                                Jarod Reyes Mario Celi David Prothero Kat King Brianna DelValle Mathew Roberts Thomas Wanzek Diego Villavicencio
                                Rate this page:

                                Need some help?

                                We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

                                Loading Code Sample...
                                      
                                      
                                      

                                      Thank you for your feedback!

                                      Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                                      Sending your feedback...
                                      🎉 Thank you for your feedback!
                                      Something went wrong. Please try again.

                                      Thanks for your feedback!

                                      thanks-feedback-gif