Sync


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

sync

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 /Sync.asmx HTTP/1.1
Host: ws.grupcev.es
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://ws.grupcev.es/sync"

<?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>
    <sync xmlns="https://ws.grupcev.es/">
      <Paso01>
        <MensajeSolicitudInformacionAlRegistroDePS xmlns="http://localhost/elegibilidad">
          <Cabecera>
            <CodigoREEEmpresaEmisora>string</CodigoREEEmpresaEmisora>
            <CodigoREEEmpresaDestino>string</CodigoREEEmpresaDestino>
            <CodigoDelProceso>A3 or B1 or C1 or C2 or M1 or F1 or D1 or W1 or Q1 or R1 or E1 or T1 or B2 or P0</CodigoDelProceso>
            <CodigoDePaso>01 or 02 or 03 or 04 or 05 or 06 or 07 or 08 or 09 or 10 or 11 or 12 or 13 or 16</CodigoDePaso>
            <CodigoDeSolicitud>string</CodigoDeSolicitud>
            <SecuencialDeSolicitud>string</SecuencialDeSolicitud>
            <FechaSolicitud>dateTime</FechaSolicitud>
            <CUPS>string</CUPS>
          </Cabecera>
          <ValidacionCliente>
            <TipoIdentificador>NI or NV or OT or PS or NE</TipoIdentificador>
            <Identificador>string</Identificador>
          </ValidacionCliente>
        </MensajeSolicitudInformacionAlRegistroDePS>
      </Paso01>
    </sync>
  </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>
    <syncResponse xmlns="https://ws.grupcev.es/">
      <syncResult>xml</syncResult>
    </syncResponse>
  </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 /Sync.asmx HTTP/1.1
Host: ws.grupcev.es
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>
    <sync xmlns="https://ws.grupcev.es/">
      <Paso01>
        <MensajeSolicitudInformacionAlRegistroDePS xmlns="http://localhost/elegibilidad">
          <Cabecera>
            <CodigoREEEmpresaEmisora>string</CodigoREEEmpresaEmisora>
            <CodigoREEEmpresaDestino>string</CodigoREEEmpresaDestino>
            <CodigoDelProceso>A3 or B1 or C1 or C2 or M1 or F1 or D1 or W1 or Q1 or R1 or E1 or T1 or B2 or P0</CodigoDelProceso>
            <CodigoDePaso>01 or 02 or 03 or 04 or 05 or 06 or 07 or 08 or 09 or 10 or 11 or 12 or 13 or 16</CodigoDePaso>
            <CodigoDeSolicitud>string</CodigoDeSolicitud>
            <SecuencialDeSolicitud>string</SecuencialDeSolicitud>
            <FechaSolicitud>dateTime</FechaSolicitud>
            <CUPS>string</CUPS>
          </Cabecera>
          <ValidacionCliente>
            <TipoIdentificador>NI or NV or OT or PS or NE</TipoIdentificador>
            <Identificador>string</Identificador>
          </ValidacionCliente>
        </MensajeSolicitudInformacionAlRegistroDePS>
      </Paso01>
    </sync>
  </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>
    <syncResponse xmlns="https://ws.grupcev.es/">
      <syncResult>xml</syncResult>
    </syncResponse>
  </soap12:Body>
</soap12:Envelope>