v52

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

List all Releases

Returns a list of your Releases for the given external connection. These are automatically created when you change the connection_id of a phone number that is currently on Microsoft Teams.

get/external_connections/{id}/releases

Path parameters

idstring required
Example:1293384261075731499

Identifies the resource.

Query parameters

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

{
  "civic_address_id": {
    "eq": "19990261512338516954"
  },
  "location_id": {
    "eq": "19995665508264022121"
  },
  "phone_number": {
    "contains": "+123",
    "eq": "+1234567890"
  },
  "status": {
    "eq": [
      "pending",
      "in_progress"
    ]
  }
}
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": [
    {
      "created_at": "2018-02-02T22:25:27.521Z",
      "status": "pending",
      "tenant_id": "ea175aba-f47c-4702-9400-efaa42688048",
      "ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761"
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}