pixi Developer & Integration Documentation

pixiWebLogin

Description

Use this function to determine whether the given combination of email and ZIP-code belong to a customer, registered in pixi*. Can, for example, be used to program authentication procedures for web applications.


Request Parameters

# Name Type Required Example Description
1 Email string 0 Sample text [optional] Email address
2 ZIP string 0 Sample text [optional] ZIP code

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:pixiWebLogin>
         <dem:Email>Sample text</dem:Email>
         <dem:ZIP>Sample text</dem:ZIP>
      </dem:pixiWebLogin>
   </soapenv:Body>
</soapenv:Envelope>

Response


Body 1:

# Name Type Description
0 return integer If the user is found, his/her User ID is returned. Otherwise, 0 is returned.

Additional Notes