v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-181,0851,7264.5 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.

{
  "phone_number": {
    "eq": "+19705555098",
    "contains": "+1970"
  },
  "civic_address_id": {
    "eq": "19990261512338516954"
  },
  "location_id": {
    "eq": "19995665508264022121"
  }
}
page[number]integer
page[size]integer

Response

Successful response

Example response

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