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

Vehicle Enquiry Create

POST
/http/api/vehicle-enquiry-create
Use this endpoint to submit a customer vehicle enquiry from a dealer website or external application. Depending on the rule configured in autoX for the make and model, the endpoint supports the following use cases:
1.
Request Callback – Creates a CRM opportunity only. A sales agent contacts the customer to follow up.
2.
Book a Test Drive – Creates a CRM opportunity and a sales quotation.
3.
Get Quotation – Creates a CRM opportunity and a sales quotation, and generates a VIN reservation fee document.
4.
Book Vehicle – Creates a CRM opportunity, a sales quotation, a VIN reservation fee document, and optionally applies financing details.
If an open opportunity already exists for the customer in the same sales area and make/model combination, the existing opportunity is updated rather than creating a duplicate. The endpoint also validates customer ID documentation where configured.

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
curl --location '/http/api/vehicle-enquiry-create' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data '{
    "Customer": "0010000001",
    "Rule": "1",
    "MessageTitle": "Request Received",
    "MessageText": "Our team will contact you shortly.",
    "ZaeSCoppItem": [
        {
            "Posnr": "000010",
            "Model": "540C",
            "Color": "X37",
            "Year": "2025",
            "Edition": ""
        }
    ],
    "ZaeSCoppMatqty": [
        {
            "Posnr": "000010",
            "Uepos": "000000",
            "Matnr": "MC540C03",
            "Qty": "1"
        }
    ]
}'
Response Response Example
200 - Opportunity Only
{
    "Opportunity": "0000010001",
    "Quotation": "",
    "Return": [
        {
            "Type": "S",
            "Message": "status: Success; transaction_no: 0000010001"
        }
    ]
}
Previous
Get Equipment Price
Next
Overview
Built with