mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
3dc3852b7a
* Improve SEO descriptions across 47 pages Curated descriptions from two bot-generated PRs (#3908, #3949), selecting the best approach for each page: - Added missing title and description frontmatter to 10 API reference pages - Benefit-focused descriptions for integration pages (not implementation-heavy) - Accurate REST-aligned titles for API endpoints (Export, List, Trigger, etc.) - Expanded short descriptions to 50–160 character range throughout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * copyedit * Update custom-domain.mdx * Fix analytics API page titles to match spec summaries "Export" was inaccurate — spec uses "Get" for both endpoints. Also updated descriptions to use "Retrieve" for consistency. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
---
|
|
title: "Get feedback"
|
|
description: "Retrieve user feedback from your documentation, including page ratings and code snippet feedback."
|
|
openapi: /analytics.openapi.json GET /v1/analytics/{projectId}/feedback
|
|
keywords: ["analytics", "feedback", "export", "user feedback"]
|
|
---
|
|
|
|
## Usage
|
|
|
|
Use this endpoint to export user feedback collected from your documentation. Feedback includes contextual feedback from page ratings and code snippet feedback.
|
|
|
|
Paginate through results using the `cursor` parameter returned in the response. Continue fetching while `hasMore` is `true`.
|
|
|
|
## Filtering
|
|
|
|
Filter feedback by:
|
|
- **Date range**: Use `dateFrom` and `dateTo` to limit results to a specific time period
|
|
- **Source**: Filter by `code_snippet` or `contextual` feedback types
|
|
- **Status**: Filter by status values like `pending`, `in_progress`, `resolved`, or `dismissed`
|
|
|
|
## Response types
|
|
|
|
The response contains different feedback types based on the source:
|
|
|
|
- **Contextual feedback**: Includes `helpful` boolean and optional `contact` email
|
|
- **Code snippet feedback**: Includes `code`, `filename`, and `lang` fields
|