serviceLeyFACe_Encoded
Haga clic aquí para obtener una lista completa de operaciones.
consultarFactura
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 /ws/organismos/B/serviceLeyFACe.asmx HTTP/1.1 Host: fakturae.leioa.eus Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "https://webservice.face.gob.es#consultarFactura" <?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:consultarFactura> <numeroRegistro xsi:type="xsd:string">string</numeroRegistro> </tns:consultarFactura> </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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:consultarFacturaResponse> <consultarFacturaResult href="#id1" /> </tns:consultarFacturaResponse> <tns:ConsultarFacturaResponse id="id1" xsi:type="tns:ConsultarFacturaResponse"> <resultado href="#id2" /> <factura href="#id3" /> </tns:ConsultarFacturaResponse> <tns:Resultado id="id2" xsi:type="tns:Resultado"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <codigoSeguimiento xsi:type="xsd:string">string</codigoSeguimiento> </tns:Resultado> <tns:ConsultarFactura id="id3" xsi:type="tns:ConsultarFactura"> <numeroRegistro xsi:type="xsd:string">string</numeroRegistro> <tramitacion href="#id4" /> <anulacion href="#id5" /> </tns:ConsultarFactura> <tns:EstadoFactura id="id4" xsi:type="tns:EstadoFactura"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <motivo xsi:type="xsd:string">string</motivo> </tns:EstadoFactura> <tns:EstadoFactura id="id5" xsi:type="tns:EstadoFactura"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <motivo xsi:type="xsd:string">string</motivo> </tns:EstadoFactura> </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 /ws/organismos/B/serviceLeyFACe.asmx HTTP/1.1 Host: fakturae.leioa.eus 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:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding"> <tns:consultarFactura> <numeroRegistro xsi:type="xsd:string">string</numeroRegistro> </tns:consultarFactura> </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:soapenc="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="https://webservice.face.gob.es" xmlns:types="https://webservice.face.gob.es/encodedTypes" xmlns:rpc="http://www.w3.org/2003/05/soap-rpc" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body soap12:encodingStyle="http://www.w3.org/2003/05/soap-encoding"> <tns:consultarFacturaResponse> <rpc:result xmlns="">consultarFacturaResult</rpc:result> <consultarFacturaResult soapenc:id="id0" xsi:type="tns:ConsultarFacturaResponse"> <resultado soapenc:id="id1" xsi:type="tns:Resultado"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <codigoSeguimiento xsi:type="xsd:string">string</codigoSeguimiento> </resultado> <factura soapenc:id="id2" xsi:type="tns:ConsultarFactura"> <numeroRegistro xsi:type="xsd:string">string</numeroRegistro> <tramitacion soapenc:id="id3" xsi:type="tns:EstadoFactura"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <motivo xsi:type="xsd:string">string</motivo> </tramitacion> <anulacion soapenc:id="id4" xsi:type="tns:EstadoFactura"> <codigo xsi:type="xsd:string">string</codigo> <descripcion xsi:type="xsd:string">string</descripcion> <motivo xsi:type="xsd:string">string</motivo> </anulacion> </factura> </consultarFacturaResult> </tns:consultarFacturaResponse> </soap12:Body> </soap12:Envelope>