Service


Click here for a complete list of operations.

getInvoiceList

Get invoices list for specified perriod as SOAP. Max 30 days back.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
login:
password:
dateFrom:
dateTo:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /service.asmx HTTP/1.1
Host: public.ws.shop-it.sk
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.elinkx.cz/getInvoiceList"

<?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>
    <getInvoiceList xmlns="http://www.elinkx.cz">
      <login>string</login>
      <password>string</password>
      <dateFrom>string</dateFrom>
      <dateTo>string</dateTo>
    </getInvoiceList>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?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>
    <getInvoiceListResponse xmlns="http://www.elinkx.cz">
      <getInvoiceListResult>
        <InvoiceList>
          <InvoiceHead>
            <Items xsi:nil="true" />
            <InvoiceAddress xsi:nil="true" />
            <ShippingAddressList xsi:nil="true" />
            <Orders xsi:nil="true" />
            <Delivery xsi:nil="true" />
            <ID>int</ID>
            <InvoiceSymbol>string</InvoiceSymbol>
            <DateCreated>dateTime</DateCreated>
            <VariableSymbol>string</VariableSymbol>
            <VariableConSymbol>string</VariableConSymbol>
            <InvoiceDateDue>dateTime</InvoiceDateDue>
            <InvoiceDate>dateTime</InvoiceDate>
            <InvoiceDateAcc>dateTime</InvoiceDateAcc>
            <InvoiceDateVat>dateTime</InvoiceDateVat>
            <Payed>boolean</Payed>
            <Cust>boolean</Cust>
            <WithVat>boolean</WithVat>
            <Currency>string</Currency>
            <Rate>decimal</Rate>
            <PriceBrutto>decimal</PriceBrutto>
            <PriceNetto>decimal</PriceNetto>
            <Vat>decimal</Vat>
            <Rnd>decimal</Rnd>
            <Subjekt>string</Subjekt>
            <OrgNo>string</OrgNo>
            <OrgVat>string</OrgVat>
            <SubjektID>int</SubjektID>
            <Tel>string</Tel>
            <Fax>string</Fax>
            <BankNameType>string</BankNameType>
            <BankName>string</BankName>
            <BankCode>string</BankCode>
            <BankAccountPre>string</BankAccountPre>
            <BankAccountNo>string</BankAccountNo>
            <Trackus>string</Trackus>
            <InvoiceType>string</InvoiceType>
            <InvoiceTypeCode>string</InvoiceTypeCode>
            <DocumentTypeCode>string</DocumentTypeCode>
          </InvoiceHead>
          <InvoiceHead>
            <Items xsi:nil="true" />
            <InvoiceAddress xsi:nil="true" />
            <ShippingAddressList xsi:nil="true" />
            <Orders xsi:nil="true" />
            <Delivery xsi:nil="true" />
            <ID>int</ID>
            <InvoiceSymbol>string</InvoiceSymbol>
            <DateCreated>dateTime</DateCreated>
            <VariableSymbol>string</VariableSymbol>
            <VariableConSymbol>string</VariableConSymbol>
            <InvoiceDateDue>dateTime</InvoiceDateDue>
            <InvoiceDate>dateTime</InvoiceDate>
            <InvoiceDateAcc>dateTime</InvoiceDateAcc>
            <InvoiceDateVat>dateTime</InvoiceDateVat>
            <Payed>boolean</Payed>
            <Cust>boolean</Cust>
            <WithVat>boolean</WithVat>
            <Currency>string</Currency>
            <Rate>decimal</Rate>
            <PriceBrutto>decimal</PriceBrutto>
            <PriceNetto>decimal</PriceNetto>
            <Vat>decimal</Vat>
            <Rnd>decimal</Rnd>
            <Subjekt>string</Subjekt>
            <OrgNo>string</OrgNo>
            <OrgVat>string</OrgVat>
            <SubjektID>int</SubjektID>
            <Tel>string</Tel>
            <Fax>string</Fax>
            <BankNameType>string</BankNameType>
            <BankName>string</BankName>
            <BankCode>string</BankCode>
            <BankAccountPre>string</BankAccountPre>
            <BankAccountNo>string</BankAccountNo>
            <Trackus>string</Trackus>
            <InvoiceType>string</InvoiceType>
            <InvoiceTypeCode>string</InvoiceTypeCode>
            <DocumentTypeCode>string</DocumentTypeCode>
          </InvoiceHead>
        </InvoiceList>
        <Status>
          <StatusCode>string</StatusCode>
          <ErrorText>string</ErrorText>
        </Status>
        <Info>
          <DateFrom>dateTime</DateFrom>
          <DateTo>dateTime</DateTo>
          <Count>int</Count>
        </Info>
      </getInvoiceListResult>
    </getInvoiceListResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /service.asmx HTTP/1.1
Host: public.ws.shop-it.sk
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getInvoiceList xmlns="http://www.elinkx.cz">
      <login>string</login>
      <password>string</password>
      <dateFrom>string</dateFrom>
      <dateTo>string</dateTo>
    </getInvoiceList>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getInvoiceListResponse xmlns="http://www.elinkx.cz">
      <getInvoiceListResult>
        <InvoiceList>
          <InvoiceHead>
            <Items xsi:nil="true" />
            <InvoiceAddress xsi:nil="true" />
            <ShippingAddressList xsi:nil="true" />
            <Orders xsi:nil="true" />
            <Delivery xsi:nil="true" />
            <ID>int</ID>
            <InvoiceSymbol>string</InvoiceSymbol>
            <DateCreated>dateTime</DateCreated>
            <VariableSymbol>string</VariableSymbol>
            <VariableConSymbol>string</VariableConSymbol>
            <InvoiceDateDue>dateTime</InvoiceDateDue>
            <InvoiceDate>dateTime</InvoiceDate>
            <InvoiceDateAcc>dateTime</InvoiceDateAcc>
            <InvoiceDateVat>dateTime</InvoiceDateVat>
            <Payed>boolean</Payed>
            <Cust>boolean</Cust>
            <WithVat>boolean</WithVat>
            <Currency>string</Currency>
            <Rate>decimal</Rate>
            <PriceBrutto>decimal</PriceBrutto>
            <PriceNetto>decimal</PriceNetto>
            <Vat>decimal</Vat>
            <Rnd>decimal</Rnd>
            <Subjekt>string</Subjekt>
            <OrgNo>string</OrgNo>
            <OrgVat>string</OrgVat>
            <SubjektID>int</SubjektID>
            <Tel>string</Tel>
            <Fax>string</Fax>
            <BankNameType>string</BankNameType>
            <BankName>string</BankName>
            <BankCode>string</BankCode>
            <BankAccountPre>string</BankAccountPre>
            <BankAccountNo>string</BankAccountNo>
            <Trackus>string</Trackus>
            <InvoiceType>string</InvoiceType>
            <InvoiceTypeCode>string</InvoiceTypeCode>
            <DocumentTypeCode>string</DocumentTypeCode>
          </InvoiceHead>
          <InvoiceHead>
            <Items xsi:nil="true" />
            <InvoiceAddress xsi:nil="true" />
            <ShippingAddressList xsi:nil="true" />
            <Orders xsi:nil="true" />
            <Delivery xsi:nil="true" />
            <ID>int</ID>
            <InvoiceSymbol>string</InvoiceSymbol>
            <DateCreated>dateTime</DateCreated>
            <VariableSymbol>string</VariableSymbol>
            <VariableConSymbol>string</VariableConSymbol>
            <InvoiceDateDue>dateTime</InvoiceDateDue>
            <InvoiceDate>dateTime</InvoiceDate>
            <InvoiceDateAcc>dateTime</InvoiceDateAcc>
            <InvoiceDateVat>dateTime</InvoiceDateVat>
            <Payed>boolean</Payed>
            <Cust>boolean</Cust>
            <WithVat>boolean</WithVat>
            <Currency>string</Currency>
            <Rate>decimal</Rate>
            <PriceBrutto>decimal</PriceBrutto>
            <PriceNetto>decimal</PriceNetto>
            <Vat>decimal</Vat>
            <Rnd>decimal</Rnd>
            <Subjekt>string</Subjekt>
            <OrgNo>string</OrgNo>
            <OrgVat>string</OrgVat>
            <SubjektID>int</SubjektID>
            <Tel>string</Tel>
            <Fax>string</Fax>
            <BankNameType>string</BankNameType>
            <BankName>string</BankName>
            <BankCode>string</BankCode>
            <BankAccountPre>string</BankAccountPre>
            <BankAccountNo>string</BankAccountNo>
            <Trackus>string</Trackus>
            <InvoiceType>string</InvoiceType>
            <InvoiceTypeCode>string</InvoiceTypeCode>
            <DocumentTypeCode>string</DocumentTypeCode>
          </InvoiceHead>
        </InvoiceList>
        <Status>
          <StatusCode>string</StatusCode>
          <ErrorText>string</ErrorText>
        </Status>
        <Info>
          <DateFrom>dateTime</DateFrom>
          <DateTo>dateTime</DateTo>
          <Count>int</Count>
        </Info>
      </getInvoiceListResult>
    </getInvoiceListResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /service.asmx/getInvoiceList?login=string&password=string&dateFrom=string&dateTo=string HTTP/1.1
Host: public.ws.shop-it.sk
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ResponseInvoiceList xmlns="http://www.elinkx.cz">
  <InvoiceList>
    <InvoiceHead>
      <Items>
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Items>
      <InvoiceAddress>
        <Name2>string</Name2>
        <OrgNo>string</OrgNo>
        <OrgVat>string</OrgVat>
      </InvoiceAddress>
      <ShippingAddressList>
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </ShippingAddressList>
      <Orders>
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Orders>
      <Delivery>
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Delivery>
      <ID>int</ID>
      <InvoiceSymbol>string</InvoiceSymbol>
      <DateCreated>dateTime</DateCreated>
      <VariableSymbol>string</VariableSymbol>
      <VariableConSymbol>string</VariableConSymbol>
      <InvoiceDateDue>dateTime</InvoiceDateDue>
      <InvoiceDate>dateTime</InvoiceDate>
      <InvoiceDateAcc>dateTime</InvoiceDateAcc>
      <InvoiceDateVat>dateTime</InvoiceDateVat>
      <Payed>boolean</Payed>
      <Cust>boolean</Cust>
      <WithVat>boolean</WithVat>
      <Currency>string</Currency>
      <Rate>decimal</Rate>
      <PriceBrutto>decimal</PriceBrutto>
      <PriceNetto>decimal</PriceNetto>
      <Vat>decimal</Vat>
      <Rnd>decimal</Rnd>
      <Subjekt>string</Subjekt>
      <OrgNo>string</OrgNo>
      <OrgVat>string</OrgVat>
      <SubjektID>int</SubjektID>
      <Tel>string</Tel>
      <Fax>string</Fax>
      <BankNameType>string</BankNameType>
      <BankName>string</BankName>
      <BankCode>string</BankCode>
      <BankAccountPre>string</BankAccountPre>
      <BankAccountNo>string</BankAccountNo>
      <Trackus>string</Trackus>
      <InvoiceType>string</InvoiceType>
      <InvoiceTypeCode>string</InvoiceTypeCode>
      <DocumentTypeCode>string</DocumentTypeCode>
    </InvoiceHead>
    <InvoiceHead>
      <Items>
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Items>
      <InvoiceAddress>
        <Name2>string</Name2>
        <OrgNo>string</OrgNo>
        <OrgVat>string</OrgVat>
      </InvoiceAddress>
      <ShippingAddressList>
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </ShippingAddressList>
      <Orders>
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Orders>
      <Delivery>
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Delivery>
      <ID>int</ID>
      <InvoiceSymbol>string</InvoiceSymbol>
      <DateCreated>dateTime</DateCreated>
      <VariableSymbol>string</VariableSymbol>
      <VariableConSymbol>string</VariableConSymbol>
      <InvoiceDateDue>dateTime</InvoiceDateDue>
      <InvoiceDate>dateTime</InvoiceDate>
      <InvoiceDateAcc>dateTime</InvoiceDateAcc>
      <InvoiceDateVat>dateTime</InvoiceDateVat>
      <Payed>boolean</Payed>
      <Cust>boolean</Cust>
      <WithVat>boolean</WithVat>
      <Currency>string</Currency>
      <Rate>decimal</Rate>
      <PriceBrutto>decimal</PriceBrutto>
      <PriceNetto>decimal</PriceNetto>
      <Vat>decimal</Vat>
      <Rnd>decimal</Rnd>
      <Subjekt>string</Subjekt>
      <OrgNo>string</OrgNo>
      <OrgVat>string</OrgVat>
      <SubjektID>int</SubjektID>
      <Tel>string</Tel>
      <Fax>string</Fax>
      <BankNameType>string</BankNameType>
      <BankName>string</BankName>
      <BankCode>string</BankCode>
      <BankAccountPre>string</BankAccountPre>
      <BankAccountNo>string</BankAccountNo>
      <Trackus>string</Trackus>
      <InvoiceType>string</InvoiceType>
      <InvoiceTypeCode>string</InvoiceTypeCode>
      <DocumentTypeCode>string</DocumentTypeCode>
    </InvoiceHead>
  </InvoiceList>
  <Status>
    <StatusCode>string</StatusCode>
    <ErrorText>string</ErrorText>
  </Status>
  <Info>
    <DateFrom>dateTime</DateFrom>
    <DateTo>dateTime</DateTo>
    <Count>int</Count>
  </Info>
</ResponseInvoiceList>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /service.asmx/getInvoiceList HTTP/1.1
Host: public.ws.shop-it.sk
Content-Type: application/x-www-form-urlencoded
Content-Length: length

login=string&password=string&dateFrom=string&dateTo=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ResponseInvoiceList xmlns="http://www.elinkx.cz">
  <InvoiceList>
    <InvoiceHead>
      <Items>
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Items>
      <InvoiceAddress>
        <Name2>string</Name2>
        <OrgNo>string</OrgNo>
        <OrgVat>string</OrgVat>
      </InvoiceAddress>
      <ShippingAddressList>
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </ShippingAddressList>
      <Orders>
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Orders>
      <Delivery>
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Delivery>
      <ID>int</ID>
      <InvoiceSymbol>string</InvoiceSymbol>
      <DateCreated>dateTime</DateCreated>
      <VariableSymbol>string</VariableSymbol>
      <VariableConSymbol>string</VariableConSymbol>
      <InvoiceDateDue>dateTime</InvoiceDateDue>
      <InvoiceDate>dateTime</InvoiceDate>
      <InvoiceDateAcc>dateTime</InvoiceDateAcc>
      <InvoiceDateVat>dateTime</InvoiceDateVat>
      <Payed>boolean</Payed>
      <Cust>boolean</Cust>
      <WithVat>boolean</WithVat>
      <Currency>string</Currency>
      <Rate>decimal</Rate>
      <PriceBrutto>decimal</PriceBrutto>
      <PriceNetto>decimal</PriceNetto>
      <Vat>decimal</Vat>
      <Rnd>decimal</Rnd>
      <Subjekt>string</Subjekt>
      <OrgNo>string</OrgNo>
      <OrgVat>string</OrgVat>
      <SubjektID>int</SubjektID>
      <Tel>string</Tel>
      <Fax>string</Fax>
      <BankNameType>string</BankNameType>
      <BankName>string</BankName>
      <BankCode>string</BankCode>
      <BankAccountPre>string</BankAccountPre>
      <BankAccountNo>string</BankAccountNo>
      <Trackus>string</Trackus>
      <InvoiceType>string</InvoiceType>
      <InvoiceTypeCode>string</InvoiceTypeCode>
      <DocumentTypeCode>string</DocumentTypeCode>
    </InvoiceHead>
    <InvoiceHead>
      <Items>
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <InvoiceItem d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Items>
      <InvoiceAddress>
        <Name2>string</Name2>
        <OrgNo>string</OrgNo>
        <OrgVat>string</OrgVat>
      </InvoiceAddress>
      <ShippingAddressList>
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <ShippingAddress d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </ShippingAddressList>
      <Orders>
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <OrderHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Orders>
      <Delivery>
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <DeliveryHead d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Delivery>
      <ID>int</ID>
      <InvoiceSymbol>string</InvoiceSymbol>
      <DateCreated>dateTime</DateCreated>
      <VariableSymbol>string</VariableSymbol>
      <VariableConSymbol>string</VariableConSymbol>
      <InvoiceDateDue>dateTime</InvoiceDateDue>
      <InvoiceDate>dateTime</InvoiceDate>
      <InvoiceDateAcc>dateTime</InvoiceDateAcc>
      <InvoiceDateVat>dateTime</InvoiceDateVat>
      <Payed>boolean</Payed>
      <Cust>boolean</Cust>
      <WithVat>boolean</WithVat>
      <Currency>string</Currency>
      <Rate>decimal</Rate>
      <PriceBrutto>decimal</PriceBrutto>
      <PriceNetto>decimal</PriceNetto>
      <Vat>decimal</Vat>
      <Rnd>decimal</Rnd>
      <Subjekt>string</Subjekt>
      <OrgNo>string</OrgNo>
      <OrgVat>string</OrgVat>
      <SubjektID>int</SubjektID>
      <Tel>string</Tel>
      <Fax>string</Fax>
      <BankNameType>string</BankNameType>
      <BankName>string</BankName>
      <BankCode>string</BankCode>
      <BankAccountPre>string</BankAccountPre>
      <BankAccountNo>string</BankAccountNo>
      <Trackus>string</Trackus>
      <InvoiceType>string</InvoiceType>
      <InvoiceTypeCode>string</InvoiceTypeCode>
      <DocumentTypeCode>string</DocumentTypeCode>
    </InvoiceHead>
  </InvoiceList>
  <Status>
    <StatusCode>string</StatusCode>
    <ErrorText>string</ErrorText>
  </Status>
  <Info>
    <DateFrom>dateTime</DateFrom>
    <DateTo>dateTime</DateTo>
    <Count>int</Count>
  </Info>
</ResponseInvoiceList>