Hotel Data

Delete language

DELETE method to create/update language for hotel

Parameters

Name Description
account_id required Your account unique identifier to access API.
uuid required Unique identifier for hotel
language required Language of the hotel in ISO-2 format, Example: ES

Request

Route
DELETE 
/v2/account/:account_id/hotel_data/:uuid/remove_language
Headers
Accept: application/json 
Authorization: Token token={account.secret}
Content-Type: application/json

Query Parameters

language = ES

Response

Status
200
Body
{
  "hotel_data": {
    "name": "Hotel 2",
    "uuid": "hotel_2",
    "hotel_name": {
      "ES": "Nombre del hotel",
      "DE": "Name des Hotels"
    }
  }
}