Operation getMpin returns mpin (machine code) of workstation.
Example SOAP request:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns="ns1">
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<ns:getMpin>
<billonUserPassword>haslo123</billonUserPassword>
</ns:getMpin>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Example SOAP response:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns="ns1">
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<ns:getMpinResponse>
<return>
<mpin>JHV72</mpin>
<requestStatus>SUCCESS</requestStatus>
<requestStatusDescription>Request succeeded.</requestStatusDescription>
</return>
</ns:getMpinResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Request parameters:
Parameter | Type | Description | Required? |
---|
billonUserPassword | string | user password | Yes |
Response parameters:
Name | Type | Description |
---|
mpin | string | mpin code (machine pin) |
requestStatus | string | result of request |
requestStatusDescription | string | status description |
Was this article helpful to you?
Yes No