GET groups/{projectId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

integer

Required

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
      }
    ]
  }
]