v1

latestOpenAPI 3.1.0Apache 2.02026-07-2685126228.9 KB
Columns

List all Columns

Get all the Columns in a dataset or environment. Use __all__ as the dataset slug to retrieve all Columns across all datasets in the environment (not available for classic environments).

get/1/columns/{datasetSlug}

Query parameters

key_namestring

the column key name

Response

When listing all columns, an array of Column objects will be returned. When using key_name, will return a single Column object if found.

OR

Example response

[
  {
    "key_name": "my_column",
    "type": "integer",
    "description": "An integer column"
  }
]