Pacificbedbank Resorts API
  1. ResortServiceSoap
Pacificbedbank Resorts API
  • ResortServiceSoap
    • GetAuthCredentials
      POST
    • GetAvailability
      POST
    • GetBookings
      POST
    • GetCancellations
      POST
    • GetAmendedBookings
      POST
    • AddAvailability
      POST
    • AmendAvailability
      POST
    • AddMulAvail
      POST
    • AmdMultipleAvail
      POST
    • AvailabilityOnly
      POST
    • Availability
      POST
    • AddAvailOnly
      POST
    • AmdAvailOnly
      POST
    • MultipleAvail
      POST
    • AddAvailPriceOnly
      POST
    • AmdAvailPriceOnly
      POST
    • AvailPriceOnly
      POST
  1. ResortServiceSoap

GetAvailability

POST
/resorts.asmx
Get Availability for a resort for the specified period

Request

Header Params

Body Params application/xml

Examples

Responses

🟢200GetAvailability response
application/xml
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/resorts.asmx' \
--header 'SOAPAction: http://tempuri.org/GetAvailability' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data-raw '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <tns:GetAvailability xmlns:tns="http://tempuri.org/">
      <tns:Username>string</tns:Username>
      <tns:Password>string</tns:Password>
      <tns:RoomType>string</tns:RoomType>
      <tns:StartDate>2025-04-04T00:57:55.256Z</tns:StartDate>
      <tns:EndDate>2025-04-04T00:57:55.256Z</tns:EndDate>
    </tns:GetAvailability>
  </soap:Body>
</soap:Envelope>'
Response Response Example
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <tns:GetAvailabilityResponse xmlns:tns="http://tempuri.org/">
      <tns:GetAvailabilityResult>
        <tns:s:schema/>
      </tns:GetAvailabilityResult>
    </tns:GetAvailabilityResponse>
  </soap:Body>
</soap:Envelope>
Previous
GetAuthCredentials
Next
GetBookings
Built with