GET api/license/category
Get all categories for account./>
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of categories.
Collection of GetLicenseCategoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| IsDefault | boolean |
None. |
|
| LicenseCategoryType | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "a98600ac-e93a-4129-af2e-b3a9273558bf",
"Name": "sample string 2",
"IsDefault": true,
"LicenseCategoryType": 4
},
{
"Id": "a98600ac-e93a-4129-af2e-b3a9273558bf",
"Name": "sample string 2",
"IsDefault": true,
"LicenseCategoryType": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfGetLicenseCategoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses">
<GetLicenseCategoryResponse>
<Id>a98600ac-e93a-4129-af2e-b3a9273558bf</Id>
<IsDefault>true</IsDefault>
<LicenseCategoryType>4</LicenseCategoryType>
<Name>sample string 2</Name>
</GetLicenseCategoryResponse>
<GetLicenseCategoryResponse>
<Id>a98600ac-e93a-4129-af2e-b3a9273558bf</Id>
<IsDefault>true</IsDefault>
<LicenseCategoryType>4</LicenseCategoryType>
<Name>sample string 2</Name>
</GetLicenseCategoryResponse>
</ArrayOfGetLicenseCategoryResponse>