POST api/License/GetCompanyLicenseUsage
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CompanyLicenseUsageViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LicenseTypeId | integer |
None. |
|
| Name | string |
None. |
|
| UsageCount | integer |
None. |
|
| Quota | integer |
None. |
|
| Quantity | integer |
None. |
|
| CountString | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"licenseTypeId": 1,
"name": "sample string 2",
"usageCount": 3,
"quota": 4,
"quantity": 5,
"countString": "sample string 6"
},
{
"licenseTypeId": 1,
"name": "sample string 2",
"usageCount": 3,
"quota": 4,
"quantity": 5,
"countString": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfCompanyLicenseUsageViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
<CompanyLicenseUsageViewModel>
<CountString>sample string 6</CountString>
<LicenseTypeId>1</LicenseTypeId>
<Name>sample string 2</Name>
<Quantity>5</Quantity>
<Quota>4</Quota>
<UsageCount>3</UsageCount>
</CompanyLicenseUsageViewModel>
<CompanyLicenseUsageViewModel>
<CountString>sample string 6</CountString>
<LicenseTypeId>1</LicenseTypeId>
<Name>sample string 2</Name>
<Quantity>5</Quantity>
<Quota>4</Quota>
<UsageCount>3</UsageCount>
</CompanyLicenseUsageViewModel>
</ArrayOfCompanyLicenseUsageViewModel>