Skip to main content
POST
/
prescriptions
/
refill
Create a Refill Request by Prescription ID
curl --request POST \
  --url https://apidev.epiqconnect.com/prescriptions/refill \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "abc123",
  "clinicId": "clinic123",
  "prescriptionId": "7af0dfda-b049-471c-9383-93bcd1d2e788"
}
'
{
  "prescriptionId": "b7dedcd9-76f8-48f0-a49b-0034b7868634",
  "status": "refill_remaining_status",
  "refillsRemaining": 3,
  "lastFilledDate": null,
  "nextEligibleFillDate": null,
  "medication": {
    "name": "Enclomiphene Citrate",
    "quantity": 5,
    "daysSupply": 30
  }
}

Body

application/json
apiKey
string
required
Example:

"abc123"

clinicId
string
required
Example:

"clinic123"

prescriptionId
string
required
Example:

"7af0dfda-b049-471c-9383-93bcd1d2e788"

Response

Refill remaining status fetched successfully.