GET api/seats?licenseId={licenseId}
Returns seats for license
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| licenseId |
LicenseId |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SeatDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| LicenseId | globally unique identifier |
None. |
|
| UserGroupId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "4b80a21d-bfde-4b1f-b4c6-1b49958b934d",
"LicenseId": "02f2f5e4-5f58-4ec3-9e8d-e570cc623043",
"UserGroupId": "0ada1c35-873d-4319-950c-f869d4a11d49"
},
{
"Id": "4b80a21d-bfde-4b1f-b4c6-1b49958b934d",
"LicenseId": "02f2f5e4-5f58-4ec3-9e8d-e570cc623043",
"UserGroupId": "0ada1c35-873d-4319-950c-f869d4a11d49"
}
]
application/xml, text/xml
Sample:
<ArrayOfSeatDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Dtos">
<SeatDto>
<Id>4b80a21d-bfde-4b1f-b4c6-1b49958b934d</Id>
<LicenseId>02f2f5e4-5f58-4ec3-9e8d-e570cc623043</LicenseId>
<UserGroupId>0ada1c35-873d-4319-950c-f869d4a11d49</UserGroupId>
</SeatDto>
<SeatDto>
<Id>4b80a21d-bfde-4b1f-b4c6-1b49958b934d</Id>
<LicenseId>02f2f5e4-5f58-4ec3-9e8d-e570cc623043</LicenseId>
<UserGroupId>0ada1c35-873d-4319-950c-f869d4a11d49</UserGroupId>
</SeatDto>
</ArrayOfSeatDto>