1. Website Interface
  • autoX API Reference
    • Introduction
  • Marketing Interface
    • Overview
    • Lead Create
      POST
    • Appointment Create
      POST
    • Opportunity Create
      POST
    • Transaction Push⬩
      POST
    • Transaction Update⬩
      POST
  • Website Interface
    • Overview
    • Get Showroom List
      GET
    • Get Make Data
      GET
    • Get Model Data
      GET
    • Get Sales Org Data
      GET
    • Get Equipment Stock Data
      GET
    • Get Characteristics Data of Equipment
      GET
    • Get Material Addons Data
      GET
    • Get Bill Of Material Data
      GET
    • Get Equipment Price
      POST
    • Vehicle Enquiry Create
      POST
  • Payment Gateway Interface
    • Overview
    • Payment Link Create⬩
      POST
    • Payment Link Cancel⬩
      POST
    • Payment Notification
      POST
    • Payment Status Check⬩
      POST
  • Aftersales Interface
    • Overview
    • Check Workload Capacity
      POST
    • Service Request Push⬩
      POST
    • Get Parts Price & Stock
      POST
    • Work Estimate Create
      POST
    • Service Request Update⬩
      POST
  • Call Center Integration
    • Overview
    • Data Fetch
    • Transaction Sync
    • Queue Upload⬩
  • Survey Interface
    • Overview
    • Update Survey Score
  • OEM Interface
    • Overview
    • Accounts Data
    • Parts Sales Data
    • Parts Stock Data
    • Customer Data
    • Labour Sales Data
    • Vehicle Data
    • Vehicle Sales Data
    • Service History Data
    • Open Repair Orders Data
    • Open Repair Orders Customer Data
    • Workshop Transactions Data
    • Workshop Transactions Customer Data
    • Future Booking Data
  1. Website Interface

Get Equipment Price

POST
/http/api/get-equipment-price
Use this endpoint to simulate a sales order and retrieve pricing details for one or more vehicle materials. Returns gross price, discount, net price, tax, and currency for each item. Pricing is determined based on the sales organisation, distribution channel, division, sales office, sales group, document type, and optionally the customer number.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/http/api/get-equipment-price' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data '{
    "NavPriceMain": [
        {
            "Customer": "10050",
            "DistrChan": "10",
            "Division": "10",
            "DocType": "ZUSQ",
            "SalesGrp": "003",
            "SalesOff": "U311",
            "SalesOrg": "3000"
        }
    ],
    "NavPriceItemsIn": [
        {
            "Posnr": "000010",
            "HighItem": "",
            "Material": "XLIV550CXUV"
        }
    ]
}'
Response Response Example
{
    "results": [
        {
            "Posnr": "000010",
            "Material": "XLIV550CXUV",
            "MaterialText": "McLaren 550C",
            "GrossPrice": 850000,
            "Discount": 0,
            "NetPrice": 850000,
            "Tax": 42500,
            "Currency": "AED",
            "TaxPercentage": 5
        }
    ]
}
Previous
Get Bill Of Material Data
Next
Vehicle Enquiry Create
Built with