1. Aftersales 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. Aftersales Interface

Work Estimate Create

POST
/http/api/create-work-estimate
Use this endpoint to create a work estimate in SAP S/4HANA against an existing service request. The estimate is created as a work estimate of the specified process type, inheriting organisation, partner, and vehicle data from the source service request. One or more line items can be included, each representing a labour operation, product, sublet, petty cash, or consumable item. Upon successful creation, the estimate number is returned.

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/create-work-estimate' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data '{
    "N_ZAE_FM_CM_EST_CREATE_TRG": [
        {
            "IJobId": "4003028",
            "ProcessType": "ZTRE"
        }
    ],
    "N_Items": [
        {
            "NumberInt": "10",
            "NumberParent": "",
            "OrderedProd": "R4M0505465D",
            "OrderProdDesc": "",
            "Quantity": "1",
            "ProcessQtyUnit": "EA",
            "Currency": "AED",
            "Price": "100",
            "Rejection": ""
        }
    ]
}'
Response Response Example
200 - Success
{
    "EJobNo": "0000010001",
    "Return": [
        {
            "Type": "S",
            "Message": "Estimate 0000010001 created successfully"
        }
    ]
}
Previous
Get Parts Price & Stock
Next
Service Request Update⬩
Built with