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": "43d6a1bd-658c-47e9-b845-8d4ad179db9e",
"LicenseId": "9f6a1b7c-5063-464e-a5ad-f8dab732b388",
"UserGroupId": "e2ae80b3-19f7-4b42-8380-b5579cde68bc"
},
{
"Id": "43d6a1bd-658c-47e9-b845-8d4ad179db9e",
"LicenseId": "9f6a1b7c-5063-464e-a5ad-f8dab732b388",
"UserGroupId": "e2ae80b3-19f7-4b42-8380-b5579cde68bc"
}
]
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>43d6a1bd-658c-47e9-b845-8d4ad179db9e</Id>
<LicenseId>9f6a1b7c-5063-464e-a5ad-f8dab732b388</LicenseId>
<UserGroupId>e2ae80b3-19f7-4b42-8380-b5579cde68bc</UserGroupId>
</SeatDto>
<SeatDto>
<Id>43d6a1bd-658c-47e9-b845-8d4ad179db9e</Id>
<LicenseId>9f6a1b7c-5063-464e-a5ad-f8dab732b388</LicenseId>
<UserGroupId>e2ae80b3-19f7-4b42-8380-b5579cde68bc</UserGroupId>
</SeatDto>
</ArrayOfSeatDto>