GET api/Groups/getAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of GroupsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupID | integer |
None. |
|
| GroupNameEnglish | string |
None. |
|
| GroupNameArabic | 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,
"GroupNameEnglish": "sample string 2",
"GroupNameArabic": "sample string 3",
"IsActive": true,
"Note": "sample string 5",
"IsDeleted": true,
"CreationDate": "2025-10-27T18:18:35.1362316-04:00",
"ModifiedDate": "2025-10-27T18:18:35.1362316-04:00"
},
{
"GroupID": 1,
"GroupNameEnglish": "sample string 2",
"GroupNameArabic": "sample string 3",
"IsActive": true,
"Note": "sample string 5",
"IsDeleted": true,
"CreationDate": "2025-10-27T18:18:35.1362316-04:00",
"ModifiedDate": "2025-10-27T18:18:35.1362316-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfGroupsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HR.Objects.DTOs">
<GroupsDTO>
<CreationDate>2025-10-27T18:18:35.1362316-04:00</CreationDate>
<GroupID>1</GroupID>
<GroupNameArabic>sample string 3</GroupNameArabic>
<GroupNameEnglish>sample string 2</GroupNameEnglish>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<ModifiedDate>2025-10-27T18:18:35.1362316-04:00</ModifiedDate>
<Note>sample string 5</Note>
</GroupsDTO>
<GroupsDTO>
<CreationDate>2025-10-27T18:18:35.1362316-04:00</CreationDate>
<GroupID>1</GroupID>
<GroupNameArabic>sample string 3</GroupNameArabic>
<GroupNameEnglish>sample string 2</GroupNameEnglish>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<ModifiedDate>2025-10-27T18:18:35.1362316-04:00</ModifiedDate>
<Note>sample string 5</Note>
</GroupsDTO>
</ArrayOfGroupsDTO>