curl --request GET \
--url https://api.surefeedback.com/api/v1/mockup-comments \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": {
"data": [
{
"id": "...",
"content": "The button color should be darker.",
"status": "open",
"priority": "medium",
"x_position": 45.2,
"y_position": 30.1,
"created_by": { "name": "Jane Smith" },
"created_at": "2026-03-01T10:00:00Z"
}
],
"total": 5
}
}
List and create comments on a mockup.
curl --request GET \
--url https://api.surefeedback.com/api/v1/mockup-comments \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": {
"data": [
{
"id": "...",
"content": "The button color should be darker.",
"status": "open",
"priority": "medium",
"x_position": 45.2,
"y_position": 30.1,
"created_by": { "name": "Jane Smith" },
"created_at": "2026-03-01T10:00:00Z"
}
],
"total": 5
}
}
10.1.{
"success": true,
"data": {
"data": [
{
"id": "...",
"content": "The button color should be darker.",
"status": "open",
"priority": "medium",
"x_position": 45.2,
"y_position": 30.1,
"created_by": { "name": "Jane Smith" },
"created_at": "2026-03-01T10:00:00Z"
}
],
"total": 5
}
}
Was this page helpful?