BestRx APIs
Contact Us
  1. BestPOS 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
    • Create New Rx From ERx Message
      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
    • Get POS Transaction
      GET
    • Update POS Txn Status
      POST
    • Update POS Txn Signature
      POST
    • Get Pharmacy Info
      GET
  • 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. BestPOS API

Get POS Transaction

GET
https://posservice.bestrxconnect.com/getpostransaction
INFO
This endpoint is used to get POS Transaction details.

Request

Query Params

Responses

🟢200Success
application/json
Body

Example
{
    "Data": {
        "TxnDateTime": "2025-10-31T23:59:59",
        "IsPaymentComplete": false,
        "PharmacyPatientID": 123,
        "TotalTxnAmt": 10.0100,
        "ItemInfo": [
            {
                "RxID": 11111,
                "RxNo": 12345,
                "FillDate": "2025-10-30T00:00:00",
                "SaleTaxPercent": 32.0000,
                "SaleTaxAmt": 10.0000,
                "SaleDiscPercent": 20.3423,
                "SaleDiscAmt": 10.0000,
                "CityTaxPercent": 0.0000,
                "CityTaxAmt": 0.0000,
                "CountTaxPercent": 0.0000,
                "CountyTaxAmt": 0.0000,
                "FSAType": "",
                "ItemSKU": "",
                "ItemDesc": "",
                "Qty": 10.0,
                "SalePrice": 60.0000,
                "RXPRSeqNo": 0
            },
            {
                "RxID": 0,
                "RxNo": 0,
                "FillDate": null,
                "SaleTaxPercent": 0.0000,
                "SaleTaxAmt": 0.0000,
                "SaleDiscPercent": 0.0000,
                "SaleDiscAmt": 0.0000,
                "CityTaxPercent": 0.0000,
                "CityTaxAmt": 0.0000,
                "CountTaxPercent": 0.0000,
                "CountyTaxAmt": 0.0000,
                "FSAType": "",
                "ItemSKU": "012000003456",
                "ItemDesc": "DAYQUIL 12 OZ LIQ",
                "Qty": 1.0,
                "SalePrice": 1.0000,
                "RXPRSeqNo": 0
            }
        ],
        "BestPOSTransactionID": "1234",
        "Notes": "Bring my fortune cookie",
        "OrderNo": 1,
        "CustomerFirstName": "John",
        "CustomerLastName": "Smith",
        "CustomerMiddleName": "Adam",
        "CustomerDOB": "1990-12-31T14:30:40.3479789+00:00",
        "CustomerEmail": "johnsa@email.com",
        "CustomerPhone": "1234567890",
        "Pharmacy": {
            "PharmacyNumber": "1234567890",
            "PharmacyName": "BestRx Pharmacy",
            "PharmacyAddress": "2625 Butterfield Rd S200",
            "PharmacyCity": "Oak Brook",
            "PharmacyState": "IL",
            "PharmacyZip": "60523",
            "PharmacyPhone": "9876543210",
            "PharmacyFax": "9876543210",
            "PharmacyEmail": "bestrxpharmacy@email.com",
            "PharmacyWebsite": "bestrxpharmacy.com"
        },
        "HIPAASignRequired": false
    },
    "IsValid": true,
    "Messages": []
}
🟢200Missing/Invalid Fields
Modified at 2025-11-19 15:35:23
Previous
Get Item Details
Next
Update POS Txn Status