GET api/GroupApi/{Id}?LoginId={LoginId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| LoginId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Group| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| LoginId | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| TotalCount | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"LoginId": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"TotalCount": 1,
"CreatedDate": "2026-03-14T19:46:23.1434239+05:00",
"UpdateDate": "2026-03-14T19:46:23.1434239+05:00"
}
application/xml, text/xml
Sample:
<Group xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels"> <CreatedDate>2026-03-14T19:46:23.1434239+05:00</CreatedDate> <Description>sample string 3</Description> <Id>1</Id> <LoginId>1</LoginId> <Name>sample string 2</Name> <TotalCount>1</TotalCount> <UpdateDate>2026-03-14T19:46:23.1434239+05:00</UpdateDate> </Group>