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": "43a36bda-10cd-470c-922d-fd0862954add",
"LicenseId": "2aa76676-e1cc-4699-a23a-db2c618e7baa",
"UserGroupId": "d329858e-d04c-4597-8ec2-f04bc54a6c5a"
},
{
"Id": "43a36bda-10cd-470c-922d-fd0862954add",
"LicenseId": "2aa76676-e1cc-4699-a23a-db2c618e7baa",
"UserGroupId": "d329858e-d04c-4597-8ec2-f04bc54a6c5a"
}
]
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>43a36bda-10cd-470c-922d-fd0862954add</Id>
<LicenseId>2aa76676-e1cc-4699-a23a-db2c618e7baa</LicenseId>
<UserGroupId>d329858e-d04c-4597-8ec2-f04bc54a6c5a</UserGroupId>
</SeatDto>
<SeatDto>
<Id>43a36bda-10cd-470c-922d-fd0862954add</Id>
<LicenseId>2aa76676-e1cc-4699-a23a-db2c618e7baa</LicenseId>
<UserGroupId>d329858e-d04c-4597-8ec2-f04bc54a6c5a</UserGroupId>
</SeatDto>
</ArrayOfSeatDto>