Skip to content

Get identity proof status

Request

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
Path
accountIdinteger, (int64)required
idinteger, (int64)required
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'

Responses

Identity proof status retrieved successfully

Bodyapplication/json
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
idinteger, (int64)

Identity proof ID

Example:12345
isVerifiedboolean

Whether all required verification methods have been completed

Example:false
missingVerificationsArray of strings

Array of verification methods still pending (e.g., ["EMAIL"], ["SMS"], ["EMAIL", "SMS"], or [])

Example:
[ "SMS" ]
verificationMethodstring

Verification method

Enum:"EMAIL""SMS""EMAIL_AND_SMS""PAPER""NULL"
Example:"EMAIL_AND_SMS"
verifiedEmailstring

Verified email (if verified)

Example:"john@example.com"
verifiedPhonestring

Verified phone (if verified)

Example:"5551234567"
Response
{ "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "isVerified": false, "missingVerifications": [ "SMS" ], "verificationMethod": "EMAIL_AND_SMS", "verifiedEmail": "john@example.com", "verifiedPhone": "5551234567" }