GET License/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
License| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| LicenseName | string |
None. |
|
| LicenseDescription | string |
None. |
|
| LicenseIconUrl | string |
None. |
|
| DesignRules | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"Id": "b5307bd9-5cc3-419a-8d99-ff4bc74bc502",
"LicenseName": "sample string 2",
"LicenseDescription": "sample string 3",
"LicenseIconUrl": "sample string 4",
"DesignRules": "sample string 5",
"IsActive": true
}
application/xml, text/xml
Sample:
<License xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tervis.Customyzer.Services.Web.API.Models"> <DesignRules>sample string 5</DesignRules> <Id>b5307bd9-5cc3-419a-8d99-ff4bc74bc502</Id> <IsActive>true</IsActive> <LicenseDescription>sample string 3</LicenseDescription> <LicenseIconUrl>sample string 4</LicenseIconUrl> <LicenseName>sample string 2</LicenseName> </License>