1. OEM Interface
  • API Reference
    • Introduction
  • Website Integration
    • Leads Creation
      POST
  • Call Center Integration
    • Data Fetch
      GET
    • Transaction Sync
      POST
  • Parts B2B Portal
    • Stock List
      GET
  • OEM Interface
    • Accounts Data
      GET
    • Parts Sales Data
      GET
    • Parts Stock Data
      GET
    • Customer Data
      GET
    • Labour Sales Data
      GET
    • Vehicle Data
      GET
    • Vehicle Sales Data
      GET
    • Service History Data
      GET
    • Open Repair Orders Data
      GET
    • Open Repair Orders Customer Data
      GET
    • Workshop Transactions Data
      GET
    • Workshop Transactions Customer Data
      GET
    • Future Booking Data
      GET
  1. OEM Interface

Parts Stock Data

GET
/sap/opu/odata/sap/ZAE_DATA_EXT_SRV/ZAE_R_PARTS_STOCK
Use this endpoint to retrieve parts stock and inventory data for a retailer from SAP S/4HANA. Returns one Entry per unique part number with available, on-hand, on-order, and delivered quantities, along with the moving average cost and last purchase date.

Request

Query Params

Header Params

Responses

🟢200
application/json
OK
Body

🟠400
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/sap/opu/odata/sap/ZAE_DATA_EXT_SRV/ZAE_R_PARTS_STOCK?RetailerCode&AccountNumber&CompanyCode&MaterialGroup&Plant&DeliveryType' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "results": [
        {
            "Retailer": "J0001",
            "PartNo": "PART-00001-A",
            "Brand": "BENTLEY",
            "BrandDescription": "Bentley",
            "AvailableQty": 5.0,
            "DateLastPurchased": "20241215",
            "MovingAverageCost": 202.27,
            "OnOrderQty": 10.0,
            "OnHandQty": 5.0,
            "DeliveredQty": 3.0
        }
    ]
}
Previous
Parts Sales Data
Next
Customer Data
Built with