> ## 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 mockup thread reply

> Update a mockup reply.

Updates a mockup reply. The current implementation only allows the reply author to edit it.

## Path parameters

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

## Request body

<ParamField body="content" type="string">
  Updated reply text.
</ParamField>

<ParamField body="is_private" type="boolean">
  Whether the reply is private.
</ParamField>

<ParamField body="mentions" type="array">
  Array of mentioned user IDs.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Reply updated successfully",
    "data": {
      "id": "thread-001",
      "content": "Updated: Use the approved darker green token here.",
      "is_private": false
    }
  }
  ```
</ResponseExample>
