Vai al contenuto principale
GET
/
v1
/
monitoring
/
wan-tunnels
/
{siteId}
Elenca Tunnel WAN del Sito
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

L'identificatore univoco per il sito.

Example:

"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"

Response

Un elenco di oggetti tunnel WAN per il sito specificato.

id
string<uuid>

L'identificatore univoco interno per il record del tunnel WAN.

Example:

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

site_id
string<uuid>

L'identificatore del sito a cui appartiene questo tunnel.

Example:

"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"

tunnel_id
string<uuid>

L'identificatore univoco per la risorsa tunnel WAN stessa.

Example:

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

username
string

Il nome utente associato al tunnel.

Example:

"tunnel-user-123"