DELETE method to create/update language for hotel
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 |
DELETE
/v2/account/:account_id/hotel_data/:uuid/remove_language
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: application/json
language = ES
200
{
"hotel_data": {
"name": "Hotel 2",
"uuid": "hotel_2",
"hotel_name": {
"ES": "Nombre del hotel",
"DE": "Name des Hotels"
}
}
}