v3

latestOpenAPI 3.0.3MIT2026-07-313881,2455.6 MB
Database tokens

Lists all the database tokens that belong to the authorized user. A token can be used to create, read, update and delete rows in the tables of the token's workspace. It only works on the tables if the token has the correct permissions. The Database table rows endpoints can be used for these operations.

get/api/database/tokens/

Response

idinteger required
namestring required

The human readable name of the database token for the user.

workspaceinteger required

Only the tables of the workspace can be accessed.

keystring required

The unique token key that can be used to authorize for the table row endpoints.

Example response

[
  {
    "permissions": {
      "create": true,
      "read": true,
      "update": true,
      "delete": true
    }
  }
]