Vai al contenuto principale
GET
/
tags
/
{tagId}
/
resources
Trova risorse per valore del tag
curl --request GET \
  --url https://api.altostrat.io/tags/{tagId}/resources \
  --header 'Authorization: Bearer <token>'
[
  {
    "tag_id": "tag_01E8Z4Q6J7B6A5P4E3D2C1B0A9",
    "correlation_id": "site_9b52d930f4324c0abac04c12dff85544",
    "correlation_type": "site",
    "value": "APAC",
    "created_at": "2025-10-29T13:00:00Z",
    "updated_at": "2025-10-29T13:00:00Z"
  }
]

Authorizations

Authorization
string
header
required

Un token bearer è richiesto per tutte le richieste API.

Path Parameters

tagId
string
required

L'identificatore univoco per la definizione del tag.

Query Parameters

value
string
required

Il valore esatto del tag da cercare.

Response

Un elenco di risorse che corrispondono al tag e al valore.

tag_id
string

L'ID della definizione del tag genitore.

Example:

"tag_01E8Z4Q6J7B6A5P4E3D2C1B0A9"

correlation_id
string

L'ID della risorsa a cui è applicato questo valore di tag.

Example:

"site_9b52d930f4324c0abac04c12dff85544"

correlation_type
enum<string>

Il tipo di risorsa che viene correlata.

Opzioni disponibili:
site,
user,
wan,
account
Example:

"site"

value
string

Il valore specifico del tag per questa risorsa (es. "APAC", "Alta").

Example:

"APAC"

created_at
string<date-time>

La data e ora di creazione del valore del tag.

Example:

"2025-10-29T13:00:00Z"

updated_at
string<date-time>

La data e ora dell'ultimo aggiornamento del valore del tag.

Example:

"2025-10-29T13:00:00Z"