POST api/License
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
API_Data_LicenseUsage| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Error | ErrorInfo |
None. |
|
| Data | LicenseUsage |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Error": {
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
"Data": {
"FixedLicUsed": 1,
"FixedLicTotal": 2,
"FloatLicUsed": 3,
"FloatLicTotal": 4
}
}
application/xml, text/xml
Sample:
<API_Data_LicenseUsage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
<Data>
<FixedLicTotal>2</FixedLicTotal>
<FixedLicUsed>1</FixedLicUsed>
<FloatLicTotal>4</FloatLicTotal>
<FloatLicUsed>3</FloatLicUsed>
</Data>
<Error>
<ErrorCode>1</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</Error>
<Success>true</Success>
</API_Data_LicenseUsage>