Skip to content

Get matched patient

Request

Find the matched patient for a verified identity proof. Returns the patient ID if a unique match is found. Returns 404 if no match found, or 422 if multiple matches found (duplicate email/phone in account). All required communication methods must be verified before calling this endpoint.

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}/patient' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Patient found successfully

Bodyapplication/json
patientIdinteger, (int64)

The matched patient ID

Example:12345
Response
{ "patientId": 12345 }