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
  • 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. 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
Overview