patch https://a.klaviyo.com/api/tags//
Update the tag with the given tag ID.
Only a tag's name
can be changed. A tag cannot be moved from one tag group to another.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Tags Read
Tags Write
Responses
Update the tag with the given tag ID.
Only a tag's name
can be changed. A tag cannot be moved from one tag group to another.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Tags Read
Tags Write
xxxxxxxxxx
17curl --request PATCH \
--url https://a.klaviyo.com/api/tags/abcd1234-ef56-gh78-ij90-abcdef123456/ \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'revision: 2023-01-24' \
--data '
{
"data": {
"type": "tag",
"id": "abcd1234-ef56-gh78-ij90-abcdef123456",
"attributes": {
"name": "My Tag"
}
}
}
'
xxxxxxxxxx
12{
"data": {
"type": "tag",
"id": "abcd1234-ef56-gh78-ij90-abcdef123456",
"attributes": {
"name": "My Tag"
},
"links": {
"self": "string"
}
}
}