Knowledge Center > Developer Documentation
ipm7Config :: GroupDelDepends
GroupDelDepends deletes Monitors from a Group's dependencies list.
GroupDelDepends(...); Parameters (c#):
- long group_id
ID of Group from which to delete dependencies.
- long [] monitor_ids
Array of IDs to delete from the dependencies list of the specified Group.
GroupDelDepends(...); Return (c#):
- boolean
GroupDelDepends will return true if the function succeeds, otherwise it will return false.
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/GroupDelDepends"
<?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>
<GroupDelDepends xmlns="http://schemas.ipmonitor.com/ipm70/">
<group_id>long</group_id>
<ids>
<long>long</long>
<long>long</long>
</ids>
</GroupDelDepends>
</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>
<GroupDelDependsResponse xmlns="http://schemas.ipmonitor.com/ipm70/">
<GroupDelDependsResult>boolean</GroupDelDependsResult>
</GroupDelDependsResponse>
</soap:Body>
</soap:Envelope>
< Back

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