# Identity Proof Account-scoped identity verification endpoints ## Create identity proof - [POST /partner/v2/account/{accountId}/identity-proof](https://lobbie-partner.redocly.app/openapi/identity-proof/createidentityproof.md): Create a new identity proof session for person verification within this account. Returns an ID and secure token for subsequent requests. ## Get identity proof status - [GET /partner/v2/account/{accountId}/identity-proof/{id}](https://lobbie-partner.redocly.app/openapi/identity-proof/getidentityproofstatus.md): Returns the current status of an identity proof session, including which verification methods have been verified and which are still pending. ## Get matched patient - [GET /partner/v2/account/{accountId}/identity-proof/{id}/patient](https://lobbie-partner.redocly.app/openapi/identity-proof/getpatient_1.md): 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. ## Send verification code - [POST /partner/v2/account/{accountId}/identity-proof/{id}/send](https://lobbie-partner.redocly.app/openapi/identity-proof/sendverification.md): Send verification code to email or phone. Does not perform patient matching - only proves contact ownership. ## Verify code - [POST /partner/v2/account/{accountId}/identity-proof/{id}/verify](https://lobbie-partner.redocly.app/openapi/identity-proof/verifycode.md): Verify the code sent via email or SMS. Returns verification status and the verified contact information (email/phone).