GET api/licenses/{id}/seatGroups
Returns seats assigned to license
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
unique identifier of License |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
LicenseSeatGroupsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| userSeatGroupIds | Collection of globally unique identifier |
None. |
|
| userGroupSeatGroupIds | Collection of globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"userSeatGroupIds": [
"3391c5f2-8c56-484d-8564-8533e419ec03",
"34602dea-8478-4681-956e-a636b639b0bc"
],
"userGroupSeatGroupIds": [
"0c8d86bc-ce29-43b5-9b59-fe356314d18d",
"b013218c-78cb-4b8f-a9c0-cd14cd486eec"
]
}
application/xml, text/xml
Sample:
<LicenseSeatGroupsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Dtos">
<userGroupSeatGroupIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>0c8d86bc-ce29-43b5-9b59-fe356314d18d</d2p1:guid>
<d2p1:guid>b013218c-78cb-4b8f-a9c0-cd14cd486eec</d2p1:guid>
</userGroupSeatGroupIds>
<userSeatGroupIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>3391c5f2-8c56-484d-8564-8533e419ec03</d2p1:guid>
<d2p1:guid>34602dea-8478-4681-956e-a636b639b0bc</d2p1:guid>
</userSeatGroupIds>
</LicenseSeatGroupsDto>