Vai al contenuto principale
GET
/
sites
/
{siteId}
/
walled-garden-entries
/
{walledGardenEntryId}
Recupera una voce del walled garden
curl --request GET \
  --url https://api.altostrat.io/sites/{siteId}/walled-garden-entries/{walledGardenEntryId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "f1e2d3c4-b5a6-9876-5432-10fedcba9876",
  "name": "Server di Autenticazione Google",
  "type": "captive-auth",
  "ip_address": "172.217.16.0/24",
  "created_at": "2025-10-27T18:00:00Z"
}

Authorizations

Authorization
string
header
required

Autenticazione tramite chiave API. Fornisci il tuo token nell'header 'Authorization'. Esempio: Authorization: Bearer <TUO_TOKEN>

Path Parameters

siteId
string<uuid>
required

L'identificatore univoco per la sede.

Example:

"a1b2c3d4-e5f6-a7b8-c9d0-e1f2a3b4c5d6"

walledGardenEntryId
string<uuid>
required

L'identificatore univoco per la voce del walled garden.

Example:

"f1e2d3c4-b5a6-9876-5432-10fedcba9876"

Response

La voce del walled garden richiesta.

id
string<uuid>

L'identificatore univoco per la voce del walled garden.

Example:

"f1e2d3c4-b5a6-9876-5432-10fedcba9876"

name
string

Un nome descrittivo per la voce.

Example:

"Server di Autenticazione Google"

type
enum<string> | null

Il tipo di servizio a cui questa voce si riferisce.

Opzioni disponibili:
captive-auth,
captive-portal
Example:

"captive-auth"

ip_address
string

L'indirizzo IP o la sottorete in notazione CIDR consentita prima dell'autenticazione.

Example:

"172.217.16.0/24"

created_at
string<date-time>

Il timestamp di creazione della voce.

Example:

"2025-10-27T18:00:00Z"