/keywords/append_engines POST
Allows you to append a list of new engines to an existing keyword_id, whilst preserving the original engine list. On success, it returns the full list of all engines assigned to the keyword_id (existing and new).
Required parameters
Name | Type | Description |
---|---|---|
keyword_id | string | The keyword_id that you wish to append the engine list to. The keyword_id is supplied by the /keywords/add endpoint. |
engines | string or array of strings | The engine(s) that you wish to append to the keyword_id. |
Cost
Free
Example response
{
"status": "ok",
"data": {
"keyword_id": "50d730110244066f4b00003e",
"engines": ["google_en-us","bing_en-us"] // the full list of engines assigned to the keyword_id
}
}