GET
/
v1
/
tables
cURL
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

x-bot-id
string
header
required

Your bot ID.

Query Parameters

tags
object

Optional filters to narrow down the list by tags associated with tables.

Response

200
application/json

Returns a list of tables.

tables
object[]
required