Sign in

Update message

documented

Update the body or other properties of an existing Message.

POST /2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}.jsonMessagingno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.twilio.com/2010-04-01/Accounts/{{$AccountSid}}/Messages.json" \
  -X POST \
  -u "{{TWILIO_API_KEY}}:{{TWILIO_API_KEY_SECRET}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "To={{$to}}" \
  --data-urlencode "From={{$from}}" \
  --data-urlencode "Body={{$body}}"
Update message · Twilio · OpenIntegrations