integration


İşlemlerin tam listesi için burayı tıklayın.

GetInvoice_List

Sınama

Sınama formu yalnızca yerel makineden yapılan istekler için kullanılabilir.

SOAP 1.1

Aşağıdaki örnekte bir SOAP 1.1 isteği ve yanıtı yer alıyor. Gösterilen yer tutucular gerçek değerlerle değiştirilmelidir.

POST /integration.asmx HTTP/1.1
Host: integrationtest.iceteknoloji.com.tr
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetInvoice_List"

<?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>
    <GetInvoice_List xmlns="http://tempuri.org/">
      <GetInvoiceRequest>
        <okundu>boolean</okundu>
        <islendi>boolean</islendi>
        <FaturaTuru>Gelen or Giden or EArsivGiden</FaturaTuru>
        <gonderici_unvan>string</gonderici_unvan>
        <SenderVKN_TCKN>string</SenderVKN_TCKN>
      </GetInvoiceRequest>
    </GetInvoice_List>
  </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>
    <GetInvoice_ListResponse xmlns="http://tempuri.org/">
      <GetInvoice_ListResult>
        <INVOICE_List>
          <okundu>boolean</okundu>
          <islendi>boolean</islendi>
          <gonderici_unvan>string</gonderici_unvan>
          <SenderVKN_TCKN>string</SenderVKN_TCKN>
          <alici_unvan>string</alici_unvan>
          <ReceiverVKN_TCKN>string</ReceiverVKN_TCKN>
          <KabulRed>string</KabulRed>
          <TaslakFatura>boolean</TaslakFatura>
          <Gib_Statu_Kodu>int</Gib_Statu_Kodu>
        </INVOICE_List>
        <INVOICE_List>
          <okundu>boolean</okundu>
          <islendi>boolean</islendi>
          <gonderici_unvan>string</gonderici_unvan>
          <SenderVKN_TCKN>string</SenderVKN_TCKN>
          <alici_unvan>string</alici_unvan>
          <ReceiverVKN_TCKN>string</ReceiverVKN_TCKN>
          <KabulRed>string</KabulRed>
          <TaslakFatura>boolean</TaslakFatura>
          <Gib_Statu_Kodu>int</Gib_Statu_Kodu>
        </INVOICE_List>
      </GetInvoice_ListResult>
    </GetInvoice_ListResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

Aşağıdaki örnekte bir SOAP 1.2 isteği ve yanıtı yer alıyor. Gösterilen yer tutucular gerçek değerlerle değiştirilmelidir.

POST /integration.asmx HTTP/1.1
Host: integrationtest.iceteknoloji.com.tr
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>
    <GetInvoice_List xmlns="http://tempuri.org/">
      <GetInvoiceRequest>
        <okundu>boolean</okundu>
        <islendi>boolean</islendi>
        <FaturaTuru>Gelen or Giden or EArsivGiden</FaturaTuru>
        <gonderici_unvan>string</gonderici_unvan>
        <SenderVKN_TCKN>string</SenderVKN_TCKN>
      </GetInvoiceRequest>
    </GetInvoice_List>
  </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>
    <GetInvoice_ListResponse xmlns="http://tempuri.org/">
      <GetInvoice_ListResult>
        <INVOICE_List>
          <okundu>boolean</okundu>
          <islendi>boolean</islendi>
          <gonderici_unvan>string</gonderici_unvan>
          <SenderVKN_TCKN>string</SenderVKN_TCKN>
          <alici_unvan>string</alici_unvan>
          <ReceiverVKN_TCKN>string</ReceiverVKN_TCKN>
          <KabulRed>string</KabulRed>
          <TaslakFatura>boolean</TaslakFatura>
          <Gib_Statu_Kodu>int</Gib_Statu_Kodu>
        </INVOICE_List>
        <INVOICE_List>
          <okundu>boolean</okundu>
          <islendi>boolean</islendi>
          <gonderici_unvan>string</gonderici_unvan>
          <SenderVKN_TCKN>string</SenderVKN_TCKN>
          <alici_unvan>string</alici_unvan>
          <ReceiverVKN_TCKN>string</ReceiverVKN_TCKN>
          <KabulRed>string</KabulRed>
          <TaslakFatura>boolean</TaslakFatura>
          <Gib_Statu_Kodu>int</Gib_Statu_Kodu>
        </INVOICE_List>
      </GetInvoice_ListResult>
    </GetInvoice_ListResponse>
  </soap12:Body>
</soap12:Envelope>