Skip to main content
Get Medication History
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/patients/{patientId}/medication-history \
  --header 'Authorization: Bearer <token>'
{
  "patientId": "<string>",
  "history": [
    {
      "changeDate": "2023-11-07T05:31:56Z",
      "visitId": "<string>",
      "medicationName": "<string>",
      "changeType": "added",
      "details": "<string>",
      "source": "Admission Referral Packet",
      "discrepancyFlag": true
    }
  ]
}

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

The patient's medication timeline.

patientId
string
history
object[]