Update account settings

POST /v1/Voice/Settings

TODO: Resource-level docs

Body

  • AdvancedFeatures boolean
  • SubaccountSid string

    Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

  • VoiceTrace boolean

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • advanced_features boolean | null
    • url string(uri) | null
    • voice_trace boolean | null
POST /v1/Voice/Settings
curl \
 -X POST https://insights.twilio.com/v1/Voice/Settings \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'AdvancedFeatures=true&SubaccountSid=string&VoiceTrace=true'
Request example
{
  "AdvancedFeatures": true,
  "SubaccountSid": "string",
  "VoiceTrace": true
}
Request examples
{
  "AdvancedFeatures": true,
  "SubaccountSid": "string",
  "VoiceTrace": true
}
Response examples (200)
{
  "account_sid": "string",
  "advanced_features": true,
  "url": "https://example.com",
  "voice_trace": true
}
Response examples (200)
{
  "account_sid": "string",
  "advanced_features": true,
  "url": "https://example.com",
  "voice_trace": true
}