Brain

POST /v1/brain/review/conflicts/:id

Resolve a dedup conflict (merge or keep distinct)

unison-brain
POST /v1/brain/review/conflicts/:id

Resolve a dedup conflict with a verdict: merge the pair, or mark them distinct.

Required scope: brain:admin

Request body

{ "verdict": "merge" }

verdict is "merge" or "distinct".

Example

curl -X POST 'https://brain.unisonlabs.ai/v1/brain/review/conflicts/cfl_123' \
  -H "Authorization: Bearer $UNISON_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"verdict":"merge"}'

Returns the JSON described above on success, or an error envelope { "error": { "code", "message" } } on failure.