Skip to main content
GET
/
v1
/
tables
cURL
curl --request GET \
  --url https://api.botpress.cloud/v1/tables \
  --header 'Authorization: Bearer <token>' \
  --header 'x-bot-id: <x-bot-id>'
{
  "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.

Headers

x-bot-id
string
required

Bot id

x-integration-id
string

Integration id

x-integration-alias
string

Integration alias

x-integration-name
string

Integration name

x-user-id
string

User Id

x-user-role
string

User Role

Query Parameters

tags
object

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

Response

Returns a list of tables.

tables
object[]
required