Skip to main content

List Configurations

GET/api/v1/organizations/telephony-configs

List the org's telephony configurations with phone-number counts.

cURL example

curl -X GET \
  'https://app.intracord.hu/api/v1/organizations/telephony-configs' \
  -H "X-API-Key: $INTRACORD_API_KEY"

Parameters

NameLocationTypeDescription
authorizationheaderobject
X-API-Keyheaderobject

Responses

200Successful Response
application/json
View schema
{
  "properties": {
    "configurations": {
      "items": {
        "$ref": "#/components/schemas/TelephonyConfigurationListItem"
      },
      "type": "array",
      "title": "Configurations"
    }
  },
  "type": "object",
  "required": [
    "configurations"
  ],
  "title": "TelephonyConfigurationListResponse"
}
404Not found
422Validation Error
application/json
View schema
{
  "properties": {
    "detail": {
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      },
      "type": "array",
      "title": "Detail"
    }
  },
  "type": "object",
  "title": "HTTPValidationError"
}