Graph API Version

    Hotel Hotel Rooms

    Reading

    You can't perform this operation on this endpoint.

    Creating

    Example to create a hotel room type with multiple price configurations:

    curl \
    -X POST \
    -F "room_id=r_3" \
    -F "name=Sample room type" \
    -F "description=room type description" \
    -F "base_price=159" \
    -F "currency=USD" \
    -F "url=http://www.example.com/sampleroom" \
    -F "price= [ \
      { \
        'check_in_date':'2016-04-01', \
        'fees':10, \
        'nights':1, \
        'price':170, \
        'tax':14 \
      }, \
      { \
        'check_in_date':'2016-04-01', \
        'fees':10, \
        'nights':5, \
        'price':130, \
        'tax':10 \
      } \
    ]" \
    -F "access_token=<ACCESS_TOKEN>" \
    https://graph.facebook.com/<API_VERSION>/<HOTEL_ID>/hotel_rooms

    Please note that we support one roome type per hotel currently.

    You can't perform this operation on this endpoint.

    Updating

    You can't perform this operation on this endpoint.

    Deleting

    You can't perform this operation on this endpoint.