curl --request PATCH \
--url https://api.example.com/api/v1/datasets/{dataset_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"description": "<string>",
"artifact_types": [
{
"name": "<string>",
"description": "<string>",
"color": "#FF0000"
}
]
}
'