<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <DecodePayment xmlns="http://sherpa.sherpaan.nl/"> <webUserLogin>guid</webUserLogin> <code>string</code> </DecodePayment> </soap:Body> </soap:Envelope> |
Field Name | Description |
webUserLogin | Gebruiker/Login welke toegang heeft tot deze webmethod. |
code | De paymenthash welke in de emailtemplate van Sherpa wordt gegenereerd. |
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <DecodePaymentResponse xmlns="http://sherpa.sherpaan.nl/"> <DecodePaymentResult> <ResponseTime>int</ResponseTime> <ResponseValue> <IsElectronicPayment>boolean</IsElectronicPayment> <OrderNumber>string</OrderNumber> <Amount>decimal</Amount> </ResponseValue> </DecodePaymentResult> </DecodePaymentResponse> </soap:Body> </soap:Envelope> |
Field Name | Description |
IsElectornicPayment | Als de order in Sherpa een betaalmethode heeft welke een electronische betaalwijze is komt hier True op terug. Op dat moment kan er ook een “AddElectronicPayment” uitgevoerd worden op de betreffende order. |
OrderNumber | Het Sherpa ordernummer |
Amount | Bedrag dat betaald moet worden |
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <AddElectronicPayment xmlns="http://sherpa.sherpaan.nl/"> <webUserLogin>guid</webUserLogin> <ordernumber>string</ordernumber> <amount>decimal</amount> <reference>string</reference> </AddElectronicPayment> </soap:Body> </soap:Envelope> |
Field Name | Description |
webUserLogin | Gebruiker/Login welke toegang heeft tot deze webmethod. |
orderNumber | Het Sherpa ordernummer |
amount | Bedrag dat elektronisch is afgerekend |
reference | Referentie van de betaling |
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <EncodePayment xmlns="http://sherpa.sherpaan.nl/"> <webUserLogin>guid</webUserLogin> <isElectronicPayment>boolean</isElectronicPayment> <ordernumber>string</ordernumber> <amount>decimal</amount> </EncodePayment> </soap:Body> </soap:Envelope> |
Field Name | Description |
webUserLogin | Gebruiker/Login welke toegang heeft tot deze webmethod |
isElectronicPayment | True in het geval van een elektronische betaling, anders False. |
amount | Het Sherpa ordernummer |
Bedrag dat betaald moet worden |
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <EncodePaymentResponse xmlns="http://sherpa.sherpaan.nl/"> <EncodePaymentResult> <ResponseTime>int</ResponseTime> <ResponseValue>string</ResponseValue> </EncodePaymentResult> </EncodePaymentResponse> </soap:Body> </soap:Envelope> |
Field Name | Description |
ResponseValue | De webmethod geeft de payment hash terug |