curl --request PUT \
--url https://nvidia.casebender.com/api/v1/custom-fields/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"required": true
}
'Update an existing custom field definition (admin only)
curl --request PUT \
--url https://nvidia.casebender.com/api/v1/custom-fields/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"required": true
}
'