GET
/
v1
/
tables
/
{table}
curl --request GET \
  --url https://api.botpress.cloud/v1/tables/{table}
{
  "table": {
    "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"
  },
  "rows": 123,
  "stale": 123,
  "indexing": 123
}

Path Parameters

table
string
required

The table's name or unique identifier for targeting specific table operations.

Response

200
application/json

Details of the requested table, including row count and indexing status.

The response is of type object.