Create your restaurant
APIs for managing properties with OctoTable API
Last updated
APIs for managing properties with OctoTable API
Last updated
ℹ️ 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
GET
/properties
Get the list of properties
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
GET
/properties/{id}
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
POST
/properties
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
PUT
/properties/{id}
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
/properties/{id}
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
Find property by id
Create new property
Update the property
Delete property by id