---
title: "Get medication history for a patient including prescriptions and OTC dispenses"
method: GET
path: "/Patients/{id}/medications"
tags: ["Patients"]
---

# Get medication history for a patient including prescriptions and OTC dispenses

`GET /Patients/{id}/medications`

## Path parameters

- `id` string, required

## Response `200`

OK

- PatientMedicationsResponseDto
  - `prescriptions` PatientMedicationDto[]
    - `id` string
    - `type` string
    - `inventoryItemId` string, nullable — The dispensable inventory item — lets the "request refill" affordance capture without a search.
    - `medicationName` string
    - `strength` string, nullable
    - `dosage` string, nullable
    - `frequency` string, nullable
    - `quantity` union
      - number, double
      - string, double
    - `refillsRemaining` union
      - integer
      - string, int32
    - `status` string
    - `prescribedDate` string, date-time
    - `prescribedBy` string
    - `lastFilledDate` string, date-time, nullable
    - `fulfillmentMethod` string, nullable
    - `estimateId` string, nullable — The estimate (treatment plan) this request's billable line sits on, if any. Null for external-pharmacy scripts and other non-billable requests.
    - `estimateNumber` string, nullable — Human-facing number of the linked estimate (e.g. "EST-1042").
    - `estimateStatus` string, nullable — Status of the linked estimate (Draft/Presented/Accepted/Declined).
    - `invoiceId` string, nullable — The invoice the linked estimate was converted into, if any. Non-null = already invoiced.
  - `otcDispenses` PatientMedicationDto[]
    - `id` string
    - `type` string
    - `inventoryItemId` string, nullable — The dispensable inventory item — lets the "request refill" affordance capture without a search.
    - `medicationName` string
    - `strength` string, nullable
    - `dosage` string, nullable
    - `frequency` string, nullable
    - `quantity` union
      - number, double
      - string, double
    - `refillsRemaining` union
      - integer
      - string, int32
    - `status` string
    - `prescribedDate` string, date-time
    - `prescribedBy` string
    - `lastFilledDate` string, date-time, nullable
    - `fulfillmentMethod` string, nullable
    - `estimateId` string, nullable — The estimate (treatment plan) this request's billable line sits on, if any. Null for external-pharmacy scripts and other non-billable requests.
    - `estimateNumber` string, nullable — Human-facing number of the linked estimate (e.g. "EST-1042").
    - `estimateStatus` string, nullable — Status of the linked estimate (Draft/Presented/Accepted/Declined).
    - `invoiceId` string, nullable — The invoice the linked estimate was converted into, if any. Non-null = already invoiced.
  - `totalCount` union
    - integer
    - string, int32

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/versions/a905bde4e796/schema)
