Update case
tribeunal_update_caseUpdate a case's title or description after creation. Owner or admin can modify either field when the case is editable, with title locked if votes exist.
Instructions
Change a case's title and/or description after creation (owner or admin only) — send at least one. 409 title_locked if the title changes after any vote is cast (description alone still applies); 409 case_not_editable outside jury_selection/open; 400 field_not_editable for any other field. Logged as trial_updated; the url/slug never changes. Returns the updated case — same shape as tribeunal_get_case, keyed by {uuid, title, description, state, url, shareUrl}. Use tribeunal_close_case to end a case, tribeunal_delete_case if no votes were cast, tribeunal_update_side_image for a side's picture.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title, 3-200 characters (matching tribeunal_create_case). Refused with 409 title_locked if it differs from the current title and any vote has ever been cast on the case. | |
| caseId | Yes | The case's uuid field, from tribeunal_get_case or tribeunal_search_cases. | |
| description | No | New description, 0-10000 characters. At least one of title or description must be given. |