Service


Haga clic aquí para obtener una lista completa de operaciones.

ListaTienda

Prueba

El formulario de prueba sólo está disponible para solicitudes del equipo local.

SOAP 1.1

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.1. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /Service.asmx HTTP/1.1
Host: movilapiqas.cassinelli.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://app.cassinelli.com/ListaTienda"

<?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>
    <ListaTienda xmlns="http://app.cassinelli.com/">
      <sCO_EMPR>string</sCO_EMPR>
    </ListaTienda>
  </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>
    <ListaTiendaResponse xmlns="http://app.cassinelli.com/">
      <ListaTiendaResult>
        <Tienda>
          <co_tien>string</co_tien>
          <de_tien>string</de_tien>
          <co_alma_vent>string</co_alma_vent>
          <co_alma_cons>string</co_alma_cons>
          <co_alma_0009>string</co_alma_0009>
          <co_alma_cent>string</co_alma_cent>
          <ni_prec>string</ni_prec>
          <no_empr>string</no_empr>
          <nu_rucs_empr>string</nu_rucs_empr>
        </Tienda>
        <Tienda>
          <co_tien>string</co_tien>
          <de_tien>string</de_tien>
          <co_alma_vent>string</co_alma_vent>
          <co_alma_cons>string</co_alma_cons>
          <co_alma_0009>string</co_alma_0009>
          <co_alma_cent>string</co_alma_cent>
          <ni_prec>string</ni_prec>
          <no_empr>string</no_empr>
          <nu_rucs_empr>string</nu_rucs_empr>
        </Tienda>
      </ListaTiendaResult>
    </ListaTiendaResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.2. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /Service.asmx HTTP/1.1
Host: movilapiqas.cassinelli.com
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>
    <ListaTienda xmlns="http://app.cassinelli.com/">
      <sCO_EMPR>string</sCO_EMPR>
    </ListaTienda>
  </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>
    <ListaTiendaResponse xmlns="http://app.cassinelli.com/">
      <ListaTiendaResult>
        <Tienda>
          <co_tien>string</co_tien>
          <de_tien>string</de_tien>
          <co_alma_vent>string</co_alma_vent>
          <co_alma_cons>string</co_alma_cons>
          <co_alma_0009>string</co_alma_0009>
          <co_alma_cent>string</co_alma_cent>
          <ni_prec>string</ni_prec>
          <no_empr>string</no_empr>
          <nu_rucs_empr>string</nu_rucs_empr>
        </Tienda>
        <Tienda>
          <co_tien>string</co_tien>
          <de_tien>string</de_tien>
          <co_alma_vent>string</co_alma_vent>
          <co_alma_cons>string</co_alma_cons>
          <co_alma_0009>string</co_alma_0009>
          <co_alma_cent>string</co_alma_cent>
          <ni_prec>string</ni_prec>
          <no_empr>string</no_empr>
          <nu_rucs_empr>string</nu_rucs_empr>
        </Tienda>
      </ListaTiendaResult>
    </ListaTiendaResponse>
  </soap12:Body>
</soap12:Envelope>