GET groups/{id}?include={include}

Gets the information of the group with the specified identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier of the group.

integer

Required

include

Defines the properties to be included (separated by comma).

string

None.

Body Parameters

None.

Response Information

Resource Description

GroupViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

Filterable

Settable

Description

string

Settable

Type

GroupTypeViewModel

Filterable

Settable

Chief

BaseViewModel

Includable

Users

IGenericPaginatedListViewModelOfBaseViewModel

Includable

SelfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "description": "sample string 3",
  "type": {
    "name": "sample string 1",
    "displayName": "sample string 2",
    "selfUrl": "sample string 3"
  },
  "chief": {
    "selfUrl": "sample string 1"
  },
  "users": null,
  "selfUrl": "sample string 4"
}