Saltar al contenido principal
GET
/
v1
/
monitoring
/
wan-tunnels
/
{siteId}
Listar Túneles WAN del Sitio
curl --request GET \
  --url https://api.altostrat.io/v1/monitoring/wan-tunnels/{siteId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9f9510bd-a425-4d9d-a7cf-f845a39e26db",
    "site_id": "d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8",
    "tunnel_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
    "username": "tunnel-user-123"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

siteId
string<uuid>
required

El identificador único para el sitio.

Example:

"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"

Response

Una lista de objetos de túnel WAN para el sitio especificado.

id
string<uuid>

El identificador único interno para el registro del túnel WAN.

Example:

"9f9510bd-a425-4d9d-a7cf-f845a39e26db"

site_id
string<uuid>

El identificador del sitio al que pertenece este túnel.

Example:

"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"

tunnel_id
string<uuid>

El identificador único para el recurso del túnel WAN en sí.

Example:

"a1b2c3d4-e5f6-7890-1234-567890abcdef"

username
string

El nombre de usuario asociado con el túnel.

Example:

"tunnel-user-123"