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

Headers

x-project-id
string
required

Project ID to specify the project context

Body

application/json
entityIds
string[]
required

Entity IDs to merge. First ID is the target, rest are sources.

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

Response

204 - undefined