Skip to main content
Complete the API quickstart first. These examples build on the same GLEAN_FEED_API_KEY environment variable.

Filter feedback

List up to 10 requests that contain “export” in the title or description:
This request requires feedback:read. You can also filter by stage or by a board ID from the same workspace. See Endpoints for the supported feedback operations.

Read the next page

When a list response includes "hasMore": true, copy its opaque nextCursor into the next request:
Keep every filter from the first request while paging, and pass the cursor exactly as returned. When hasMore is false, there are no more pages.

Create a feedback request

Call create operations from your server, where the API key cannot be read by customers. This request needs feedback:write.
boardId accepts a board UUID or slug. Omitting it uses the workspace’s first board that accepts requests, so tools that cannot confirm which board you intend should require a selection. sourceUrl and metadata give your team private context for triage; they are not shown on the public portal. X-Glean-Feed-Agent records the agent name in audit context and does not affect authorization.
A successful create returns HTTP 201 and the new request in data. Open the Feedback page in the dashboard to confirm it appears. Reusing the same Idempotency-Key returns the original result instead of creating another request.

Next steps

  • Review Authentication before deploying a server integration.
  • Use Scopes to separate read and write credentials.
  • Browse the endpoint catalog and the live OpenAPI contract at https://app.gleanfeed.com/api/v1/openapi.json.