Update an existing message in the conversation
A Message resource represents a message in a conversation.
Update an existing message in the conversation
Headers
-
X-Twilio-Webhook-Enabled string
The X-Twilio-Webhook-Enabled HTTP request header
Values are
true
orfalse
.
Path parameters
-
The unique ID of the Conversation for this message.
-
A 34 character string that uniquely identifies this resource.
Body
-
Attributes string
A string metadata field you can use to store any data you wish. The string value must contain structurally valid JSON if specified. Note that if the attributes are not set "{}" will be returned.
-
Body string
The content of the message, can be up to 1,600 characters long.
-
DateCreated string(date-time)
The date that this resource was created.
-
DateUpdated string(date-time)
The date that this resource was last updated.
null
if the message has not been edited.
POST /v1/Conversations/{ConversationSid}/Messages/{Sid}
curl \
-X POST https://conversations.twilio.com/v1/Conversations/{ConversationSid}/Messages/{Sid} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "X-Twilio-Webhook-Enabled: true" \
-d 'Attributes=string&Author=string&Body=string&DateCreated=2023-05-04T09%3A42%3A00%2B00%3A00&DateUpdated=2023-05-04T09%3A42%3A00%2B00%3A00'
Request example
# Headers
X-Twilio-Webhook-Enabled: true
# Payload
{
"Attributes": "string",
"Author": "string",
"Body": "string",
"DateCreated": "2023-05-04T09:42:00+00:00",
"DateUpdated": "2023-05-04T09:42:00+00:00"
}
Request examples
# Headers
X-Twilio-Webhook-Enabled: true
# Payload
{
"Attributes": "string",
"Author": "string",
"Body": "string",
"DateCreated": "2024-05-04T09:42:00+00:00",
"DateUpdated": "2024-05-04T09:42:00+00:00"
}
Response examples (200)
{
"account_sid": "string",
"attributes": "string",
"author": "string",
"body": "string",
"conversation_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"index": 42,
"links": {},
"media": [],
"participant_sid": "string",
"sid": "string",
"url": "https://example.com"
}
Response examples (200)
{
"account_sid": "string",
"attributes": "string",
"author": "string",
"body": "string",
"conversation_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"index": 42,
"links": {},
"media": [],
"participant_sid": "string",
"sid": "string",
"url": "https://example.com"
}