Update call
documentedMid-call control/update of a live or in-progress call.
POST /2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}.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/{{$call_sid}}.json" \
-X POST \
-u "{{TWILIO_API_KEY}}:{{TWILIO_API_SECRET}}" \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Status={{$status}}' \
-d 'Url={{$url}}' \
-d 'Method={{$method}}' \
-d 'StatusCallback={{$status_callback}}' \
-d 'StatusCallbackMethod={{$status_callback_method}}'