Partner Pharmacy Treatment Packages
POST
https://staging-api.qualiphy.me/api/partner_pharmacy_treatment_packagesThis endpoint retrieves a list of pharmacies based on the provided exam_id and state.
Parameters
api_key string
RequiredAPI key for authentication
pharmacy_id integer
RequiredUnique ID for the pharmacy
You can pass in multiple pharmacy ids if you want to determine the cheapest price.
exam_ids array[integer]
RequiredUnique IDs for the patient exams
This is the unique exam ID provided in the Exam Invite response. You will receive a list of exams, allowing you to select the appropriate exam_id.
patient_state string
RequiredState (capital abbreviation) 2 characters - i.e. NY
Response
200
Response Fields Explanation
| Field | Explanation |
|---|---|
| exam_pos_id | This is the unique ID of the package |
| qualiphy_total_price | This is the price charged by Qualiphy for the package |
| title | This is the title of the package |
Example Request Payload:
Response Example
[
0:{
"title":"Package Title Test"
"exam_pos_id":1234
"qualiphy_total_price":120
"pharmacy_id":1
}
]