Chat API
- Introduction
- Endpoints
Admin API
- Getting started
- Concepts
- Endpoints
Files API
Tables API
Runtime API
- Getting Started
- Concepts
- Endpoints
listTables
Retrieves a list of all tables associated with your bot.
GET
/
v1
/
tables
curl --request GET \
--url https://api.botpress.cloud/v1/tables
{
"tables": [
{
"id": "<string>",
"name": "<string>",
"factor": 1,
"frozen": true,
"schema": {
"$schema": "<string>",
"properties": {},
"additionalProperties": true,
"required": [
"<string>"
],
"type": "object"
},
"tags": {},
"isComputeEnabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Query Parameters
Optional filters to narrow down the list by tags associated with tables.
Response
200
application/json
Returns a list of tables.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.botpress.cloud/v1/tables
{
"tables": [
{
"id": "<string>",
"name": "<string>",
"factor": 1,
"frozen": true,
"schema": {
"$schema": "<string>",
"properties": {},
"additionalProperties": true,
"required": [
"<string>"
],
"type": "object"
},
"tags": {},
"isComputeEnabled": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}