Skip to main content

Update Configuration

PUT/api/v1/organizations/telephony-configs/{config_id}

cURL example

curl -X PUT \
  'http://localhost:8000/api/v1/organizations/telephony-configs/{config_id}' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{}'

Parameters

NameLocationTypeDescription
config_idrequiredpathinteger
authorizationheaderobject
X-API-Keyheaderobject

Request body

application/json
View schema
{
  "$ref": "#/components/schemas/TelephonyConfigurationUpdateRequest"
}

Responses

200Successful Response
application/json
View schema
{
  "$ref": "#/components/schemas/TelephonyConfigurationDetail"
}
404Not found
422Validation Error
application/json
View schema
{
  "$ref": "#/components/schemas/HTTPValidationError"
}