GET api/usergroups/{id}

Returns user group

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

UserGroupId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

UserGroupDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Type

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "782dbfc5-0f01-4ea5-905a-b93473e98442",
  "Name": "sample string 2",
  "Type": "sample string 3"
}

application/xml, text/xml

Sample:
<UserGroupDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Api.Web.Models">
  <Id>782dbfc5-0f01-4ea5-905a-b93473e98442</Id>
  <Name>sample string 2</Name>
  <Type>sample string 3</Type>
</UserGroupDto>