{ "opencollection": "1.0.0", "info": { "name": "DoseSpot API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Patients", "type": "folder" }, "items": [ { "info": { "name": "Search patients", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients" }, "docs": "Search for patients within the clinic by name, date of birth, or other demographics." }, { "info": { "name": "Create a patient", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/patients", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new patient record with demographics required for prescribing." }, { "info": { "name": "Get a patient", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient to retrieve." } ] }, "docs": "Retrieve a single patient record by ID." }, { "info": { "name": "Update a patient", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update demographics for an existing patient." } ] }, { "info": { "name": "Prescriptions", "type": "folder" }, "items": [ { "info": { "name": "List a patient's prescriptions", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/prescriptions", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." } ] }, "docs": "Retrieve prescriptions and their statuses for a patient." }, { "info": { "name": "Create a prescription", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/prescriptions", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new prescription for a patient, ready to be sent to a pharmacy." }, { "info": { "name": "Get a prescription", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/prescriptions/:prescriptionId", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." }, { "name": "prescriptionId", "value": "", "type": "path", "description": "The ID of the prescription." } ] }, "docs": "Retrieve a single prescription and its current status." }, { "info": { "name": "Get aggregated medication history", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/medicationHistory", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." } ] }, "docs": "Retrieve aggregated medication history data for a patient from pharmacy and payer sources." } ] }, { "info": { "name": "Medications", "type": "folder" }, "items": [ { "info": { "name": "Search the drug database", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/medications/search" }, "docs": "Search the Medi-Span drug database for medications and supplies by name." }, { "info": { "name": "Check drug interactions", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/medications/interactions", "body": { "type": "json", "data": "{}" } }, "docs": "Run drug-drug and drug-allergy interaction checks for a set of medications." } ] }, { "info": { "name": "Pharmacies", "type": "folder" }, "items": [ { "info": { "name": "Search pharmacies", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/pharmacies/search" }, "docs": "Search the Surescripts pharmacy directory by name, city, state, ZIP, or specialty." }, { "info": { "name": "List a patient's pharmacies", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/pharmacies", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." } ] }, "docs": "Retrieve the pharmacies saved to a patient for prescription routing." }, { "info": { "name": "Add a pharmacy to a patient", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/patients/:patientId/pharmacies", "params": [ { "name": "patientId", "value": "", "type": "path", "description": "The ID of the patient." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Save a pharmacy to a patient's preferred pharmacy list." } ] }, { "info": { "name": "Prescribers", "type": "folder" }, "items": [ { "info": { "name": "Search clinicians", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/clinicians" }, "docs": "Retrieve clinicians (prescribers) and supporting staff in the clinic." }, { "info": { "name": "Create a clinician", "type": "http" }, "http": { "method": "POST", "url": "https://my.dosespot.com/webapi/v2/clinicians", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new clinician (prescriber) within the clinic." }, { "info": { "name": "Get a clinician", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/clinicians/:clinicianId", "params": [ { "name": "clinicianId", "value": "", "type": "path", "description": "The ID of the clinician to retrieve." } ] }, "docs": "Retrieve a single clinician (prescriber) record by ID." } ] }, { "info": { "name": "Notifications", "type": "folder" }, "items": [ { "info": { "name": "Get notification counts", "type": "http" }, "http": { "method": "GET", "url": "https://my.dosespot.com/webapi/v2/notifications/counts" }, "docs": "Retrieve the count of pending notifications and actionable items (transmission errors, refill requests, pharmacy responses) for the authenticated clinician." } ] } ], "bundled": true }