Skip to content

Send verification code

Request

Send verification code to email or phone. Does not perform patient matching - only proves contact ownership.

Security
PartnerApiKey and PartnerOAuth
Path
accountIdinteger, (int64)required
idinteger, (int64)required
Bodyapplication/jsonrequired

Provide either email or phone, not both

emailstring

Email to verify. Provide either email or phone, not both.

Example:"john@example.com"
phonestring

Phone number to verify (10-digit US number, e.g. 5551234567). Country code is optional and defaults to US (+1). Provide either email or phone, not both.

curl -i -X POST \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}/send' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{
    "email": "john@example.com"
  }'

Responses

Verification code sent successfully

Bodyapplication/json
sentboolean

Whether the verification code was sent successfully

Example:true
Response
{ "sent": true }