Create your restaurant
APIs for managing properties with OctoTable API
ℹ️ A restaurant is an entity that represents a dining establishment, serving as a container for rooms, tables, or other components. It allows customers to book within a specific venue, enabling management of bookings across multiple areas or locations.
⚙️ Use the base resource URL for the following examples, or see complete collection
🔍 Find all restaurants
GET
/properties
Get the list of properties see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
🔍 Find a restaurant
GET
/properties/{id}
Find property by id see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
🆕 Create a new restaurant
POST
/properties
Create new property see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
name
string
Name of the sandbox property
email
string
The email of the property
username
string
Username
password
string
Password
website
string
The website of the property
phone
string
The phone of the property
description
string
A brief description of the property
Response
🔄 Update a restaurant
PUT
/properties/{id}
Update the property see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
name
string
Name of the sandbox property
email
string
The email of the property
username
string
Username
password
string
Password
website
string
The website of the property
phone
string
The phone of the property
description
string
A brief description of the property
Response
🗑️ Delete a property
DELETE
/properties/{id}
Delete property by id see more
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
Last updated