Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Your bot ID.
Query Parameters
Optional filters to narrow down the list by tags associated with tables.
Response
Returns a list of tables.
curl --request GET \
--url https://api.botpress.cloud/v1/tables \
--header 'Authorization: Bearer <token>' \
--header 'x-bot-id: <api-key>'{
"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"
}
]
}Retrieves a list of all tables associated with your bot.
curl --request GET \
--url https://api.botpress.cloud/v1/tables \
--header 'Authorization: Bearer <token>' \
--header 'x-bot-id: <api-key>'{
"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"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Your bot ID.
Optional filters to narrow down the list by tags associated with tables.
Show child attributes
Returns a list of tables.
Show child attributes
Was this page helpful?