/datasets/{datasetId}/columns/{columnId} (DEPRECATED)

Get a column in a dataset.

Important: The Batch Data Extract and Dataset V2 endpoints should be used instead of the Datasets endpoints.
  • Batch Data Extract endpoints return a complete export of activity and profile variable data.
  • Datasets V2 endpoints allows you to select specific activities or profile variables.

Resource URL

/v1/applications/{communityApiKeyName}/datasets/{datasetId}/columns/{columnId}

Note:

Use the appropriate regional endpoint to ensure that you comply with your organization's privacy policy, and applicable laws and regulations. For details about the available regional endpoints, and how to identify your organization's region, see API Access.

Available methods

Method Description
GET Returns a column.

Available fields

Field Description
dataType The value type for the column. The value may appear as a string or an URN.
href Points to the column ID in the dataset.
id The GUID for the given column in the dataset.
labels The question text as it appears in the survey.
link This field will always be empty.
name The string name for the column as it appears in the dataset.
GET response structure

{
   "id": <GUID for the column>,
   "name": <column name>,
   "dataType": <constructor of data type>,
   "labels": [
      {
         "text": "<question text>"
      }
   ],
   "links": [],
   "href": "https://api.{region}.alida.com/v1/applications/{communityApiKeyName}/datasets/{datasetId}/columns/{columnId}"
}