put http://<host>:9100/api/versioned/v1/datasets/
Update the external ID, primary key fields and descriptions of dataset.
Request Body Requirements
The PUT request body must include the attribute
externalId
. The value of this attribute must be unique across all dataset external ID values.To confirm the current value of
externalId
for a givendatasetId
, call GET /v1/datasets/{datasetId}.
Example PUT
request body:
{
"externalId": "my-new-unique-external-id-value",
"keyAttributeNames": ["F1"],
"description": "Even more data in here than before"
}
Response Fields
Returns a dataset object describing the updated dataset.