Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request PUT \
--url https://v1.api.altostrat.io/tags/{tagId}/values/{correlationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"correlation_type": "site",
"value": "Decommissioned"
}
'{
"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"
}Updates the value of a tag on a specific resource. This is effectively the same as creating a new tag value, as it will overwrite any existing value for that tag on the resource.
curl --request PUT \
--url https://v1.api.altostrat.io/tags/{tagId}/values/{correlationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"correlation_type": "site",
"value": "Decommissioned"
}
'{
"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"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
A bearer token is required for all API requests.
The unique identifier for the tag definition.
The unique identifier of the resource being tagged or referenced.
The updated details for the tag value.
The tag value was updated successfully.
The ID of the parent tag definition.
"tag_01E8Z4Q6J7B6A5P4E3D2C1B0A9"
The ID of the resource this tag value is applied to.
"site_9b52d930f4324c0abac04c12dff85544"
The type of resource being correlated.
site, user, wan, account "site"
The specific value of the tag for this resource (e.g., "APAC", "High").
"APAC"
The timestamp when the tag value was created.
"2025-10-29T13:00:00Z"
The timestamp when the tag value was last updated.
"2025-10-29T13:00:00Z"
Was this page helpful?