Create call
documentedPlace a new outbound call via the REST API.
POST /2010-04-01/Accounts/{AccountSid}/Calls.jsonVoiceno 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/{{$account_sid}}/Calls.json" \
-X POST \
-u "{{$account_sid}}:{{TWILIO_SECRET}}" \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'To={{$to}}&From={{$from}}&Url={{$url}}&Method={{$method}}&StatusCallback={{$status_callback}}'