Skip to content

Update Expected Sales

Update product analytics metadata including expected sales information.

HTTP Method POST

Path /inbound/updateProductExpectedSales

The request body should contain a collection of ProductAnalyticsMeta objects.

Returns an InboundSimpleResponse object with processing results.

Terminal window
curl -X POST \
https://api.wms.example.com/inbound/updateProductExpectedSales \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"productId": "PROD-ABC123",
"expectedSales": 500,
"period": "MONTHLY",
"forecastDate": "2024-02-01T00:00:00Z"
}
]'