getList Operation
With getList operation you can retrieve a list of all search filters currently configured in the TIBCO LogLogic Appliance.
Response
If resultCount is greater than 0 and statusCode is 2000 (successful), the response returns a list of all search filters (total number indicated by resultCount) currently configured in the TIBCO LogLogic Appliance.
If resultCount is 0 and statusCode is not 2000 (successful), an error is returned in statusMessage.
Example
To view a list of all search filters on the Appliance:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sear="SearchFilterService"> <soapenv:Header/> <soapenv:Body> <sear:getList> <!--Optional:--> <sear:authToken>admin/admin123</sear:authToken> </sear:getList> </soapenv:Body> </soapenv:Envelope>
SOAP response for getList Operation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> <soapenv:Body> <ns:getListResponse xmlns:ns="SearchFilterService"> <ns:return xsi:type="ax227:SearchFilterResponse" xmlns:ax227="http://searchfilter.services.logapp.loglogic.com/xsd" xmlns:ax228="http://services.logapp.loglogic.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ax228:authToken xsi:nil="true"/> <ax228:resultCount>1</ax228:resultCount> <ax228:statusCode>2000</ax228:statusCode> <ax228:statusMessage>Successful</ax228:statusMessage> <ax228:summaryOnly>true</ax228:summaryOnly> <ax227:resultSet xsi:type="ax227:SearchFilterDetail"> <ax227:expression1>MySearchFilter</ax227:expression1> <ax227:expression2 xsi:nil="true"/> <ax227:expressionOperator xsi:nil="true"/> <ax227:expressionType>Regular Expression</ax227:expressionType> <ax227:filterDescription>MySearchFilter</ax227:filterDescription> <ax227:filterName>MySearchFilter</ax227:filterName> <ax227:sharedWithOthers>Read Only</ax227:sharedWithOthers> </ax227:resultSet> </ns:return> </ns:getListResponse> </soapenv:Body> </soapenv:Envelope>
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.