Remove Entity

Remove one member from a watchlist.

Removes a single member from a watchlist by its entity id (the id returned by List entities or Add entities). Only the membership link is removed — the canonical company/profile is shared and never deleted. Returns 404 when the entity is not a member of this list.

Remove entity

DELETE/api/v2/watchlists/{kind}/{watchlist_id}/entities/{entity_id}

Path parameters

ParameterTypeDescription
kindstringWatchlist kind: company or profile (matches the list type).
watchlist_idintegerIdentifier of the watchlist.
entity_idintegerIdentifier of the member (canonical company/profile id).

Example request

curl -X DELETE "https://api.getsillage.com/api/v2/watchlists/company/128/entities/901" \
  -H "Authorization: Bearer $SILLAGE_API_KEY"

Example response

{
  "data": { "id": 901, "deleted": true }
}

Errors

StatusDescription
401The API key is missing or invalid.
404The watchlist or the entity-on-list was not found.
422Invalid path parameters.
429Too many requests.

On this page