Skip to main content
GET
/
tables
/
{tableId}
/
columns
List a table's columns
curl --request GET \
  --url https://origami.chat/api/v2/tables/{tableId}/columns \
  --header 'Authorization: Bearer <token>'
{
  "columns": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "slug": "<string>",
      "autoTrigger": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string<uuid>
required

Response

Column list (id, name, slug, kind, autoTrigger).

columns
object[]
required