Skip to main content
PATCH
/
api
/
contacts
/
{id}
/
phone-number
/
verify
Set or clear phone-number verification timestamp
curl --request PATCH \
  --url https://your-instance.example.com/api/contacts/{id}/phone-number/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phoneNumber": "+14165550100",
  "verifiedAt": "2026-05-15T09:12:00.000Z"
}
'
{
  "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
phoneNumber
string
required

Phone-number value (e.g. +14165551234) of the entry to update.

verifiedAt
string<date-time> | null

ISO date marking when the number was verified. Pass null to clear verification.

Response

Phone verification updated

data
object
required
message
string