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
    • Update Patient Remark
      POST
    • Get Patient Remark
      POST
    • Delete Patient Remark
      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
    • Create New Rx From ERx Message
      POST
    • Create New Rx From eFax
      POST
    • Send Rx Refill Request
      POST
  • Refill API
    • Overview
    • Error Codes
    • WebRefill PlugIn
    • Get Patient Profile
      POST
    • Send Refill Request
      POST
  • BestPOS API
    • Overview
    • Error Codes
    • Create POS Transaction
    • Get POS Transaction Status
    • Get Item Details
    • Get POS Transaction
    • Update POS Txn Status
    • Update POS Txn Signature
    • Get Pharmacy Info
  • 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
Contact Us
  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