The information on this page refers to SOAP version 4. This function did not exist in previous SOAP versions.

The GetLicenseOrderLogList function is used to get a license order log list.

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

Return values

The response is of the type Soap_Response_List_LicenseOrderLog, with result_array of type ArrayOfSoap_LicenseOrderLog.

Example request

<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="https://license.x-formation.com/soap/type/vendor/version/4">
    <soapenv:Header/>
    <soapenv:Body>
        <ns:GetLicenseOrderLogList soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
            <token xsi:type="xsd:string">ef817a73f8d19df33f6a84ae702c6da0d9edd309</token>
            <activationKey xsi:type="xsd:string">NZSQG-2067B-LTM9R-1784I</activationKey>
            <offset xsi:type="xsd:int">0</offset>
        </ns:GetLicenseOrderLogList>
    </soapenv:Body>
</soapenv:Envelope>

Example response

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
                   xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:ns1="https://license.x-formation.com/soap/type/vendor/version/4"
                   xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
        <ns1:GetLicenseOrderLogListResponse>
            <return xsi:type="ns1:Soap_Response_List_LicenseOrderLog">
                <result_array SOAP-ENC:arrayType="ns1:Soap_LicenseOrderLog[2]"
                              xsi:type="ns1:ArrayOfSoap_LicenseOrderLog">
                    <item xsi:type="ns1:Soap_LicenseOrderLog">
                        <time xsi:type="xsd:string">2019-02-12 09:19:53</time>
                        <action xsi:type="xsd:string">Added</action>
                        <user xsi:type="xsd:string">Demo Account</user>
                        <hostname xsi:type="xsd:string">localhost</hostname>
                        <ip_address xsi:type="xsd:string">127.0.0.1</ip_address>
                        <hostids xsi:nil="true"/>
                    </item>
                    <item xsi:type="ns1:Soap_LicenseOrderLog">
                        <time xsi:type="xsd:string">2019-02-13 08:32:47</time>
                        <action xsi:type="xsd:string">Edited</action>
                        <user xsi:type="xsd:string">Demo Account</user>
                        <hostname xsi:type="xsd:string">localhost</hostname>
                        <ip_address xsi:type="xsd:string">127.0.0.1</ip_address>
                        <hostids xsi:nil="true"/>
                    </item>
                </result_array>
                <result_code xsi:type="xsd:int">0</result_code>
                <result_string xsi:nil="true"/>
            </return>
        </ns1:GetLicenseOrderLogListResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

  • No labels