PATCH
/
conduit
/
dataset
/
{dataset_id:str}
curl --location --request PATCH 'https://api.automorphic.ai/conduit/dataset/{dataset_id:str}' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data-raw '{
    "name": "JoinTheDiscord"
}'
{
  "message": "SUCCESS"
}

Body

name
string

The name of the dataset

Response

message
string

“SUCCESS” will be printed if it successfully updated

curl --location --request PATCH 'https://api.automorphic.ai/conduit/dataset/{dataset_id:str}' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data-raw '{
    "name": "JoinTheDiscord"
}'
{
  "message": "SUCCESS"
}