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

Submit Charge Account Payment

POST
https://dataservice.bestrxconnect.com/patient/submitchargeaccountpayment
INFO
This endpoint is used to submit the charge account payment for the patient.
NOTE
This endpoint is enabled exclusively to certain clients. Please contact us for more details.

Request

Body Params application/json

Example
{
    "pharmacy": {
        "PharmacyNumber": "1234567890"
    },
    "patient": {
        "unique_patient_id": 123456,
        "dob": "1917-05-29"
    },
    "txnDetails": {
        "txnDate": "2024-04-30",
        "txnAmount": 60,
        "remarks": "TEST REMARK"
    }
}

Responses

🟢200OK
application/json
Body

Example
{
    "Data": null,
    "IsValid": true,
    "Messages": [
        {
            "MessageCode": "CHASUC",
            "Message": "Charge Account Payment Done Successfully.",
            "MessageType": 3
        }
    ]
}
🟠400Bad Request
Modified at 2024-06-06 17:38:05
Previous
Get Patient
Next
Update Patient Remark