List all fields in dataset
List all fields in dataset.
GET
/v2/datasets/{dataset_id}/fieldsFeatures
Send the token in the Authorization: Bearer API_TOKEN header. See Tokens for which token types this endpoint accepts.
Input1
Sent from your browser straight to the API — never to Docsbook, never stored.
(path)
Output5
Description of the field
Whether the field is hidden
Name of the field
Type of the field
Unit of the field
Responses
200List of fields in the dataset
403Forbidden
Example input
curl 'https://api.axiom.co/v2/datasets/{dataset_id}/fields' \
-H 'Authorization: Bearer API_TOKEN'Example output
[
{
"description": "string",
"hidden": false,
"name": "string",
"type": "string",
"unit": "string"
}
]