action hetras_certification_bookings_get_bookings_count { label: "Get total count of bookings matchung the given filter criteria." description: "Get the count of all bookings matching your criteria. The bookings have to fullfill all the specified criteria \n at the same time. So if you specify a customer name and a channel code you will get the count for all bookings where the firstname or lastname \n of a guest or a contact contains the specified value and that have been done through the defined channel." provider: hetras_certification method: GET path: "/api/booking/v0/bookings/$count" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } blockCode: { type: "string" } cancellationId: { type: "string" } channelCodes: { type: "string" } companyEmail: { type: "string" } companyId: { type: "string" } companyName: { type: "string" } customerEmail: { type: "string" } customerId: { type: "string" } customerName: { type: "string" } dateFilter: { type: "string" } exclude: { type: "string" } externalId: { type: "string" } from: { type: "string" } hotelId: { type: "string" } labels: { type: "string" } marketCodes: { type: "string" } ratePlanCodes: { type: "string" } reservationNumber: { type: "string" } reservationStatuses: { type: "string" } roomNumber: { type: "string" } roomTypes: { type: "string" } subChannelCodes: { type: "string" } to: { type: "string" } } required: ["App-Id", "App-Key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }