Skip to content

List patient medications

Request

Retrieve all medications for a patient including dosage instructions and status.

Security
PartnerApiKey and PartnerOAuth
Path
patientIdinteger, (int64)required

Patient ID

Example:67890
accountIdinteger, (int64)required

Account identifier

Query
activeboolean

Filter by active status. If not specified, returns both active and inactive appointment types.

Enum:truefalse
statusstring(?i)ACTIVE|ON_HOLD|DISCONTINUED|COMPLETED|UNK...

Filter by status (ACTIVE, ON_HOLD, DISCONTINUED, COMPLETED, UNKNOWN)

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/patient/67890/health-profile/medications?active=true&status=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Medications retrieved successfully

Bodyapplication/json
medicationsArray of objects(MedicationDTO)

List of medications

Response
{ "medications": [ {} ] }