POST method to create hotel data custom fields.
| Name | Description |
|---|---|
| account_id required | Your account unique identifier to access API. |
| name required | Name for the field. |
| label | Human friendly label for the field. |
| description | Description for the custom field. |
| category | Category for the custom field. |
| is_url | If the custom field is a url,set to: true |
POST
/v2/account/:account_id/hotel_data_custom_fields
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: json
{
"name": "facebook_id",
"label": "ID on Facebook",
"category": "Social",
"description": "This field save the hotel data facebook id"
}
201
{
"_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
}