GET api/GroupApi?GroupId={GroupId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Contact| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| GroupId | integer |
None. |
|
| LoginId | integer |
None. |
|
| Name | string |
None. |
|
| MobileNo | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"GroupId": 1,
"LoginId": 1,
"Name": "sample string 2",
"MobileNo": "sample string 3"
},
{
"Id": 1,
"GroupId": 1,
"LoginId": 1,
"Name": "sample string 2",
"MobileNo": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels">
<Contact>
<GroupId>1</GroupId>
<Id>1</Id>
<LoginId>1</LoginId>
<MobileNo>sample string 3</MobileNo>
<Name>sample string 2</Name>
</Contact>
<Contact>
<GroupId>1</GroupId>
<Id>1</Id>
<LoginId>1</LoginId>
<MobileNo>sample string 3</MobileNo>
<Name>sample string 2</Name>
</Contact>
</ArrayOfContact>