Skip to main content
POST
/
mockup-threads
Create mockup thread reply
curl --request POST \
  --url https://api.surefeedback.com/api/v1/mockup-threads \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "comment_id": "<string>",
  "content": "<string>",
  "is_private": true,
  "mentions": [
    {}
  ],
  "attachment_ids": [
    {}
  ]
}
'
{
  "success": true,
  "message": "Reply created successfully",
  "data": {
    "id": "thread-001",
    "comment_id": "220e8400-e29b-41d4-a716-44665544000c",
    "content": "Use the darker green from the design system here.",
    "is_private": false
  }
}
Creates a reply for a mockup comment.

Request body

comment_id
string
required
UUID of the parent mockup comment.
content
string
Reply text content. Required when no attachments are provided.
is_private
boolean
Whether the reply is private. Default: false.
mentions
array
Array of mentioned user IDs.
attachment_ids
array
Attachment IDs to associate with the reply. At least one of content or attachment_ids must be provided.
{
  "success": true,
  "message": "Reply created successfully",
  "data": {
    "id": "thread-001",
    "comment_id": "220e8400-e29b-41d4-a716-44665544000c",
    "content": "Use the darker green from the design system here.",
    "is_private": false
  }
}