Skip to main content
PATCH
/
api
/
contacts
/
{id}
/
verify
Verify a contact (admin)
curl --request PATCH \
  --url https://your-instance.example.com/api/contacts/{id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "verificationSource": "manual"
}
'
{
  "message": "Contact verified",
  "data": {
    "contact": {
      "_id": "64f0a1b2c3d4e5f6a7b8c9d0",
      "firstName": "Jane",
      "lastName": "Doe"
    }
  }
}

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.

Path Parameters

id
string
required

Body

application/json
verificationSource
string

Optional source tag for the verification (e.g. "manual", "import", "third-party").

Response

Contact verified

data
object
required
message
string