GET groups

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GroupDto
NameDescriptionTypeAdditional information
Id

integer

None.

GroupNumber

integer

None.

Description

string

None.

SubGroups

Collection of SubGroupDto

None.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "GroupNumber": 2,
    "Description": "sample string 3",
    "SubGroups": [
      {
        "Id": 1,
        "SubGroupNumber": 2,
        "Description": "sample string 3",
        "GroupId": 4
      },
      {
        "Id": 1,
        "SubGroupNumber": 2,
        "Description": "sample string 3",
        "GroupId": 4
      }
    ]
  },
  {
    "Id": 1,
    "GroupNumber": 2,
    "Description": "sample string 3",
    "SubGroups": [
      {
        "Id": 1,
        "SubGroupNumber": 2,
        "Description": "sample string 3",
        "GroupId": 4
      },
      {
        "Id": 1,
        "SubGroupNumber": 2,
        "Description": "sample string 3",
        "GroupId": 4
      }
    ]
  }
]