Skip to main content
GET
/
resources
/
{correlationId}
/
tags
List tags for a resource
curl --request GET \
  --url https://api.altostrat.io/resources/{correlationId}/tags \
  --header 'Authorization: Bearer <token>'
[
  {
    "tag_id": "tag_01E8Z4Q6J7B6A5P4E3D2C1B0A9",
    "key": "Region",
    "color": "#3F51B5",
    "value": "APAC"
  }
]

Authorizations

Authorization
string
header
required

A bearer token is required for all API requests.

Path Parameters

correlationId
string
required

The unique identifier of the resource being tagged or referenced.

Response

A list of tags applied to the resource.

tag_id
string

The ID of the tag definition.

Example:

"tag_01E8Z4Q6J7B6A5P4E3D2C1B0A9"

key
string

The display name of the tag category.

Example:

"Region"

color
string

The hex color code for the tag.

Example:

"#3F51B5"

value
string

The value of the tag on this resource.

Example:

"APAC"