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
}
}
Update a mockup 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
}
}
{
"success": true,
"message": "Reply updated successfully",
"data": {
"id": "thread-001",
"content": "Updated: Use the approved darker green token here.",
"is_private": false
}
}
Was this page helpful?