GET
/
v1
/
tables
/
{table}
/
row
cURL
curl --request GET \
  --url https://api.botpress.cloud/v1/tables/{table}/row \
  --header 'Authorization: Bearer <token>' \
  --header 'x-bot-id: <api-key>'
{
  "row": {
    "id": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "computed": {},
    "stale": [
      "<string>"
    ],
    "similarity": 123
  }
}

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.

Path Parameters

table
string
required

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

Query Parameters

id
integer
required

Identifier of the row within the table.

Response

200
application/json

The requested row object.

row
object
required