GET api/RoleGroup/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

role_group_dc
NameDescriptionTypeAdditional information
RoleGroupId

integer

None.

RoleGroupName

string

None.

RoleGroupDesc

string

None.

IsActive

boolean

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

LastUpdatedDateTime

date

None.

IsDeleted

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "RoleGroupId": 1,
  "RoleGroupName": "sample string 1",
  "RoleGroupDesc": "sample string 2",
  "IsActive": true,
  "CreatedBy": 1,
  "LastModifiedBy": 1,
  "LastUpdatedDateTime": "2025-07-18T16:01:28.0501568+00:00",
  "IsDeleted": true
}

application/xml, text/xml

Sample:
<role_group_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <CreatedBy>1</CreatedBy>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <LastModifiedBy>1</LastModifiedBy>
  <LastUpdatedDateTime>2025-07-18T16:01:28.0501568+00:00</LastUpdatedDateTime>
  <RoleGroupDesc>sample string 2</RoleGroupDesc>
  <RoleGroupId>1</RoleGroupId>
  <RoleGroupName>sample string 1</RoleGroupName>
</role_group_dc>