Skip to main content
PATCH
/
api
/
contacts
/
{id}
/
unverify
Unverify a contact (admin)
curl --request PATCH \
  --url https://your-instance.example.com/api/contacts/{id}/unverify \
  --header 'Authorization: Bearer <token>'
{
  "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

Response

Contact unverified

data
object
required
message
string