Create a bulk update request to change voice dialing country permissions of one

POST /v1/DialingPermissions/BulkCountryUpdates

TODO: Resource-level docs

Create a bulk update request to change voice dialing country permissions of one or more countries identified by the corresponding ISO country code

application/x-www-form-urlencoded

Body

  • UpdateRequest string Required

    URL encoded JSON array of update objects. example : [ { "iso_code": "GB", "low_risk_numbers_enabled": "true", "high_risk_special_numbers_enabled":"true", "high_risk_tollfraud_numbers_enabled": "false" } ]

Responses

  • 201

    Created

    Hide response attributes Show response attributes object
POST /v1/DialingPermissions/BulkCountryUpdates
curl \
 -X POST https://voice.twilio.com/v1/DialingPermissions/BulkCountryUpdates \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'UpdateRequest=string'
Request example
{
  "UpdateRequest": "string"
}
Response examples (201)
{
  "update_count": 42,
  "update_request": "string"
}