Skip to main content

Retrieve a Release request

GET 
/external_connections/:id/releases/:release_id

Return the details of a Release request and its phone numbers.

Request

Path Parameters

    id int64required

    Identifies the resource.

    release_id uuidrequired

    Identifies a Release request

Responses

200: Successful response

401: Unauthorized

404: Not found

Request samples


curl -L 'https://api.telnyx.com/v2/external_connections/:id/releases/:release_id' \
-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"
}
}