Returns the current status of an identity proof session, including which verification methods have been verified and which are still pending.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/identity-proof/{id}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/identity-proof/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Identity proof status retrieved successfully
Array of verification methods still pending (e.g., ["EMAIL"], ["SMS"], ["EMAIL", "SMS"], or [])
Example:
[ "SMS" ]
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, "missingVerifications": [ "SMS" ], "verificationMethod": "EMAIL_AND_SMS", "verifiedEmail": "john@example.com", "verifiedPhone": "5551234567" }