Skip to main content
POST
/
api
/
entity-groups
/
{id}
/
unassign
Remove entities from a group
curl --request POST \
  --url https://api.mentionlab.io/api/entity-groups/{id}/unassign \
  --header 'Content-Type: application/json' \
  --header 'x-project-id: <x-project-id>' \
  --data '
{
  "entityIds": [
    "uuid-1",
    "uuid-2"
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.mentionlab.io/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-project-id
string
required

Project ID to specify the project context

Path Parameters

id
string<uuid>
required

Body

application/json
entityIds
string[]
required

Entity IDs to assign to this group

Example:
["uuid-1", "uuid-2"]

Response

204 - undefined