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": "601a4748-488e-4cf5-9824-257d9448d668",
"LicenseId": "9c9562d9-3a88-4a0c-b539-e60fd17b3b04",
"UserGroupId": "5b002576-cc74-4628-93c1-017089681160"
},
{
"Id": "601a4748-488e-4cf5-9824-257d9448d668",
"LicenseId": "9c9562d9-3a88-4a0c-b539-e60fd17b3b04",
"UserGroupId": "5b002576-cc74-4628-93c1-017089681160"
}
]
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>601a4748-488e-4cf5-9824-257d9448d668</Id>
<LicenseId>9c9562d9-3a88-4a0c-b539-e60fd17b3b04</LicenseId>
<UserGroupId>5b002576-cc74-4628-93c1-017089681160</UserGroupId>
</SeatDto>
<SeatDto>
<Id>601a4748-488e-4cf5-9824-257d9448d668</Id>
<LicenseId>9c9562d9-3a88-4a0c-b539-e60fd17b3b04</LicenseId>
<UserGroupId>5b002576-cc74-4628-93c1-017089681160</UserGroupId>
</SeatDto>
</ArrayOfSeatDto>