For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Welcome
  • API Reference
      • GETListar SIP Trunks
      • POSTCrear SIP Trunk
      • GETObtener SIP Trunk
      • DELEliminar SIP Trunk
      • PATCHActualizar SIP Trunk
Logo
API ReferenceSip Trunks

Listar SIP Trunks

GET
https://nebrijaai.com/api/v1/sip-trunks
GET
/api/v1/sip-trunks
$curl https://nebrijaai.com/api/v1/sip-trunks \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
200Retrieved
1[
2 {
3 "id": "a3f1c9d2-7b4e-4f8a-9d3e-2b5c6f7a8e9d",
4 "name": "Main Office SIP Trunk",
5 "gateways": [
6 {
7 "ipOrDomain": "sip-gateway.nebrijaai.com",
8 "port": 5060,
9 "name": "Primary Gateway"
10 }
11 ],
12 "authentication": {
13 "username": "office_sip_user",
14 "password": "********"
15 },
16 "advanced": {
17 "dtmfMode": "rfc2833",
18 "codecPreferences": [
19 "G711",
20 "G729"
21 ]
22 },
23 "isSystem": false,
24 "providerId": "livekit-1234567890",
25 "createdAt": "2024-01-15T09:30:00Z",
26 "updatedAt": "2024-01-15T09:30:00Z"
27 }
28]

Devuelve todos los SIP Trunks de la organización. Las contraseñas se devuelven enmascaradas.

Was this page helpful?
Previous

Crear SIP Trunk

Next
Built with

Authentication

AuthorizationBearer

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

Response

Lista de SIP Trunks.
idstringformat: "uuid"
namestring
gatewayslist of objects
authenticationobject
advancedobject

Configuración avanzada del trunk.

isSystemboolean

Indica si es un trunk del sistema (no modificable/eliminable).

providerIdstring

ID del trunk en el proveedor externo (LiveKit).

createdAtdatetime
updatedAtdatetime