POST api/Stock
The entry point for getting products stock information
Request Information
URI Parameters
None.
Body Parameters
StockRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AuthToken |
Your unique partner identification token |
globally unique identifier | |
| ProductToken |
The unique token for the product you want to get stock information for |
globally unique identifier |
Request Formats
application/json, text/json
Sample:
{
"authToken": "e5a6d6cc-aa45-4842-a0f9-3d7be7ff3ac8",
"productToken": "ec117582-e182-4d6d-bfb9-8537d39b4bc5"
}
application/xml, text/xml
Sample:
<StockController.StockRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HuurayV3.Areas.Public.Controllers"> <AuthToken>e5a6d6cc-aa45-4842-a0f9-3d7be7ff3ac8</AuthToken> <ProductToken>ec117582-e182-4d6d-bfb9-8537d39b4bc5</ProductToken> </StockController.StockRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Object containing stock information for the specified product
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.