GET License/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

License
NameDescriptionTypeAdditional 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": "10862c2f-8875-4400-a629-8217e12b0faf",
  "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>10862c2f-8875-4400-a629-8217e12b0faf</Id>
  <IsActive>true</IsActive>
  <LicenseDescription>sample string 3</LicenseDescription>
  <LicenseIconUrl>sample string 4</LicenseIconUrl>
  <LicenseName>sample string 2</LicenseName>
</License>