1. Home
  2. Rest API

Rest API

Authorization

  • Basic Auth
    • Uses admin portal username and password.
  • API Key
    • Use as a parameter _key with the API key as the value.
    • Base 64 encode the API key and use it in the header.

URL

curl –location –request PUT ‘https://yourdomain.com
:444/uapi/customer/billing/customCredit?customerId=1113904&description=Test%20Charge&amount=10.00&date=03-12-2025&classification=8&taxOverride=null&taxTypes=null’ \
–header ‘Authorization: Basic cGgwZHQ3bnJsYXRsbGRvZ2d1OWd2d2oybnZtY2p1NXY’ \
–header ‘Cookie: PHPSESSID=55de10b80dd6f31a48d4c5a72e0acbd2’

  • https://yourdomain.com:444/uapi/{API Call}
  • Example API putCustomCredit
    • Type: PUT
    • URL: https://yourdomain.com:444/uapi/customCredit
    • Params:
Updated on March 13, 2025

Was this article helpful?