curl --request GET \
--url https://api.axiom.co/v2/datasets/{dataset_id}/fields \
--header 'Authorization: Bearer <token>'
[
{
"description": "<string>",
"hidden": true,
"name": "<string>",
"type": "<string>",
"unit": "<string>"
}
]
The access token received from the authorization server in the OAuth 2.0 flow.
List of fields in the dataset
The response is of type object[]
.
curl --request GET \
--url https://api.axiom.co/v2/datasets/{dataset_id}/fields \
--header 'Authorization: Bearer <token>'
[
{
"description": "<string>",
"hidden": true,
"name": "<string>",
"type": "<string>",
"unit": "<string>"
}
]