Mangools/API

Remove keywords from the list

Remove one or more keywords from a keyword list. Pass keyword_ids in the request body. Keywords not currently in the list are ignored silently. Returns HTTP 204.

DELETE
/kwfinder/lists/{list_id}/keywords

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Path Parameters

list_id*string

list ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

keyword_ids?array<string>

Response Body

application/json

application/json

curl -X DELETE "https://api.mangools.com/v3/kwfinder/lists/string/keywords" \  -H "Content-Type: application/json" \  -d '{}'
Empty
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "Error",
    "message": "Tag not found"
  }
}