GET xclient/{codename}/product/{product}/quantity
Brings the total available and used quantity of a given product to a customer in megabytes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| codename | string |
Required |
|
| product | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Lluni.Models.Common.Wip.QuantityProduct| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Used | integer |
None. |
|
| Available | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Total": 1,
"Used": 2,
"Available": -1
}
application/xml, text/xml
Sample:
<QuantityProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Wip"> <Total>1</Total> <Used>2</Used> </QuantityProduct>