Transfer Prescription
Overview
transfer_prescription initiates a prescription transfer to a pharmacy. Call this tool after confirming eligibility (via check_transfer_eligibility) and selecting a store and pickup time (via find_pharmacy_stores and get_pharmacy_hours). It requires patient info, insurance details, pharmacy/prescription info, and pickup preferences.
Required Parameters
patient_first_name (string)
- Patient first name.
patient_last_name (string)
- Patient last name.
patient_gender (string)
- Patient gender.
patient_date_of_birth (string)
- Patient date of birth, in
YYYY-MM-DDformat.
patient_phone (string)
- Patient phone number.
patient_phone_type (string)
- Patient phone type (e.g.,
mobile,home).
patient_email (string)
- Patient email address.
pharmacy_name (string)
- Name of the current pharmacy transferring from.
pharmacy_phone (string)
- Phone number of the current pharmacy.
prescription_fhir_id (string)
- FHIR MedicationRequest ID for the prescription.
prescription_drug_name (string)
- Name of the drug being transferred.
prescription_rx_number (string)
- Prescription RX number.
prescription_ninety_day (boolean)
- Whether this is a 90-day supply prescription.
pickup_store_number (string)
- Store number for pickup (from
find_pharmacy_stores).
pickup_date (string)
- Pickup date, in
YYYY-MM-DDformat.
pickup_time (string)
- Pickup time, in
HH:MMformat.
Optional Parameters
insurance_provider (string)
- Default:
None - Insurance provider name.
insurance_member_number (string)
- Default:
None - Insurance member number.
insurance_group_number (string)
- Default:
None - Insurance group number.
pickup_comments (string)
- Default:
None - Optional comments for pickup.
debug (boolean)
- Default:
False - Whether to display debugging information.
Returns
An RxTransferResult containing:
- status — status of the prescription transfer
Notes
This tool is the final step in the prescription transfer flow: check_transfer_eligibility (requires FHIR MedicationRequest IDs) confirms the prescriptions can be moved, find_pharmacy_stores locates a pharmacy near the patient's ZIP code, get_pharmacy_hours retrieves available pickup slots for the chosen store, and transfer_prescription submits the transfer with patient info, insurance, prescription details, and pickup preferences.
Updated 10 days ago
