index

getPropertyContent JSON


Instructions

Post JSON data here to get property content information.

The parameters texts, roomIds and images specify the type of data to return.

See here for information about using the JSON API.

Example Data

Get Texts in specified Language

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "texts": [
        "EN"
    ]
}

Get Texts in multiple Languages

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "texts": [
        "EN",
        "DE",
        "FR"
    ]
}

Get a RoomId

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "roomIds": [
        123456
    ]
}

Get a Multiple RoomId's

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "roomIds": [
        123456,
        123457,
        123458
    ]
}

Get Images

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "images": true
}

Get All Data

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings",
        "propKey": "propKeyAsSetForTheProperty"
    },
    "bookingData": true,
    "images": true,
    "roomIds": true,
    "texts": true,
    "includeAirbnb": true,
    "includeVrbo": true
}