PUT method to update hotel data custom fields.
| Name | Description |
|---|---|
| account_id required | Your account unique identifier to access API. |
| custom_id required | Id of custom |
| category | Category for the custom field. |
| label | Human friendly label for the field. |
| description | Description for the custom field. |
| is_url | If the custom field is an url, set it to: true |
PUT
/v2/account/:account_id/hotel_data_custom_fields/:custom_id
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: json
{
"label": "ID on Facebook",
"category": "Social",
"description": "This field save the hotel data facebook id"
}
200
{
"_id": "5853d8c2edb7aacab9000045",
"category": "Social",
"name": "facebook_id",
"label": "ID on Facebook",
"description": "This field save the hotel data facebook id",
"type": "string",
"is_url": false
}