Mangools/API

Unassign tag from tracking

Detach one or more tags from one or more tracked keywords in a single call. Both keyword_ids (tracked keyword IDs) and tag_ids are required. Tags not currently assigned are ignored silently.

POST
/serpwatcher/trackings/{tracking_id}/tags/unassign

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Path Parameters

tracking_id*string

Tracking ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

body?unknown

Response Body

application/json

curl -X POST "https://api.mangools.com/v3/serpwatcher/trackings/string/tags/unassign" \  -H "Content-Type: application/json" \  -d '{    "keyword_ids": [      "string"    ],    "tag_ids": [      "string"    ]  }'
{}