curl --location --request POST 'https://api.yourapp.com/v1/public/feedbacks.info' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "feedbackId": "feedback-uuid" }'
{ "data": { "id": "feedback-uuid", "urlId": "abc123def456", "url": "/add-dark-mode-support-abc123def456", "title": "Add dark mode support", "text": "It would be great to have a dark mode option for the dashboard.", "status": "planned", "priority": "high", "boardId": "board-uuid", "board": { "id": "board-uuid", "name": "Feature Requests", "slug": "feature-requests" }, "creatorId": "subscriber-uuid", "subscriber": { "id": "subscriber-uuid", "name": "John Doe", "email": "john@example.com", "avatarUrl": "https://example.com/avatar.jpg" }, "teamId": "team-uuid", "feedbackVotesCount": 42, "feedbackCommentsCount": 12, "tags": [ { "id": "tag-uuid", "name": "UI/UX", "color": "#3B82F6" } ], "meta": {}, "publishedAt": "2024-01-15T10:30:00Z", "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-20T14:22:00Z", "archivedAt": null } }
Get detailed information about a specific feedback item including creator, votes, comments, and metadata.
Authorization: Bearer YOUR_API_KEY
feedbackId
urlId
Show Feedback Properties
Was this page helpful?