Skip to main content
POST
/
prescriptions
/
fill
Fill Order
curl --request POST \
  --url https://apidev.epiqconnect.com/prescriptions/fill \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "clinicId": "ebf93d3e-b7f4-4547-a513-5c58faa85497",
    "apiKey": "your-api-key-here",
    "prescriptionIds": [
      "7d0f8d32-e4b5-4c01-a356-1dcce463443e"
    ]
  }
]
'
{
  "prescriptionId": [
    "c1e8d45-5d7b-4e08-9c37-1d6b4f5a8e6b",
    "d2e8d45-5d7b-4e08-9c37-1d6b4f5a8e6c"
  ]
}

Body

application/json
apiKey
string
required

API key provided to the partner during onboarding

Example:

"your-api-key-here"

clinicId
string
required

Unique identifier of the clinic associated with the prescriptions

Example:

"ebf93d3e-b7f4-4547-a513-5c58faa85497"

prescriptionIds
string[]
required

List of prescription IDs included in this order

Example:
[
"7d0f8d32-e4b5-4c01-a356-1dcce463443e",
"1d5d0a29-3b7f-4c25-8b27-bd2f2a81a30f"
]

Response

Order filled successfully.

apiKey
string
required

API key provided to the partner during onboarding

Example:

"your-api-key-here"

clinicId
string
required

Unique identifier of the clinic associated with the prescriptions

Example:

"ebf93d3e-b7f4-4547-a513-5c58faa85497"

prescriptionIds
string[]
required

List of prescription IDs included in this order

Example:
[
"7d0f8d32-e4b5-4c01-a356-1dcce463443e",
"1d5d0a29-3b7f-4c25-8b27-bd2f2a81a30f"
]