Create a new identity proof session for person verification within this account. Returns an ID and secure token for subsequent requests.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/identity-proof
curl -i -X POST \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"verificationMethod": "EMAIL_AND_SMS",
"verificationMethodEnum": "EMAIL"
}'Identity proof created successfully
Verification method
Enum:"EMAIL""SMS""EMAIL_AND_SMS""PAPER""NULL"
Example:"EMAIL_AND_SMS"
Response
{ "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "isVerified": false, "token": "abc123...", "verificationMethod": "EMAIL_AND_SMS", "verifiedEmail": "john@example.com", "verifiedPhone": "5551234567" }