List all Releases
GET/external_connections/:id/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.
Request
Path Parameters
Identifies the resource.
Query Parameters
Possible values: >= 1
Default value: 1
The page number to load
Possible values: >= 1
and <= 250
Default value: 250
The size of the page
Possible values: [pending_upload
, pending
, in_progress
, complete
, failed
, expired
, unknown
]
The status of the release to filter by
The civic address ID to filter by
The location ID to filter by
The phone number to filter by
The partial phone number to filter by. Requires 3-15 digits.
Responses
200: Successful response
- application/json
401: Unauthorized
404: Not found
422: Bad request
Request samples
curl -L 'https://api.telnyx.com/v2/external_connections/:id/releases' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761",
"tenant_id": "ea175aba-f47c-4702-9400-efaa42688048",
"status": "pending",
"error_message": "string",
"telephone_numbers": [
{
"phone_number": "string",
"number_id": "string"
}
],
"created_at": "2018-02-02T22:25:27.521Z"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}