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": "58261030-11bb-4090-8934-e38bc92964f0",
"LicenseId": "a85eb369-c9fb-4923-8eb8-07cb9f510f4e",
"UserGroupId": "b41854ab-cffb-48ec-83d5-6dfb3ec0f14a"
},
{
"Id": "58261030-11bb-4090-8934-e38bc92964f0",
"LicenseId": "a85eb369-c9fb-4923-8eb8-07cb9f510f4e",
"UserGroupId": "b41854ab-cffb-48ec-83d5-6dfb3ec0f14a"
}
]
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>58261030-11bb-4090-8934-e38bc92964f0</Id>
<LicenseId>a85eb369-c9fb-4923-8eb8-07cb9f510f4e</LicenseId>
<UserGroupId>b41854ab-cffb-48ec-83d5-6dfb3ec0f14a</UserGroupId>
</SeatDto>
<SeatDto>
<Id>58261030-11bb-4090-8934-e38bc92964f0</Id>
<LicenseId>a85eb369-c9fb-4923-8eb8-07cb9f510f4e</LicenseId>
<UserGroupId>b41854ab-cffb-48ec-83d5-6dfb3ec0f14a</UserGroupId>
</SeatDto>
</ArrayOfSeatDto>