GET
/
tables
/
{fullTableName}
/
columns
List columns
curl --request GET \
  --url https://api.fluxend.app/tables/{fullTableName}/columns \
  --header 'Authorization: <authorization>' \
  --header 'X-Project: <x-project>'
{
  "content": [
    {
      "defaultValue": "<string>",
      "foreign": true,
      "name": "<string>",
      "notNull": true,
      "position": 123,
      "primary": true,
      "referenceColumn": "<string>",
      "referenceTable": "<string>",
      "type": "<string>",
      "unique": true
    }
  ],
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Response

200
application/json

List of columns

The response is of type object.