Retrieve detailed information about a specific medication. Scoped by account.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/health-profile/medications/{medicationId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/health-profile/medications/{medicationId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/health-profile/medications/{medicationId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Medication found and returned successfully
Medication status
Enum:"ACTIVE""ON_HOLD""DISCONTINUED""COMPLETED""UNKNOWN"
Example:"ACTIVE"
Response
{ "active": true, "createdAt": "2025-01-15T14:00:00Z", "createdBy": "Dr. Jane Smith", "diagnoses": [ { … } ], "directions": "Take 1 tablet by mouth daily", "endDate": "2023-03-01", "id": 12345, "name": "Lisinopril 10mg", "patientId": 67890, "referenceId": "68180-513-01", "startDate": "2022-03-01", "status": "ACTIVE", "updatedAt": "2025-01-15T14:00:00Z", "updatedBy": "Dr. Jane Smith" }