# Get self-scheduling attempt Retrieve details of an existing self-scheduling attempt by ID. Returns attempt status including identity proof verification status, patient ID (if set), and appointment ID (if created). Returns 404 if attempt doesn't exist or doesn't belong to this account. Endpoint: GET /partner/v2/account/{accountId}/self-scheduling/attempt/{attemptId} Version: 2.0 Security: PartnerOAuth ## Path parameters: - `attemptId` (integer, required) ## Response 200 fields (application/json): - `appointmentId` (integer) Appointment ID if appointment has been created. Omitted if not yet created. Example: 202 - `id` (integer) Attempt ID Example: 789 - `identityProofId` (integer) Associated identity proof ID Example: 456 - `isVerified` (boolean) Whether all required verification methods have been completed Example: true - `patientId` (integer) Patient ID if patient has been set (AccountPatient ID). Omitted if not yet set. Example: 101 - `selfSchedulingSettingId` (integer) Associated self-scheduling setting ID Example: 123 ## Response 401 fields ## Response 404 fields