Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

The FindProductByName function is used to to find a license order by activation key, which one or more products by product name.

The product name can be a partial entry (for example, to find "MyApplicationA" and "MyApplicationB" you could enter only "MyApplication") and is case-insensitive (for example, "myapplication" and "MYAPPLICATION" are interpreted as the same entries).

This function uses an offset and requires a LAC administrator login token, which is obtained using the Login function. 

...

The response is of the type ArrayOfSoap Soap_Response_List_Product, which is an with result_array of Soap_Response_List_Product objectstype ArrayOfSoap_Product.

Example request

No Format
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://www.lac0.pl:8080/soap/type/vendor/version/1">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:FindProductByName soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
         <token xsi:type="xsd:string">fa2a900090a1db29b769725418c1a2fe6b57733f</token>
         <name xsi:type="xsd:string">Product</name>
         <offset xsi:type="xsd:int">0</offset>
      </ns:FindProductByName>
   </soapenv:Body>
</soapenv:Envelope>

...