v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBCase Management Type
Update a case type
Updates the name, emoji, or description of an existing case type.
put/api/v2/cases/types/{case_type_id}
Path parameters
case_type_idstring required
The UUID of the case type.
Request body
Example request
{
"data": {
"attributes": {
"description": "Investigations done in case management",
"emoji": "🕵🏻♂️",
"name": "Investigation"
},
"type": "case_type"
}
}Response
OK
Example response
{
"data": {
"attributes": {
"description": "Investigations done in case management",
"emoji": "🕵🏻♂️",
"name": "Investigation"
},
"id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
"type": "case_type"
}
}