Skip to main content
PUT
/
api
/
v1
/
integration-definition
/
{provider}
/
amenity
Update amenity mapping
curl --request PUT \
  --url https://api.example.com/api/v1/integration-definition/{provider}/amenity \
  --header 'Content-Type: application/json' \
  --header 'x-calry-api-key: <api-key>' \
  --data '
{
  "amenityCategoryMapping": [
    {
      "id": "kitchen",
      "name": "Kitchen",
      "amenities": [
        {
          "id": "dishwasher",
          "name": "Dishwasher",
          "description": "Appliance for washing dishes",
          "providerNames": [
            "dishwasher",
            "dish_washer"
          ]
        }
      ],
      "description": "Amenities related to kitchen facilities"
    }
  ]
}
'

Authorizations

x-calry-api-key
string
header
required

Path Parameters

provider
enum<string>
required

The integration provider

Available options:
BOOKINGSYNC,
GUESTY,
HOSTAWAY,
HOSTFULLY,
HOSTIFY,
INTERHOME,
LODGIFY,
OWNERREZ,
HOSTHUB,
UPLISTING,
BEDS24,
HOST_TOOLS,
HOSTFULLYSANDBOX,
HOSPITABLE,
TOKEET

Body

application/json
amenityCategoryMapping
object[]
required

Mapping of amenity categories to provider-specific amenities

Response

Amenity mapping updated successfully