Skip to main content
GET
/
projects
/
{project_id}
/
feedback
curl -X GET "https://seggwat.com/api/v1/projects/550e8400-e29b-41d4-a716-446655440000/feedback?page=1&limit=10&status=New" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
{
  "feedback": [
    {
      "id": "507f1f77bcf86cd799439011",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "message": "The dashboard loads slowly on mobile devices",
      "status": "New",
      "type": "Bug",
      "source": "Widget",
      "created_at": "2024-01-15T10:30:00Z",
      "path": "/dashboard",
      "version": "1.2.3",
      "archived": false
    },
    {
      "id": "507f1f77bcf86cd799439012",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "message": "Would love to see dark mode support!",
      "status": "New",
      "type": "Feature",
      "source": "Widget",
      "created_at": "2024-01-14T15:45:00Z",
      "path": "/settings",
      "version": null,
      "archived": false
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 42,
    "total_pages": 5
  }
}

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.

Query Parameters

page
integer
default:"1"
Page number for pagination (1-indexed).
limit
integer
default:"20"
Number of items per page. Maximum: 100.
status
string
Filter by feedback status. Possible values:
  • 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
Filter by feedback type. Possible values:
  • Bug - Bug reports
  • Feature - Feature requests
  • Praise - Positive feedback
  • Question - User questions
  • Improvement - Improvement suggestions
  • Other - Other feedback
Search term to filter feedback by message content.

Response

feedback
array
Array of feedback items.
pagination
object
Pagination metadata.
curl -X GET "https://seggwat.com/api/v1/projects/550e8400-e29b-41d4-a716-446655440000/feedback?page=1&limit=10&status=New" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
{
  "feedback": [
    {
      "id": "507f1f77bcf86cd799439011",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "message": "The dashboard loads slowly on mobile devices",
      "status": "New",
      "type": "Bug",
      "source": "Widget",
      "created_at": "2024-01-15T10:30:00Z",
      "path": "/dashboard",
      "version": "1.2.3",
      "archived": false
    },
    {
      "id": "507f1f77bcf86cd799439012",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "message": "Would love to see dark mode support!",
      "status": "New",
      "type": "Feature",
      "source": "Widget",
      "created_at": "2024-01-14T15:45:00Z",
      "path": "/settings",
      "version": null,
      "archived": false
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 42,
    "total_pages": 5
  }
}