Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 71 Next »

3.32.0

The Stock Level Recommendation export API returns the results of a stock level recommendation review being completed by a technician on the identified storage locationNo updates are sent during the process of reviewing the stock level recommendation. Only the final stock level recommendation transaction is created, possibly with adjusted recommended quantity for each item. Once the review is complete it can no longer be modified by the user.

Resource URL Summary

Return a collection of updates made to Stock Level Recommendation Objects

GET /seiapi/v3/export/StockLevelRecommendation?rowver=${rowverValue}&limit=${limitValue}

API Specific Parameters

ParameterDescription
${rowverValue}Specifies the starting point where objects should be returned from. The first object returned will be the next object after the specified rowver.
${limitValue}Specifies the maximum number of objects to be returned.

HTTP Headers

This API uses the default ServiceMobility HTTP Headers.

 


API Specifics

Return a collection of updates made to Stock Level Recommendation Objects

This REST API will return a collection of updates made to Stock Level Recommendation Objects.

URL

GET /seiapi/v3/export/PhysicalInventoryRequest?rowver=${rowverValue}&limit=${limitValue}

HTTP Request Body

This request does not require a request body. 

HTTP Response Body

On success, an HTTP response code of 200 will be returned, and the response body will contain a collection of zero of more Stock Level Recommendation Objects.

JSON Format
{
    "rowver" : "",
    "rows" : [
        {
     		"rowver" : "",
			"StockLevelRecommendation" : {
               // Stock Level Recommendation JSON object properties
           }
        }
    ]
}

Otherwise, on error, the API returns the standard response object.

  • No labels