SOAP API - lookupQueryByTag

The table summarizes the SOAP API - lookupQueryByTag.

Request Uses the lookupQueryByTagRequest element (from the EventCollectorQueryService schema)
Parameter notes tag: Name that was given to the query when it was registered with the registerQuery operation.
Response Returns a lookupQueryByTagResponse element (from the EventCollectorQueryService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.ec.n2.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <api:lookupQueryByTagRequest>
         <tag>EventTag123</tag>
      </api:lookupQueryByTagRequest>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <lookupQueryByTagResponse xmlns="http://api.ec.n2.tibco.com">
         <QueryInfo xmlns="http://base.api.ec.n2.tibco.com">
            <query xmlns="">
               <correlate>false</correlate>
               <filter>((messageCategory='WORK_ITEM') AND (parentObjectId='pvm:0a121'))</filter>
               <requireAllAttributes>true</requireAllAttributes>
            </query>
            <identifier xmlns="">
               <guid>2</guid>
               <tag>EventTag123</tag>
            </identifier>
         </QueryInfo>
      </lookupQueryByTagResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>