GET api/Groups/getByID/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GroupsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupID | integer |
None. |
|
| GroupName | string |
None. |
|
| IsActive | boolean |
None. |
|
| Note | string |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreationDate | date |
None. |
|
| ModifiedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"GroupID": 1,
"GroupName": "sample string 2",
"IsActive": true,
"Note": "sample string 4",
"IsDeleted": true,
"CreationDate": "2025-12-12T10:40:15.6237423-08:00",
"ModifiedDate": "2025-12-12T10:40:15.6237423-08:00"
}
application/xml, text/xml
Sample:
<GroupsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HR.Objects.DTOs"> <CreationDate>2025-12-12T10:40:15.6237423-08:00</CreationDate> <GroupID>1</GroupID> <GroupName>sample string 2</GroupName> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedDate>2025-12-12T10:40:15.6237423-08:00</ModifiedDate> <Note>sample string 4</Note> </GroupsDTO>