### Get Companies Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of companies. ```APIDOC ## GET /api/v2/{account_id}/companies ### Description Get a list of companies. ### Method GET ### Endpoint /api/v2/{account_id}/companies ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Places Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of places. ```APIDOC ## GET /api/v2/{account_id}/places ### Description Get a list of places. ### Method GET ### Endpoint /api/v2/{account_id}/places ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Sale Channels Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of sale channels. ```APIDOC ## GET /api/v2/{account_id}/sale_channels ### Description Get a list of sale channels. ### Method GET ### Endpoint /api/v2/{account_id}/sale_channels ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Reservations Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of reservations. ```APIDOC ## GET /api/v2/{account_id}/reservations ### Description Get a list of reservations. ### Method GET ### Endpoint /api/v2/{account_id}/reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Place Types Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of place types. ```APIDOC ## GET /api/v2/{account_id}/place_types ### Description Get a list of place types. ### Method GET ### Endpoint /api/v2/{account_id}/place_types ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Selling Points Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of selling points. ```APIDOC ## GET /api/v2/{account_id}/selling_points ### Description Get a list of selling points. ### Method GET ### Endpoint /api/v2/{account_id}/selling_points ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Place Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific place by its ID. ```APIDOC ## GET /api/v2/{account_id}/places/{id} ### Description Get a specific place by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/places/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the place. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Reservation Sales Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves sales for a specific reservation. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/sales ### Description Get sales for a specific reservation. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/sales ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Rates and Availabilities for Place Type Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves rates and availabilities for a specific place type. ```APIDOC ## GET /api/v2/{account_id}/place_types/{place_type_id}/rates_and_availabilities ### Description Get rates and availabilities for a specific place type. ### Method GET ### Endpoint /api/v2/{account_id}/place_types/{place_type_id}/rates_and_availabilities ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **place_type_id** (string) - Required - The ID of the place type. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Guest Reservations Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves guest reservations for a specific reservation. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations ### Description Get guest reservations for a specific reservation. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Company Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific company by its ID. ```APIDOC ## GET /api/v2/{account_id}/companies/{id} ### Description Get a specific company by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/companies/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the company. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Send Request using Curl Source: https://pms.hospedin.com/api-docs/index.html#description/introduction This snippet demonstrates how to send a request to the API using Curl. Ensure you have Curl installed and replace placeholders with your actual API endpoint and data. ```shell curl \ --request GET \ --url 'https://api.example.com/users' \ --header 'accept: application/json' \ --header 'authorization: Bearer YOUR_API_TOKEN' ``` -------------------------------- ### Get Rate Reservations Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves rate reservations for a specific reservation. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations ### Description Get rate reservations for a specific reservation. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific reservation by its ID. ```APIDOC ## GET /api/v2/{account_id}/reservations/{id} ### Description Get a specific reservation by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Transaction Categories Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of transaction categories. ```APIDOC ## GET /api/v2/{account_id}/transaction_categories ### Description Get a list of transaction categories. ### Method GET ### Endpoint /api/v2/{account_id}/transaction_categories ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Sale Channel Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific sale channel by its ID. ```APIDOC ## GET /api/v2/{account_id}/sale_channels/{id} ### Description Get a specific sale channel by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/sale_channels/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the sale channel. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Selling Point Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific selling point by its ID. ```APIDOC ## GET /api/v2/{account_id}/selling_points/{id} ### Description Get a specific selling point by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/selling_points/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the selling point. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Reservation Transactions Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves transactions for a specific reservation. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions ### Description Get transactions for a specific reservation. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Reservation Sale Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific sale by its ID for a reservation. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Description Get a specific sale by its ID for a reservation. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the sale. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Place Type Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific place type by its ID. ```APIDOC ## GET /api/v2/{account_id}/place_types/{id} ### Description Get a specific place type by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/place_types/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the place type. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Account Transaction List Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a list of account transactions for a given account. ```APIDOC ## GET /api/v2/{account_id}/account_transactions ### Description Get account transaction list. ### Method GET ### Endpoint /api/v2/{account_id}/account_transactions ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Transaction Category Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific transaction category by its ID. ```APIDOC ## GET /api/v2/{account_id}/transaction_categories/{id} ### Description Get a specific transaction category by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/transaction_categories/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the transaction category. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Reservation Transaction Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific reservation transaction by its ID. ```APIDOC ## GET /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Description Get a specific reservation transaction by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the reservation transaction. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Get Specific Account Transaction Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Retrieves a specific account transaction by its ID. ```APIDOC ## GET /api/v2/{account_id}/account_transactions/{id} ### Description Get a specific account transaction by its ID. ### Method GET ### Endpoint /api/v2/{account_id}/account_transactions/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the account transaction. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Session Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a new authentication session. ```APIDOC ## POST /api/v2/authentication/sessions ### Description Creates a new authentication session. ### Method POST ### Endpoint /api/v2/authentication/sessions ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a new reservation. ```APIDOC ## POST /api/v2/{account_id}/reservations ### Description Create a new reservation. ### Method POST ### Endpoint /api/v2/{account_id}/reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Company Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a new company. ```APIDOC ## POST /api/v2/{account_id}/companies ### Description Create a new company. ### Method POST ### Endpoint /api/v2/{account_id}/companies ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Send Request using Control Source: https://pms.hospedin.com/api-docs/index.html#description/introduction This snippet shows how to send a request using the 'Control' interface. This is useful for interactive testing and debugging. ```text ctrlControl ↵Enter ``` -------------------------------- ### Create Guest Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a guest reservation for a specific reservation. ```APIDOC ## POST /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations ### Description Create a guest reservation for a specific reservation. ### Method POST ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Reservation Sale Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a sale for a specific reservation. ```APIDOC ## POST /api/v2/{account_id}/reservations/{reservation_id}/sales ### Description Create a sale for a specific reservation. ### Method POST ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/sales ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Rate Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a rate reservation for a specific reservation. ```APIDOC ## POST /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations ### Description Create a rate reservation for a specific reservation. ### Method POST ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Create Reservation Transaction Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Creates a transaction for a specific reservation. ```APIDOC ## POST /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions ### Description Create a transaction for a specific reservation. ### Method POST ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Update Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Updates an existing reservation. ```APIDOC ## PATCH /api/v2/{account_id}/reservations/{id} ### Description Update an existing reservation. ### Method PATCH ### Endpoint /api/v2/{account_id}/reservations/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Update Company Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Updates an existing company. ```APIDOC ## PATCH /api/v2/{account_id}/companies/{id} ### Description Update an existing company. ### Method PATCH ### Endpoint /api/v2/{account_id}/companies/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the company. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Update Reservation Sale Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Updates an existing sale for a reservation. ```APIDOC ## PATCH /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Description Update an existing sale for a reservation. ### Method PATCH ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the sale. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Delete Guest Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Deletes a guest reservation by its ID. ```APIDOC ## DELETE /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations/{id} ### Description Delete a guest reservation by its ID. ### Method DELETE ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/guest_reservations/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the guest reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Update Rate Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Updates an existing rate reservation. ```APIDOC ## PATCH /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations/{id} ### Description Update an existing rate reservation. ### Method PATCH ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the rate reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Delete Company Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Deletes a company by its ID. ```APIDOC ## DELETE /api/v2/{account_id}/companies/{id} ### Description Delete a company by its ID. ### Method DELETE ### Endpoint /api/v2/{account_id}/companies/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **id** (string) - Required - The ID of the company. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Update Reservation Transaction Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Updates an existing reservation transaction. ```APIDOC ## PATCH /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Description Update an existing reservation transaction. ### Method PATCH ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the reservation transaction. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Delete Reservation Sale Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Deletes a sale by its ID for a reservation. ```APIDOC ## DELETE /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Description Delete a sale by its ID for a reservation. ### Method DELETE ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/sales/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the sale. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Delete Rate Reservation Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Deletes a rate reservation by its ID. ```APIDOC ## DELETE /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations/{id} ### Description Delete a rate reservation by its ID. ### Method DELETE ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/rate_reservations/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the rate reservation. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` -------------------------------- ### Delete Reservation Transaction Source: https://pms.hospedin.com/api-docs/index.html#description/introduction Deletes a reservation transaction by its ID. ```APIDOC ## DELETE /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Description Delete a reservation transaction by its ID. ### Method DELETE ### Endpoint /api/v2/{account_id}/reservations/{reservation_id}/reservation_transactions/{id} ### Parameters #### Path Parameters - **account_id** (string) - Required - The ID of the account. - **reservation_id** (string) - Required - The ID of the reservation. - **id** (string) - Required - The ID of the reservation transaction. #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **field1** (type) - Description #### Response Example { "example": "response body" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.