Verify the code sent via email or SMS. Returns verification status and the verified contact information (email/phone).
Security
PartnerApiKey and PartnerOAuth
Provide either email or phone (not both), along with the verification code
Email that received the code. Provide either email or phone, not both.
Example:"john@example.com"
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}/verify
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/identity-proof/{id}/verify
- Verify SMS code
- Verify email code
curl -i -X POST \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}/verify' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"phone": "5551234567",
"code": "123456"
}'Response
{ "verified": true, "verifiedEmail": "john@example.com", "verifiedPhone": "5551234567" }