curl --request PATCH \
--url https://statsigapi.net/console/v1/tags/{id} \
--header 'Content-Type: application/json' \
--header 'STATSIG-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"isCore": false
}'
{
"message": "Tag updated successfully",
"data": {
"id": "string",
"name": "a tag",
"description": "a description",
"isCore": false
}
}
Optional header to respect review settings for mutation endpoints.
id
Update Tag Response
The response is of type object
.
curl --request PATCH \
--url https://statsigapi.net/console/v1/tags/{id} \
--header 'Content-Type: application/json' \
--header 'STATSIG-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"isCore": false
}'
{
"message": "Tag updated successfully",
"data": {
"id": "string",
"name": "a tag",
"description": "a description",
"isCore": false
}
}