# Patients Patient category retrieval endpoints ## List patient allergies - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/allergies](https://lobbie-partner.redocly.app/openapi/patient-health-profile/listallergies.md): Retrieve all allergies for a patient including severity, reactions, and status. ## List patient medications - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/medications](https://lobbie-partner.redocly.app/openapi/patient-health-profile/listmedications.md): Retrieve all medications for a patient including dosage instructions and status. ## List patient problems/diagnoses - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/problems](https://lobbie-partner.redocly.app/openapi/patient-health-profile/listproblems.md): Retrieve all problems (diagnoses) for a patient including ICD-10 codes and status. ## List patients - [GET /partner/v2/account/{accountId}/patients](https://lobbie-partner.redocly.app/openapi/patients/listpatients.md): Retrieve a paginated list of patients for the account. Supports filtering by name/email and cursor-based pagination. ## Create a new patient - [POST /partner/v2/account/{accountId}/patients](https://lobbie-partner.redocly.app/openapi/patients/createpatient.md): Create a new patient for the account. The account must match the OAuth token context. ## Delete patient - [DELETE /partner/v2/account/{accountId}/patients/{patientId}](https://lobbie-partner.redocly.app/openapi/patients/deletepatient.md): Delete a patient from the account. This removes the patient's association with the account but may not delete the underlying global patient record. ## Get patient data - [GET /partner/v2/account/{accountId}/patients/{patientId}](https://lobbie-partner.redocly.app/openapi/patients/getpatient.md): Retrieve patient information by patient ID. The account must match the OAuth token context. ## Update patient data - [PUT /partner/v2/account/{accountId}/patients/{patientId}](https://lobbie-partner.redocly.app/openapi/patients/updatepatient.md): Update patient information by patient ID. Only provided fields will be updated. The account must match the OAuth token context. ## Get patient's current category - [GET /partner/v2/account/{accountId}/patients/{patientId}/category](https://lobbie-partner.redocly.app/openapi/patients/getpatientcategory.md): Retrieve the current category assignment for the patient. ## List patient category transitions - [GET /partner/v2/account/{accountId}/patients/{patientId}/category/transition](https://lobbie-partner.redocly.app/openapi/patients/listcategorytransitions.md): Retrieve the category transition history for the patient. Shows when and why the patient's category changed over time. ## Get category transition by ID - [GET /partner/v2/account/{accountId}/patients/{patientId}/category/transition/{transitionId}](https://lobbie-partner.redocly.app/openapi/patients/getcategorytransition.md): Retrieve detailed information about a specific category transition. ## List patient allergies - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/allergies](https://lobbie-partner.redocly.app/openapi/patients/listallergies.md): Retrieve all allergies for a patient including severity, reactions, and status. ## List patient medications - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/medications](https://lobbie-partner.redocly.app/openapi/patients/listmedications.md): Retrieve all medications for a patient including dosage instructions and status. ## List patient problems/diagnoses - [GET /partner/v2/account/{accountId}/patients/{patientId}/health-profile/problems](https://lobbie-partner.redocly.app/openapi/patients/listproblems.md): Retrieve all problems (diagnoses) for a patient including ICD-10 codes and status.