Mangools/API

Updates tag

Update an existing tag — change its name and/or color. The change is reflected everywhere the tag is rendered (keyword lists, statistics, email reports). Returns HTTP 204.

PUT
/serpwatcher/trackings/{tracking_id}/tags/{tag_id}

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Path Parameters

tracking_id*string

Tracking ID

tag_id*string

Tag ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

body?unknown

Response Body

application/json

curl -X PUT "https://api.mangools.com/v3/serpwatcher/trackings/string/tags/string" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "color": "string"  }'
{
  "user_id": "string",
  "tracking_id": "string",
  "name": "string",
  "color": "string",
  "created_at": "string"
}