Update Subtask (lawmatics_update-subtask)
Update a subtask (checklist item) on a Lawmatics task. Provide the text content, the completion status, or both; an omitted field keeps its current value. Returns a `relationships` envelope with an {id,type} pointer to the parent task.
Tool Input
taskIdstringrequired— ID of the parent task the subtask belongs to; a numeric string(pattern: ^\d+$)
subtaskIdstringrequired— ID of the subtask to update; a numeric string(pattern: ^\d+$)
bodystring— New text content of the subtask
doneboolean— Completion status; true marks the subtask done
Tool Output
idstringrequired— Unique ID of the subtask
bodystringrequired— Text content of the subtask
orderintegerrequired— Read-only zero-based position of the subtask within the parent task's checklist
donebooleanrequired— Whether the subtask is completed
createdAtstringrequired— When the subtask was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the subtask was last updated, as an ISO 8601 timestamp
relationshipsobjectrequired— JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow the pointer by calling that resource's own tool (type 'task' -> get-task).
taskobjectnullrequired— Parent task pointer (type 'task'); null when unreported
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
Related Tools