Skip to main content
Get patient's current medications
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/patients/{patientId}/medications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "medication": "<string>",
      "usageStatus": "active",
      "clinicianReviewed": true,
      "source": "Admission Referral Packet",
      "medicationId": "<string>",
      "dose": "<string>",
      "unitOfMeasurement": "<string>",
      "frequency": "<string>",
      "route": "<string>",
      "highRisk": true,
      "matchedToMedDb": true,
      "instructions": "<string>",
      "startDate": "2023-12-25",
      "lastReviewedDate": "2023-12-25",
      "lastReviewedByVisit": "<string>"
    }
  ],
  "lastUpdated": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

patientId
string
required

Response

200 - application/json

Current medication list for the patient.

data
object[]
lastUpdated
string<date-time>