BestRx APIs
Contact Us
  1. Delivery/Shipping Provider 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
    • Get POS Transaction Status
    • Get Item Details
  • Delivery/Shipping Provider API
    • Overview
    • Error Codes
    • Address Validation
      POST
    • Create Order
      POST
    • Update Order Status
      POST
    • Cancel Order
      POST
  • Realtime Data Feed Specification
    • Overview
    • Patient Update Callback
    • E-Prescription Notification Callback
    • Prescription Update Callback
  1. Delivery/Shipping Provider API

Update Order Status

POST
https://dispensingservice.bestrxconnect.com/Order/UpdateOrderStatus
INFO
This endpoint is used to update order status. The message is sent from the delivery/shipping provider to BestRx.

Request

Header Params

Body Params application/json

Example
{
    "bestrx_pharmacy_id": "ef0a4740-0be9-44f7-b89d-9e66eeba0b9a",
    "bestrx_order_id": 123456789,
    "bestrx_unique_order_id":1001,
    "provider_order_id": "POI123456",
    "tracking_id": "15646323",
    "order_status": {
        "date": "2022-09-10T09:47:27.5232761Z",
        "status_code": "2",
        "status_Code_description": "Order Created",
        "status_notes": "An example would be if there was a delivery exception, the reason for that exception could be displayed here (\"recipient not home\")."
    },
    "signature": "",
    "signature_url": "",
    "signer_info": {
        "relation": "3",
        "first_name": "John",
        "last_name": "Doe",
        "jurisdiction": "IL",
        "id_type": "6",
        "id_no": "D200-3333-4444"
    },
    "consent_info": [
        {
            "consent_type": 1,
            "consent_response": "Yes"
        }
    ]
}

Responses

🟢200OK
application/json
Body

Example
{
    "data": {},
    "status_updated": "true",
    "messages": [
        {
            "message_code": "TP0005",
            "message": "Status updated successfully.",
            "message_type": 0
        }
    ]
}
Modified at 2024-06-12 20:10:52
Previous
Create Order
Next
Cancel Order