PUT
/
datasets
/
{id}
/
fields
/
{fieldId}
curl --request PUT \
  --url https://api.axiom.co/v2/datasets/{id}/fields/{fieldId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "hidden": true,
  "name": "<string>",
  "type": "<string>",
  "unit": "<string>"
}'
{
  "description": "<string>",
  "hidden": true,
  "name": "<string>",
  "type": "<string>",
  "unit": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required
fieldId
string
required

Body

application/json

Response

200 - application/json
DatasetField

The response is of type object.