curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-boards.list' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
"data": [
{
"id": "board-uuid-1",
"name": "Feature Requests",
"slug": "feature-requests",
"description": "Suggest new features and improvements",
"teamId": "team-uuid",
"order": 1,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#3B82F6"
},
"feedbackCount": 142,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-2",
"name": "Bug Reports",
"slug": "bug-reports",
"description": "Report bugs and issues",
"teamId": "team-uuid",
"order": 2,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#EF4444"
},
"feedbackCount": 67,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-3",
"name": "General Feedback",
"slug": "general-feedback",
"description": "Share your thoughts and ideas",
"teamId": "team-uuid",
"order": 3,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": true,
"color": "#10B981"
},
"feedbackCount": 89,
"createdAt": "2024-01-01T00:00:00Z"
}
]
}
Get all public feedback boards for the team. Boards are used to organize feedback by category or type.
curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-boards.list' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
"data": [
{
"id": "board-uuid-1",
"name": "Feature Requests",
"slug": "feature-requests",
"description": "Suggest new features and improvements",
"teamId": "team-uuid",
"order": 1,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#3B82F6"
},
"feedbackCount": 142,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-2",
"name": "Bug Reports",
"slug": "bug-reports",
"description": "Report bugs and issues",
"teamId": "team-uuid",
"order": 2,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#EF4444"
},
"feedbackCount": 67,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-3",
"name": "General Feedback",
"slug": "general-feedback",
"description": "Share your thoughts and ideas",
"teamId": "team-uuid",
"order": 3,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": true,
"color": "#10B981"
},
"feedbackCount": 89,
"createdAt": "2024-01-01T00:00:00Z"
}
]
}
Authorization: Bearer YOUR_API_KEY
Show Board Object
curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-boards.list' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
{
"data": [
{
"id": "board-uuid-1",
"name": "Feature Requests",
"slug": "feature-requests",
"description": "Suggest new features and improvements",
"teamId": "team-uuid",
"order": 1,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#3B82F6"
},
"feedbackCount": 142,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-2",
"name": "Bug Reports",
"slug": "bug-reports",
"description": "Report bugs and issues",
"teamId": "team-uuid",
"order": 2,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": false,
"color": "#EF4444"
},
"feedbackCount": 67,
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": "board-uuid-3",
"name": "General Feedback",
"slug": "general-feedback",
"description": "Share your thoughts and ideas",
"teamId": "team-uuid",
"order": 3,
"meta": {
"isPublic": true,
"allowPublicSubmissions": true,
"requireModeration": true,
"color": "#10B981"
},
"feedbackCount": 89,
"createdAt": "2024-01-01T00:00:00Z"
}
]
}
order fieldWas this page helpful?