Skip to main content
GET
/
projects
/
{project_id}
/
feedback
/
{feedback_id}
curl -X GET "https://seggwat.com/api/v1/projects/550e8400-e29b-41d4-a716-446655440000/feedback/507f1f77bcf86cd799439011" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
{
  "id": "507f1f77bcf86cd799439011",
  "project_id": "550e8400-e29b-41d4-a716-446655440000",
  "message": "The dashboard loads slowly on mobile devices. Specifically, the charts take over 5 seconds to render on my iPhone 12.",
  "status": "Active",
  "type": "Bug",
  "source": "Widget",
  "created_at": "2024-01-15T10:30:00Z",
  "path": "/dashboard",
  "version": "1.2.3",
  "archived": false
}

Authentication

X-API-Key
string
required
Your Organization Access Token. See Authentication for details.

Path Parameters

project_id
string
required
The unique identifier of the project. You can find this in the dashboard under project settings.
feedback_id
string
required
The unique identifier of the feedback item.

Response

id
string
Unique identifier for the feedback item.
project_id
string
The project this feedback belongs to.
message
string
The feedback message content.
status
string
Current status of the feedback:
  • New - Newly submitted feedback
  • Active - Currently being reviewed
  • Assigned - Assigned to a team member
  • Hold - On hold for later
  • Closed - Closed without resolution
  • Resolved - Successfully resolved
type
string
Type of feedback:
  • Bug - Bug reports
  • Feature - Feature requests
  • Praise - Positive feedback
  • Question - User questions
  • Improvement - Improvement suggestions
  • Other - Other feedback
source
string
Where the feedback originated:
  • Widget - Submitted via the feedback widget
  • Manual - Manually created in dashboard
  • Mintlify - Submitted from Mintlify docs
  • Stripe - Customer feedback from Stripe
created_at
string
ISO 8601 timestamp when the feedback was created.
path
string
The URL path where the feedback was submitted (if available).
version
string
Application version when feedback was submitted (if tracked via the widget’s data-version attribute).
archived
boolean
Whether the feedback has been archived.
curl -X GET "https://seggwat.com/api/v1/projects/550e8400-e29b-41d4-a716-446655440000/feedback/507f1f77bcf86cd799439011" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
{
  "id": "507f1f77bcf86cd799439011",
  "project_id": "550e8400-e29b-41d4-a716-446655440000",
  "message": "The dashboard loads slowly on mobile devices. Specifically, the charts take over 5 seconds to render on my iPhone 12.",
  "status": "Active",
  "type": "Bug",
  "source": "Widget",
  "created_at": "2024-01-15T10:30:00Z",
  "path": "/dashboard",
  "version": "1.2.3",
  "archived": false
}