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

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

const globalIPProtocols = await client.globalIPProtocols.list();

console.log(globalIPProtocols.data);
{
  "data": [
    {
      "record_type": "global_ip_protocol",
      "code": "tcp",
      "name": "TCP"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

data
Global IP Protocol · object[]