Sign in

Send SMS

documented

Send an SMS message via the MessageBird REST API.

POST /messagesSMSno 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://rest.messagebird.com/messages" \
  -X POST \
  -H 'Authorization: AccessKey {{MESSAGEBIRD_API_KEY}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"recipients": {{$recipients}}, "originator": "{{$originator}}", "body": "{{$body}}"}'