> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update comment due date

> Set or clear a due date for a comment.

Sets or clears the due date for an existing comment.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the comment.
</ParamField>

## Request body

<ParamField body="due_date" type="string">
  Due date in a valid date format. Send `null` to clear the due date.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Due date updated successfully",
    "data": {
      "id": "990e8400-e29b-41d4-a716-446655440004",
      "due_date": "2026-04-15T00:00:00Z"
    }
  }
  ```
</ResponseExample>
