GET api/admin/v1/groups/{groupId}

Details of the Group by groupId

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupId

ID of the Group

integer

Required

Body Parameters

None

Response Information

Resource Description

Group details

GroupDto
NameDescriptionTypeAdditional information
Code

The short code of the element

string

None

Description

The description of the element

string

None

IsActive

True if the element is active, false otherwise

boolean

None

Id

Unique ID

integer

None

Response Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "Description": "sample string 2",
  "IsActive": true,
  "Id": 4
}

application/xml, text/xml

Sample:
<GroupDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oryx.Web.Api.Models">
  <Id>4</Id>
  <Code>sample string 1</Code>
  <Description>sample string 2</Description>
  <IsActive>true</IsActive>
</GroupDto>