API routes for creating, retrieving, updating, and deleting Feedback resources.
/api/v1/organizations/{org_uuid}/feedbacks
Returns a paginated list of feedback for the specified organization.
org_uuid
(string) – The UUID of the organization.page_size
(integer, default: 25
)page_number
(integer, default: 1
)customer_uuids
, company_uuids
(comma-separated strings)feedback_types
(comma-separated strings)from_date
, to_date
search
priority
, min_sentiment
, etc.).GET /api/v1/organizations/abc123/feedbacks?page_size=10
/api/v1/organizations/{org_uuid}/feedbacks
Creates a new feedback entry in the specified organization.
org_uuid
(string)/api/v1/organizations/{org_uuid}/feedbacks
Removes one or more feedback items from the organization. This removes all highlights associated with the feedback items.
org_uuid
(string)/api/v1/organizations/{org_uuid}/feedbacks/{feedback_uuid}
Retrieves a single feedback entry, including details such as highlights.
org_uuid
(string)feedback_uuid
(string)/api/v1/organizations/{org_uuid}/feedbacks/{feedback_uuid}/highlights
Returns the highlights for a single feedback item.
org_uuid
(string)feedback_uuid
(string)page_size
(integer, default: 25)page_number
(integer, default: 1)GET /api/v1/organizations/abc123/feedbacks/fdbk-1234/highlights
/api/v1/organizations/{org_uuid}/spaces/{space_uuid}/feedbacks
Lists feedback entries associated with a particular space.
org_uuid
(string)space_uuid
(string)GET /api/v1/organizations/abc123/spaces/xyz456/feedbacks
/api/v1/organizations/{org_uuid}/feedback_highlights
Lists the most “notable” feedback highlights (sorted by sentiment, likes, etc.).
org_uuid
(string)liked_only
(boolean, default: false
)page_size
(integer, default: 25
)page_number
(integer, default: 1
)sort_by
(string, default: sentiment
)sort_direction
(string, default: desc
)GET /api/v1/organizations/abc123/feedback_highlights?liked_only=true
page_size
(max=100 or 1000, depending on the route) and page_number
.search
, customer_uuids
, company_uuids
, etc./spaces/{space_uuid}
portion to manage feedback specifically tied to a space.