Knowledge Center > Developer Documentation
ipm7Config :: ReportAddGroups
ReportAddGroups adds Groups to a Report.
ReportAddGroups(...); Parameters (c#):
- long report_id
ID of the Report object to which the Groups will be added.
- long [] group_ids
Array of Group IDs to add to the Report.
ReportAddGroups(...); Return (c#):
- boolean
ReportAddGroups 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/ReportAddGroups"
<?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>
<ReportAddGroups xmlns="http://schemas.ipmonitor.com/ipm70/">
<report_id>long</report_id>
<group_ids>
<long>long</long>
<long>long</long>
</group_ids>
</ReportAddGroups>
</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>
<ReportAddGroupsResponse xmlns="http://schemas.ipmonitor.com/ipm70/">
<ReportAddGroupsResult>boolean</ReportAddGroupsResult>
</ReportAddGroupsResponse>
</soap:Body>
</soap:Envelope>
< Back

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