BestRx APIs
Contact Us
  1. Refill 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. Refill API

Send Refill Request

POST
https://webservice.bcsbestrx.com/bcswebservice/v2/webrefillservice/SendRefillRequest
INFO
This endpoint is used to send a refill request.

Request

Header Params

Body Params application/json

Example
{
  "userName": "Telecom",
  "APIKey":"1abc2d3e4fghi5jklm6nopq7rstu890vwxyz",
  "PharmacyNumber":"1234567890",
  "LastName":"Smith",
  "DOB":"1990-12-31",
  "Phone":"6308939210",
  "RequestDateTime":"2023-12-31T23:59:59Z",
  "DeliveryOption":1,
  "RequestType":1,
  "RxInRefillRequest":[{
    "RxNo":100001
  }],
  "Notes":"Need Prescription Refilled Soon"
}

Responses

🟢200OK
application/json
Body

Examples
{
    "RxInRefillResponse": [
        {
            "RxNo": 100001,
            "Status": "OK",
            "StatusDesc": "Valid Refill Request"
        }
    ]
}
🟠400Bad Request
Modified at 2024-07-26 16:17:19
Previous
GetPatientProfile
Next
Overview