This API is meant to obtain all customers base details.

Request

The type attribute has to be set to listall.

The product attribute has to be set to customer.

<envelope>
    <header>
        <actor>test</actor>
        <user>test</user>
        <password>test</password>
        <version>1.0.0</version>
        <timestamp>202307311450</timestamp>
    </header>
    <query type="listall" product="customer">
    </query>
</envelope>
Response
<?xml version="1.0" encoding="UTF-8"?> 
<envelope>
    <header>
        <version>1.0.0</version>
        <timestamp>1709036867</timestamp>
    </header>
    <response type="listall" product="customer">
        <customers>
            <customer>
                <code value="demo_client"/>
                <name value="DEMO CLIENT"/>
                <active value="yes"/>
            </customer>
            <customer>
                <code value="demo_client2"/>
                <name value="DEMO CLIENT"/>
                <active value="no"/>
            </customer>
        </customers>
    </response>
</envelope>