BestRx APIs
Contact Us
  1. Prescription API
  • Introduction - BestRx APIs
  • Patient API
    • Overview
    • Error Codes
    • Add Patient
      POST
    • Update Patient
      POST
    • Get Patient
      POST
    • Submit Charge Account Payment
      POST
  • Drug API
    • Overview
    • Error Codes
    • Get Drug Information
      POST
  • Prescription API
    • Overview
    • Error Codes
    • Submit Rx Transfer Request
      POST
    • Return to Stock
      POST
    • Save Rx Signature
      POST
  • Refill API
    • Overview
    • Error Codes
    • GetPatientProfile
      POST
    • Send Refill Request
      POST
  • BestPOS API
    • Overview
    • Error Codes
    • Create POS Transaction
      POST
    • Get POS Transaction Status
      POST
    • Get Item Details
      POST
  • Delivery/Shipping Provider API
    • Overview
    • Error Codes
    • Address Validation
    • Create Order
    • Update Order Status
    • Cancel Order
  • Realtime Data Feed Specification
    • Overview
    • Patient Update Callback
    • E-Prescription Notification Callback
    • Prescription Update Callback
  1. Prescription API

Submit Rx Transfer Request

POST
https://dataservice.bestrxconnect.com/prescription/submitrxtransferrequest
INFO
This endpoint is used to Submit a Request to Tranfer Patient Presciption (all Pending Refills or Single Refill) to Another Pharmacy. If the Pharmacy to which the Prescription is being transferred to is within their Group of Pharmacies, prescription will be transferred using ERx. And if the Pharmacy to which the Prescription is being transferred to is NOT within their Group of Pharmacies, prescription will be transferred using Fax, for which a pharmacy must have E-Fax service.

Request

Body Params application/json

Example
{
  "PharmacyNumber": "1234567890",
  "RxNo": 6000095,
  "RxFillDate": "2023-04-25",
  "TransferToPharmacy": {
    "PharmacyName": "BestRx Pharmacy",
    "Address1": "2625 Butterfield Road",
    "Address2": "Suite 200S",
    "City": "Oak Brook",
    "State": "IL",
    "Zip": "60523",
    "PharmacyNCPDP": "1234567",
    "PharmacyPhoneNumber": "6308939210",
    "PharmacyFaxNumber": "6303393171",
    "ContactName": "Michele A Blanco"
  },
  "TransferDate": "2023-04-30",
  "RPHInitial": "VVP",
  "ContactName": "John A Smith",
  "TransferRxRemark": "Transfer due to unavailable stock",
  "UserID": "JAS",
  "RxTransferType": 0
}

Responses

🟢200OK
application/json
Body

Example
{
    "Data": {
        "RxTransferred": true,
        "RxTransferredVia": "E-Transfer",
        "ListOfValidationMessage": []
    },
    "IsValid": true,
    "Messages": []
}
🟠400Bad Request
Modified at 2024-07-29 21:33:00
Previous
Error Codes
Next
Return to Stock