Knowledge Center > Developer Documentation
ipm7Config :: GroupListMembers
GroupListMembers returns an array of IDs of all the Monitors that are members of a Group.
GroupListMembers(...); Parameters (c#):
- long group_id
The ID of the requested Group.
GroupListMembers(...); Return (c#):
- long []
Array of Monitor IDs that are members of the requested Group.
SOAP / HTTP Details (Invoke):
POST /soap/config.asmx HTTP/1.1
Host: youripm7addr
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://schemas.ipmonitor.com/ipm70/GroupListMembers"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GroupListMembers xmlns="http://schemas.ipmonitor.com/ipm70/">
<group_id>long</group_id>
</GroupListMembers>
</soap:Body>
</soap:Envelope>
SOAP / HTTP Details (Return):
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GroupListMembersResponse xmlns="http://schemas.ipmonitor.com/ipm70/">
<GroupListMembersResult>
<long>long</long>
<long>long</long>
</GroupListMembersResult>
</GroupListMembersResponse>
</soap:Body>
</soap:Envelope>
< Back

Last Updated: March 30, 2004 | What did you think of this topic?