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
  • 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. BestPOS API

Get Item Details

POST
https://posservice.bestrxconnect.com/getItemdetails
INFO
This endpoint is used to get the details of an item from BestPOS system.

Request

Header Params

Body Params application/json

Example
{
    "PharmacyNumber": "1234567890",
    "APIKey": "AbcXyZAbcXyZ1234519b64fd174a2dcf79712345",
    "ItemSKUInfo":
    [
        "043194900442",
        "015012691030"
    ]
}

Responses

🟢200OK
application/json
Body

Examples
{
    "Data": [
        {
            "SKU": "043194900442",
            "Description": "COSMOPOLITAN #90044",
            "ShortDescription": "COSMOPOLITAN",
            "QtyOnHand": 56,
            "TaxRate": 10,
            "RegPrice": 1.99,
            "Status": ""
        },
        {
            "SKU": "015012691030",
            "Description": "TEA & COOKIES",
            "ShortDescription": "TEA & COOKIES",
            "QtyOnHand": 0,
            "TaxRate": 10,
            "RegPrice": 5.99,
            "Status": ""
        }
    ],
    "IsValid": true,
    "Messages": []
}
🟠401Unauthorized
Modified at 2024-05-31 20:27:17
Previous
Get POS Transaction Status
Next
Overview