Mangools/API

Update List name

Rename an existing keyword list.

Required field:

  • name — new list name

Returns HTTP 204.

PATCH
/kwfinder/lists/{list_id}

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*integer

List ID to add keywords

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

name*string

Response Body

application/json

curl -X PATCH "https://api.mangools.com/v3/kwfinder/lists/0" \  -H "Content-Type: application/json" \  -d '{    "name": "My Awesome Keyword List"  }'
Empty
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}