Create Configuration
POST
/api/v1/organizations/telephony-configsCreate a new telephony configuration for the org.
cURL example
curl -X POST \
'http://localhost:8000/api/v1/organizations/telephony-configs' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{}'Parameters
| Name | Location | Type | Description |
|---|---|---|---|
authorization | header | object | — |
X-API-Key | header | object | — |
Request body
application/jsonView schema
{
"$ref": "#/components/schemas/TelephonyConfigurationCreateRequest"
}Responses
200Successful Responseapplication/jsonView schema
{
"$ref": "#/components/schemas/TelephonyConfigurationDetail"
}404Not found422Validation Errorapplication/jsonView schema
{
"$ref": "#/components/schemas/HTTPValidationError"
}