v1
latestOpenAPI 3.0.02026-07-2494288373.8 KBCases
Update a case
Update case properties.
See also
Learn more about Cases
Learn more about Templates
patch/v1/cases/{id}
Path parameters
idstring required
Update a case by its Dotfile internal id first and if not found, by its external_id.
Request body
Example request
{
"custom_properties": {
"custom_text": "Custom properties text",
"custom_boolean": true,
"custom_date": "2012-12-12",
"custom_countries": [
"FR"
],
"custom_choices": [
"option1",
"option2"
],
"custom_numeric": 12.3,
"custom_property": null
},
"metadata": {
"custom_key": "true",
"my_data": "this is important",
"count": "42"
}
}Response
ℹ️ Click to see full payload
Example response
{
"custom_properties": {
"custom_text": "Custom properties text",
"custom_boolean": true,
"custom_date": "2012-12-12",
"custom_countries": [
"FR"
],
"custom_choices": [
"option1",
"option2"
],
"custom_numeric": 12.3,
"custom_property": null
}
}