Skip to main content
PUT
/
mockup-threads
/
{id}
Update mockup thread reply
curl --request PUT \
  --url https://api.surefeedback.com/api/v1/mockup-threads/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "content": "<string>",
  "is_private": true,
  "mentions": [
    {}
  ]
}
'
{
  "success": true,
  "message": "Reply updated successfully",
  "data": {
    "id": "thread-001",
    "content": "Updated: Use the approved darker green token here.",
    "is_private": false
  }
}
Updates a mockup reply. The current implementation only allows the reply author to edit it.

Path parameters

id
string
required
UUID of the mockup reply.

Request body

content
string
Updated reply text.
is_private
boolean
Whether the reply is private.
mentions
array
Array of mentioned user IDs.
{
  "success": true,
  "message": "Reply updated successfully",
  "data": {
    "id": "thread-001",
    "content": "Updated: Use the approved darker green token here.",
    "is_private": false
  }
}