pixi Developer & Integration Documentation

pixiMergeCustomers

Description

API Call to merge two customers into one and delete the duplicate.


Request Parameters

# Name Type Required Example Description
1 CustRefTo integer 1 123 Merge to this customer Id.
2 CustRefFrom integer 1 123 All documents from this customer will be merged to @CustRefTo and then this customer will be deleted.

Request body

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
   <soapenv:Header/>
   <soapenv:Body>
      <dem:pixiMergeCustomers>
         <dem:CustRefTo>123</dem:CustRefTo>
         <dem:CustRefFrom>123</dem:CustRefFrom>
      </dem:pixiMergeCustomers>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1: Return status

# Name Type Description
1 ReturnCode string Status code
2 ErrorMsg string Status description (error/success) message

Additional Notes