v47

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

{
  "status": {
    "eq": [
      "pending",
      "in_progress"
    ]
  },
  "civic_address_id": {
    "eq": "19990261512338516954"
  },
  "location_id": {
    "eq": "19995665508264022121"
  },
  "phone_number": {
    "eq": "+1234567890",
    "contains": "+123"
  }
}
page[number]integer
page[size]integer

Response

Successful response

Example response

{
  "data": [
    {
      "ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761",
      "tenant_id": "ea175aba-f47c-4702-9400-efaa42688048",
      "status": "pending",
      "created_at": "2018-02-02T22:25:27.521Z"
    }
  ],
  "meta": {
    "total_pages": 3,
    "total_results": 55,
    "page_number": 2,
    "page_size": 25
  }
}