Table of content

  1. eProducts API
  2. Function requests used for POS client integration
  3. Mandatory Methods
  4. Optional Methods
  5. Response Codes

1. eProducts API

This is a description of our SOAP-WS-API for merchants, our test WSDL is available at:
http://extdev.kontantkort.nu/extclientproxy/client?wsdl

2. Function requests used for POS client integration

Below you will find methods used in POS and eProducts integration. This is part of eProducts API. Methods not listed belowe shall not be implemented.

Up

3. Mandatory Methods

These methods have to be implemented in order to pass our certification get production access.

Up

getProductsList

Returns list of available product.

Up

getProductList request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
    <soapenv:Header />
    <soapenv:Body>
        <ext:getProductList>
            <context>
                <channel>web</channel>
                <clientId>test_id</clientId>
                <password>abc123</password>
                <clientRequestTimeout>0</clientRequestTimeout>
                <clientUserId>9900</clientUserId>
            </context>
        </ext:getProductList>
    </soapenv:Body>
</soapenv:Envelope>

Up

getProductList response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
ersReference String 2014071814275177901000128 Trackable number of the voucher in ERS system of the request. To be used with buyReservedVoucher and cancelVoucherReservation requests
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
name String GT Mobile Name of a supplier
currency String SEK Currency code
value decimal 70 Product price
ean String 7330596005932 Product ean
sku String 3453433 Product sku
name String Some name Product name
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:getProductListResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>Success</errorDescription>
            <ersReference>2014111710075839201000024</ersReference>
            <resultCode>0</resultCode>
            <suppliers>
               <name>Test Supplier</name>
               <products>
                  <customerPrice>
                     <currency>SEK</currency>
                     <value>70</value>
                  </customerPrice>
                  <ean>7330596005932</ean>
                  <name>Test Product Name</name>
                  <sku>10181</sku>
               </products>
            </suppliers>
         </return>
      </ns2:getProductListResponse>
   </soap:Body>
</soap:Envelope>

Up

reserveVoucher

Used for purchasing a voucher in a two-phase commit manner. ERS will only keep the reservation for a limited time (configurable on the ERS, typically a few minutes) after which a buyReservedVoucher might fail.

Up

reserveVoucher request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
clientComment no String Some comment Can be used to add additional information from the client system
clientReference no String 823429834723948 Reference of the transaction in clients system
clientTag no String POS007 Tracking tag from the clients system (i.e: cash register ID)
productId yes String ean:7332023036197 The ean or sku number of the voucher that is being reserved. Needs to be prefixed by “sku:” or “ean:”. List of available skus and eans can be obtained by getProductList call
<soapenv:Envelope 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:reserveVoucher>
         <context>
            <channel>WS</channel>
            <clientId>Test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456678123</password>
         </context>
         <transactionData>
            <clientComment>?</clientComment>
            <clientReference>?</clientReference>
            <clientTag>?</clientTag>
         </transactionData>
         <productId>ean:7332023036197</productId>
      </ext:reserveVoucher>
   </soapenv:Body>
</soapenv:Envelope>

Up

reserveVoucher response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
ersReference String 2014071814275177901000128 Trackable number of the voucher in ERS system of the request. To be used with buyReservedVoucher and cancelVoucherReservation requests
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:reserveVoucherResponse 
xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <ersReference>2014071814275177901000128</ersReference>
            <resultCode>0</resultCode>
         </return>
      </ns2:reserveVoucherResponse>
   </soap:Body>
</soap:Envelope>

Up

buyReservedVoucher

The second step in the two-phase commit procedure for buying a voucher. Can only be called after getting a successful response from a reserveVoucher call.

Up

buyReservedVoucher request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
ersReference yes String 2014071716555003001000100 ersReference of the reserved voucher returned by reserveVoucher response
receiptFormatId yes String TEXT Needs to be set to one of the following: VML, TEXT, HTML
<soapenv:Envelope 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:buyReservedVoucher>
         <context>
            <channel>WS</channel>
            <clientId>Test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456678123</password>
         </context>
         <ersReference>2014071716555003001000100</ersReference>
         <receiptFormatId>VML</receiptFormatId>
      </ext:buyReservedVoucher>
   </soapenv:Body>
</soapenv:Envelope>

Up

buyReserverdVoucher response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
ersReference String 2014071814275177901000128 Trackable number of the voucher in ERS system of the request. To be used with buyReservedVoucher and cancelVoucherReservation requests
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
productEAN String 7332023036197 EAN number of the product (voucher) that was bought
productName String Årskort 999KR Name of the product
productSKU String 19016 SKU number of the product
receipt String Sample receipt can be found here Content to be parsed on POS side, printed and provided to the customer
code String 380000080 Code of the generated voucher
expiryDate date 2014-01-01T00:00:00+01:00 Voucher’s date of expiration
serial String 380080 Serial number of the voucher
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:buyReservedVoucherResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <ersReference>2014071814355935801000131</ersReference>
            <resultCode>0</resultCode>
            <productEAN>7332023036197</productEAN>
            <productName>Årskort 999KR</productName>
            <productSKU>19016</productSKU>
            <receipt> ........ </receipt>
            <voucher>
               <code>380000080</code>
               <expiryDate>2014-01-01T00:00:00+01:00</expiryDate>
               <serial>380080</serial>
            </voucher>
         </return>
      </ns2:buyReservedVoucherResponse>
   </soap:Body>
</soap:Envelope>

Up

cancelVoucherReservation

Used to cancel a reservation of a voucher after a successful response from a reserveVoucher call and should be called if the purchase is to be aborted.

Up

cancelVoucherReservation request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
ersReference yes String 2014071716555003001000100 ersReference of the reserved voucher returned by reserveVoucher response
receiptFormatId yes String TEXT Needs to be set to one of the following: VML, TEXT, HTML
<soapenv:Envelope 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:cancelVoucherReservation>
         <context>
            <channel>WS</channel>
            <clientId>Test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456678123</password>
         </context>
         <ersReference>2014071716555003001000100</ersReference>
      </ext:cancelVoucherReservation>
   </soapenv:Body>
</soapenv:Envelope>

Up

cancelVoucherReservation response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
ersReference String 2014071814275177901000128 Trackable number of cancelation in the ERS system
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:reserveVoucherResponse 
xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <ersReference>2014071814275177901000128</ersReference>
            <resultCode>0</resultCode>
         </return>
      </ns2:reserveVoucherResponse>
   </soap:Body>
</soap:Envelope>

Up

cancelTransaction

Allows to cancel transaction that has been finished. Using ersReference from buyReservedVoucher response (not voucher).

Up

cancelTransaction request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
clientComment no String Some comment Can be used to add additional information from the client system
clientReference no String 823429834723948 Reference of the transaction in clients system
clientTag no String POS007 Tracking tag from the clients system (i.e: cash register ID)
ersReference yes String 2014110515155960201000883 ersReference from buyReservedVoucher response of voucher to be refunded
verificationCode no String 803987373939 The verification code for the cancellation, if required
reasonCode no decimal 03 The code categorizing the reason for the cancellation. 01 - Cashier mistake, 02 - Technical error, 03 - Customer mistake, 11 - Code unusable
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:cancelTransaction>
         <context>
            <channel>?</channel>
            <clientId>?</clientId>
            <clientRequestTimeout>?</clientRequestTimeout>
            <clientUserId>?</clientUserId>
            <password>?</password>
         </context>
         <transactionData>
            <clientComment>?</clientComment>
            <clientReference>?</clientReference>
            <clientTag>?</clientTag>
         </transactionData>
         <ersReference>?</ersReference>
         <verificationCode>?</verificationCode>
         <reasonCode>?</reasonCode>
         <reason>?</reason>
      </ext:cancelTransaction>
   </soapenv:Body>
</soapenv:Envelope>

Up

cancelTransaction response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
ersReference String 2014071814275177901000128 Trackable number of cancelation in the ERS system
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:cancelTransactionResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <resultCode>0</resultCode>
            <ersReference>2014111312525268801000008</ersReference>
         </return>
      </ns2:cancelTransactionResponse>
   </soap:Body>
</soap:Envelope>

Up

4. Optional Methods

These methods have to be implemented in order to pass our certification get production access.

Up

executeReport

Allows to generate reports.

executeReport request

Field Required Type Sample Value Description
channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
clientComment no String Some comment Can be used to add additional information from the client system
clientReference no String 823429834723948 Reference of the transaction in clients system
reportId yes String repo:///terminal/ REP_TERM_CASHIER_SALES_PERIOD.xml Type of report that you’d like to get
language yes String en Language of report. Currently available are “en” for English and “sv” for Swedish
key yes Sring resellerId Name of the parameter. Different types of reports require diffrent parametrs. Check below example request to see differences
value yes String someresellerid Value of the parameter

executeReport response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
content String Cgo8YnI+Cjxp… Contains report in base64 form
contentString String See examples below content of the report

Up

executeReport CASHIER_SALES_PERIOD example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:executeReport>
         <context>
            <channel>TERMINAL</channel>
            <clientId>test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456</password>
         </context>
         <transactionData>
            <clientComment>TEST</clientComment>
            <clientReference>001001</clientReference>
         </transactionData>
         <reportId>repo:///terminal/REP_TERM_CASHIER_SALES_PERIOD.xml</reportId>
         <language>en</language>
         <parameters>
            <parameter>
               <entry>
                  <key>resellerId</key>
                  <value>test</value>
               </entry>
               <entry>
                  <key>user</key>
                  <value>9900</value>
               </entry>
               <entry>
                  <key>startTime</key>
                  <value>2014-01-01 00:00:00</value>
               </entry>
               <entry>
                  <key>endTime</key>
                  <value>2014-12-01 00:00:00</value>
               </entry>
            </parameter>
         </parameters>
      </ext:executeReport>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPOSNE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:executeReportResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <resultCode>0</resultCode>
            <reportData>
               <content>Cgo8YnI+Cjxp...</content>
               <contentString><![CDATA[<br>
                  <img=seamless.bmp><br><br>
                  <center><large>Cashier Sales Summary over period
                  <line><normal>
                  <br>
                  <br>
                  <br><align=2><left>Reseller ID<right>DIST1
                  <br><align=2><left>Cashier<right>webuser
                  <br><align=2><left>Start<right>2014-01-01 00:00:00
                  <br><align=2><left>End<right>2014-12-01 00:00:00
                  <br>
                  <br>
                  <align=3><left>Product<center>Count<right>Amount
                  <line>
                  <br>
                  <line>
                  <align=3><left>Total<center>0<right>0,00 SEK
                  <line>
                  <br>]]>
               </contentString>
               <mimeType>text/html</mimeType>
               <title/>
            </reportData>
         </return>
      </ns2:executeReportResponse>
   </soap:Body>
</soap:Envelope>

Up

executeReport RESELLER_INFO example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:executeReport>
         <context>
            <channel>TERMINAL</channel>
            <clientId>test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456</password>
         </context>
         <transactionData>
            <clientComment>TEST</clientComment>
            <clientReference>001001</clientReference>
         </transactionData>
         <reportId>repo:///terminal/REP_TERM_RESELLER_INFO.xml</reportId>
         <language>en</language>
         <parameters>
            <parameter>
               <entry>
                  <key>resellerId</key>
                  <value>test</value>
               </entry>
            </parameter>
         </parameters>
      </ext:executeReport>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPONSE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:executeReportResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <resultCode>0</resultCode>
            <reportData>
               <content>Cgo8YnI+Cj...</content>
               <contentString><![CDATA[<br>
                  <img=seamless.bmp><br><br>
                  <center><large>Reseller Information
                  <line><normal>
                  <br><align=2><left>Reseller ID<right>DIST1
                  <br><align=2><left>Terminal ID<right>?terminalId(terminalId)?
                  <br><align=2><left>A/C status<right>Active
                  <br>
                  <line>
                  <br><align=2><left>Balance<right>0,00 SEK
                  <br>
                  <line>
                  <line>]]>
               </contentString>
               <mimeType>text/html</mimeType>
               <title/>
            </reportData>
         </return>
      </ns2:executeReportResponse>
   </soap:Body>
</soap:Envelope>

Up

executeReport RESELLER_SALES_PERIOD example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:executeReport>
         <context>
            <channel>TERMINAL</channel>
            <clientId>test</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>
            <clientUserId>9900</clientUserId>
            <password>123456</password>
         </context>
         <transactionData>
            <clientComment>TEST</clientComment>
            <clientReference>001001</clientReference>
         </transactionData>
         <reportId>repo:///terminal/REP_TERM_RESELLER_SALES_PERIOD.xml</reportId>
         <language>en</language>
         <parameters>
            <parameter>
               <entry>
                  <key>resellerId</key>
                  <value>test</value>
               </entry>
               <entry>
                  <key>startTime</key>
                  <value>2014-01-01 00:00:00</value>
               </entry>
               <entry>
                  <key>endTime</key>
                  <value>2014-12-01 00:00:00</value>
               </entry>
            </parameter>
         </parameters>
      </ext:executeReport>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPONSE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:executeReportResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <resultCode>0</resultCode>
            <reportData>
               <content>Cgo8YnI+...</content>
               <contentString><![CDATA[<br>
                  <img=seamless.bmp><br><br>
                  <center><large>Sales Summary over period
                  <line><normal>
                  <br>
                  <br>
                  <br><align=2><left>Reseller ID<right>DIST1
                  <br><align=2><left>Start<right>2014-01-01 00:00:00
                  <br><align=2><left>End<right>2014-12-01 00:00:00
                  <br>
                  <br>
                  <align=3><left>Product<center>Count<right>Amount
                  <line>
                  <br>
                  <line>
                  <align=3><left>Total<center>0<right>0,00 SEK
                  <line>
                  <br>]]>
               </contentString>
               <mimeType>text/html</mimeType>
               <title/>
            </reportData>
         </return>
      </ns2:executeReportResponse>
   </soap:Body>
</soap:Envelope>

Up

getProductListCount

Returns number of active product available in EVD system.

getProductListCount request

Field Required Type Sample Value Description
context/channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here

getProductListCount response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
ersReference String 2016082314483437301000028 Trackable number for the request in EVD System
totalCount decimal 28 Number of total active products in EVD System

Up

getProductListCount example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:getProductListCount>         
         <context>           
            <channel>WS</channel>           
            <clientId>LAT_DIST1</clientId>
            <clientRequestTimeout>0</clientRequestTimeout>           
            <clientUserId>webuser</clientUserId>            
            <password>20162016</password>
         </context>
      </ext:getProductListCount>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPOSNE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:getProductListCountResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>Success</errorDescription>
            <ersReference>2016082312414101201000020</ersReference>
            <resultCode>0</resultCode>
            <totalCount>28</totalCount>
         </return>
      </ns2:getProductListCountResponse>
   </soap:Body>
</soap:Envelope>

Up

getProductListBySequence

Returns list of available product as per valid start sequence and end sequence.

getProductListBySequence request

Field Required Type Sample Value Description
context/channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
startSeq yes decimal 0 Zero or Valid positive number less than getProductListCount return value
endSeq yes decimal 10 Zero or Valid positive number less than getProductListCount return value

getProductListBySequence response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
ersReference String 2016082314483437301000028 Trackable number for the request in EVD System
suppliers/name String BITE Supplier Name
products/customerPrice/currency String EUR Currency Code
products/customerPrice/value decimal 1.42 Product Price
products/ean String 4751022250015 Product EAN
products/name String Bites papildināšanas kods 1.42 EUR Product Name
products/sku String 450104 Product SKU

Up

getProductListBySequence example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:getProductListBySequence>
        <context>
            <channel>WEB</channel>
            <clientId>LAT_DIST1</clientId>
            <clientRequestTimeout>30000</clientRequestTimeout>
            <clientUserId>webuser</clientUserId>
            <password>20162016</password>
         </context>
         <startSeq>0</startSeq>
         <endSeq>2</endSeq>
      </ext:getProductListBySequence>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPOSNE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:getProductListBySequenceResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>Success</errorDescription>
            <ersReference>2016082314483437301000028</ersReference>
            <resultCode>0</resultCode>
            <suppliers>
               <name>BITE</name>
               <products>
                  <customerPrice>
                     <currency>EUR</currency>
                     <value>1.42</value>
                  </customerPrice>
                  <ean>4751022250015</ean>
                  <name>Bites papildināšanas kods 1.42 EUR</name>
                  <sku>450104</sku>
               </products>
               <products>
                  <customerPrice>
                     <currency>EUR</currency>
                     <value>3</value>
                  </customerPrice>
                  <ean>4751022250022</ean>
                  <name>Bites papildināšanas kods 3 EUR</name>
                  <sku>450105</sku>
               </products>
               <products>
                  <customerPrice>
                     <currency>EUR</currency>
                     <value>5</value>
                  </customerPrice>
                  <ean>4751022250039</ean>
                  <name>Bites papildināšanas kods 5 EUR</name>
                  <sku>450106</sku>
               </products>
            </suppliers>
         </return>
      </ns2:getProductListBySequenceResponse>
   </soap:Body>
</soap:Envelope>

Up

getReceipt

Return a receipt for reseller or subscriber based on “receiptType” param.

getReceipt request

Field Required Type Sample Value Description
context/channel yes String WS Needs to be set to WS
clientId yes String reseller123 clientId provided by Seamless or from here
clientRequestTimeout yes decimal 0 Timeout requested from the client´s side. We highly recommend to leave it to zero for an immediate response. Use different than 0 only if it´s a special situation.
clientUserId yes decimal 9900 Use 9900 unless provided with different clientUserId
password yes String p@55w0Rd password provided by Seamless or from here
ersReference yes String 2016082312381671501000013 Trackable number for the request in EVD System. This number actually is a transaction number, buyVoucher was called
receiptType yes String RESELLER The value of this should be ‘RESELLER’ or ‘SUBSCRIBER’. In case of other input no receipt will return

getReceipt response

Field Type Sample value Description
errorDescription String SUCCESS Description of the status of the response
resultCode decimal 0 Response result code. See posible result codes at the bottom of this page
ersReference String 2016082314483437301000028 Trackable number for the request in EVD System
receipt String BITE The actual receipt text for reseller or subscriber

Up

getReceipt example

<!--REQUEST-->

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ext="http://externalws.client.ers.seamless.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ext:getReceipt>
         <context>
            <channel>WS</channel>
            <clientId>LAT_DIST1</clientId>
            <clientRequestTimeout>30000</clientRequestTimeout>
            <clientUserId>webuser</clientUserId>
            <password>20162016</password>
         </context>
         <ersReference>2016082312381671501000013</ersReference>
         <receiptType>RESELLER</receiptType>
      </ext:getReceipt>
   </soapenv:Body>
</soapenv:Envelope>
<!--RESPOSNE-->

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:getReceiptResponse xmlns:ns2="http://externalws.client.ers.seamless.com/">
         <return>
            <errorDescription>SUCCESS</errorDescription>
            <resultCode>0</resultCode>
            <receipt>lat_dist1
				Bites papildināšanas kods 8 EUR
				BITE
				2016/08/23 10:08:18
				1340001
			</receipt>
         </return>
      </ns2:getReceiptResponse>
   </soap:Body>
</soap:Envelope>

Up

5. Response Codes

Code Description Detailed description Can occur
78 The transaction has already been reversed. Transaction ID: 2015012716100420301000413 Voucher has been bought and refunded buyReservedVoucher
78 The specified transaction is in illegal state for this operation. Voucher already bought buyReservedVoucher, cancelVoucherReservation
79 You are not found in the system. Provided incorrect credentials (clientId or clientUserId) Any method
79 The given password is not correct Provided password is incorrect Any method
90 You provided an unknown product SKU/EAN. Please try again with an existing product SKU/EAN.   reserveVoucher
90 SYSTEM_ERROR: Missing parameter resellerId ! reportId key/value is missing in executeReport request where it is required executeReport
90 SYSTEM_ERROR: Report not found! wrong reportId executeReport
90 SYSTEM_ERROR: Unable to find layout for language: wrong language value executeReport
91 The specified transaction could not be found. Wrong ersReference buyReservedVoucher, cancelVoucherReservation, cancelTransaction

Up