PATCH
/
console
/
v1
/
tags
/
{id}
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
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

id
string
required

id

Body

application/json
name
string
Required string length: 1 - 100
description
string
Maximum length: 1000
isCore
boolean
default:false

Response

200 - application/json
Update Tag Response
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.