Create message
documentedSend a new outbound message (SMS/MMS/WhatsApp) from a Twilio number or Messaging Service.
POST /2010-04-01/Accounts/{AccountSid}/Messages.jsonMessagingno implementation yet0 runsNo 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_SECRET}}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d "To={{$to}}&From={{$from}}&Body={{$body}}"