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.
Creates a new comment associated with a page on a site. Typically used by the widget, but can also be called from server-side integrations.
Requires authentication. The user must have access to the site.
Request body
Information about the user creating the comment.
UUID of the organisation the comment belongs to.
Display name for the user creating the comment.
User role, for example admin, member, or guest.
Information about the site the comment belongs to.
Site domain, for example example.com.
Priority level: LOW, MEDIUM, or HIGH. Default: MEDIUM.
Page context for the comment.
Full URL of the page the comment is on.
ISO 8601 timestamp in UTC, for example 2026-03-25T11:36:24.000Z.
{
"success": true,
"message": "Comment created successfully",
"data": {
"comment": {
"id": "990e8400-e29b-41d4-a716-446655440004",
"content": "The header looks misaligned on mobile.",
"status": "OPEN",
"priority": "HIGH",
"page_url": "https://example.com/home",
"created_at": "2026-03-02T12:00:00Z"
}
}
}