Send verification code to email or phone. Does not perform patient matching - only proves contact ownership.
Security
PartnerApiKey and PartnerOAuth
Provide either email or phone, not both
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}/send
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/identity-proof/{id}/send
- Email verification
- SMS verification
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"
}'Response
{ "sent": true }