Skip to main content
GET
/
porting
/
uk_carriers
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.porting.listUkCarriers();

console.log(response.data);
{
  "data": [
    {
      "id": "96dfa9e4-c753-4fd3-97cd-42d66f26cf0c",
      "cupid": "895",
      "name": "Telnyx UK Limited",
      "alternative_cupids": [
        "895"
      ],
      "record_type": "porting_uk_carrier",
      "created_at": "2021-03-19T10:07:15.527000Z",
      "updated_at": "2021-03-19T10:07:15.527000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

data
object[]