Skip to main content
PUT
/
api
/
v2
/
lists
/
{ID}
/
keywords
cURL
curl "https://app.tatango.com/api/v2/lists/<ID>/keywords" -d '{"keyword_names":["TEST","KEYWORD","NAMES"]}' -X PUT 
  -H "Accept: application/json" 
  -H "Content-Type: application/json" 
  -u [email protected]:my_api_key 
  -H "Host: example.org" 
  -H "Cookie: "
{
  "status": "Keywords changed",
  "keyword_names": [
    "TEST",
    "KEYWORD",
    "NAMES"
  ]
}
PUT https://app.tatango.com/api/v2/lists/<ID>/keywords

Authorizations

Authorization
string
header
required

Tatango authenticates API requests by validating an API key passed via HTTP Basic Authentication. Use your login email as the username and your API key as the password.

Path Parameters

ID
integer
required

The ID of the list to change.

Body

application/json
keyword_names
string[]
required

Array of keyword names

Response

200 - application/json

Keywords updated successfully

status
string
required
Example:

"Keywords changed"

keyword_names
string[]
required
Example:
["TEST", "KEYWORD", "NAMES"]