Skip to main content
PATCH
/
api
/
contacts
/
dedup-reviews
/
bulk
/
keep-separate
Bulk-resolve dedup reviews as kept separate
curl --request PATCH \
  --url https://your-instance.example.com/api/contacts/dedup-reviews/bulk/keep-separate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reviewIds": [
    "64f0a1b2c3d4e5f6a7b8ca30",
    "64f0a1b2c3d4e5f6a7b8ca31"
  ]
}
'
{
  "success": true,
  "results": [
    {
      "reviewId": "64f0a1b2c3d4e5f6a7b8ca30",
      "ok": true,
      "status": 200
    }
  ],
  "summary": {
    "total": 1,
    "succeeded": 1,
    "failed": 0
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
reviewIds
string[]
required

Dedup-review _ids to resolve in this call; capped at the server-configured per-call limit.

resolution
object

Shared resolution payload applied to every review in the batch (same shape as the single-review endpoint).

Response

Bulk keep-separate attempted

success
enum<boolean>
required
Available options:
true
results
object[]
required
summary
object
required