# Get identity proof status Returns the current status of an identity proof session, including which verification methods have been verified and which are still pending. Endpoint: GET /partner/v2/account/{accountId}/identity-proof/{id} Version: 2.0 Security: PartnerOAuth ## Path parameters: - `accountId` (integer, required) - `id` (integer, required) ## Response 200 fields (application/json): - `createdAt` (string) Creation timestamp Example: "2025-11-19T13:00:00Z" - `id` (integer) Identity proof ID Example: 12345 - `isVerified` (boolean) Whether all required verification methods have been completed - `missingVerifications` (array) Array of verification methods still pending (e.g., ["EMAIL"], ["SMS"], ["EMAIL", "SMS"], or []) Example: ["SMS"] - `verificationMethod` (string) Verification method Enum: "EMAIL", "SMS", "EMAIL_AND_SMS", "PAPER", "NULL" - `verifiedEmail` (string) Verified email (if verified) Example: "john@example.com" - `verifiedPhone` (string) Verified phone (if verified) Example: "5551234567" ## Response 404 fields