GET api/Group/{id}/IPs
取得目標群組設定合法IP範圍區間
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
目標群組Group ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
GroupIPList| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupIPs |
群組合法範圍IP清單 |
Collection of GroupIP |
None. |
Response Formats
application/json, text/json
Sample:
{
"GroupIPs": [
{
"ID": 1,
"GroupID": "sample string 2",
"IP": "sample string 3"
},
{
"ID": 1,
"GroupID": "sample string 2",
"IP": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<GroupClass.GroupIPList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End">
<GroupIPs>
<GroupClass.GroupIP>
<GroupID>sample string 2</GroupID>
<ID>1</ID>
<IP>sample string 3</IP>
</GroupClass.GroupIP>
<GroupClass.GroupIP>
<GroupID>sample string 2</GroupID>
<ID>1</ID>
<IP>sample string 3</IP>
</GroupClass.GroupIP>
</GroupIPs>
</GroupClass.GroupIPList>