v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
External Connections

List all phone numbers

Returns a list of all active phone numbers associated with the given external connection.

get/external_connections/{id}/phone_numbers

Path parameters

idstring required
Example:1293384261075731499

Identifies the resource.

Query parameters

Filter parameter for phone numbers (deepObject style). Supports filtering by phone_number, civic_address_id, and location_id with eq/contains operations.

{
  "civic_address_id": {
    "eq": "19990261512338516954"
  },
  "location_id": {
    "eq": "19995665508264022121"
  },
  "phone_number": {
    "contains": "+1970",
    "eq": "+19705555098"
  }
}
numberinteger

The page number to load

sizeinteger

The size of the page

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Successful response

Example response

{
  "data": [
    {
      "ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761"
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}