Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Staging : https://staging.hotel-spider.ch/soap/OTA/OTAService/wsdl

Production : https://stagingextranet.hotel-spider.ch/soap/OTA/OTAService/wsdl

...

Code Block
languagexml
<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:oas="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns:oas1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
    xmlns:ns="http://www.opentravel.org/OTA/2003/05">
    <soapenv:Header>
        <oas:Security>
            <oas:UsernameToken>
                <oas:Username>LOGIN</oas:Username>
                <oas:Password>PASSWORD</oas:Password>
            </oas:UsernameToken>
        </oas:Security>
    </soapenv:Header>
    <soapenv:Body>
        <ns:OTA_ReadRQ >
            <ns:ReadRequests>
                <ns:HotelReadRequest HotelCode="" HotelName="">
                    <ns:SelectionCriteria SelectionType="Undelivered" DateType="" Start="" End="" />
                </ns:HotelReadRequest>
            </ns:ReadRequests>
        </ns:OTA_ReadRQ>
    </soapenv:Body>
</soapenv:Envelope>

 

...