> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取应用的消息反馈

> 获取此应用中所有消息反馈的分页列表，包括终端用户和管理员反馈。



## OpenAPI

````yaml /zh/api-reference/openapi_completion.json get /app/feedbacks
openapi: 3.0.1
info:
  title: 文本生成型应用 API
  description: 文本生成型应用提供无会话支持，适用于翻译、文章撰写、摘要总结 AI 等场景。
  version: 1.0.0
servers:
  - url: https://{api_base_url}
    description: 文本生成型应用 API 的基础 URL。自部署时，替换为你的 API 基础 URL。
    variables:
      api_base_url:
        default: api.dify.ai/v1
        description: API 基础 URL 的主机与路径，不含 `https://` 前缀。
security:
  - ApiKeyAuth: []
tags:
  - name: 文本生成
    description: 文本生成相关操作。
  - name: 文件操作
    description: 文件管理相关操作。
  - name: 终端用户
    description: 终端用户信息相关操作。
  - name: 消息反馈
    description: 用户反馈相关操作。
  - name: 语音与文字转换
    description: 语音转文字和文字转语音相关操作。
  - name: 应用配置
    description: 获取应用设置和信息的操作。
paths:
  /app/feedbacks:
    get:
      tags:
        - 消息反馈
      summary: 获取应用的消息反馈
      description: 获取此应用中所有消息反馈的分页列表，包括终端用户和管理员反馈。
      operationId: getAppFeedbacks
      parameters:
        - name: page
          in: query
          description: 分页页码。
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
        - name: limit
          in: query
          description: 每页记录数。
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 101
      responses:
        '200':
          description: 应用反馈列表。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppFeedbacksResponse'
              examples:
                feedbacksList:
                  summary: 响应示例
                  value:
                    data:
                      - id: b7e2f8a1-3c4d-5e6f-7890-abcdef123456
                        app_id: a1b2c3d4-5678-90ab-cdef-1234567890ab
                        conversation_id: 45701982-8118-4bc5-8e9b-64562b4555f2
                        message_id: 9da23599-e713-473b-982c-4328d4f5c78a
                        rating: like
                        content: >-
                          The response accurately answered my question about
                          product specifications.
                        from_source: user
                        from_end_user_id: f1e2d3c4-b5a6-7890-abcd-ef1234567890
                        from_account_id: null
                        created_at: '2025-01-16T14:30:29Z'
                        updated_at: '2025-01-16T14:30:29Z'
                      - id: c8f3a9b2-4d5e-6f70-8901-bcdef2345678
                        app_id: a1b2c3d4-5678-90ab-cdef-1234567890ab
                        conversation_id: 56812a93-9229-5cd6-9f0c-75673b666603
                        message_id: ae24b5c0-f814-584d-a493-5439e5d6b7b1
                        rating: dislike
                        content: >-
                          The answer was too vague and did not address the
                          specific pricing question.
                        from_source: user
                        from_end_user_id: d2c1b0a9-8765-4321-fedc-ba9876543210
                        from_account_id: null
                        created_at: '2025-01-15T09:12:45Z'
                        updated_at: '2025-01-15T09:12:45Z'
components:
  schemas:
    AppFeedbacksResponse:
      type: object
      properties:
        data:
          type: array
          description: 反馈项列表。
          items:
            $ref: '#/components/schemas/FeedbackItem'
    FeedbackItem:
      type: object
      description: 单条反馈项。
      properties:
        id:
          type: string
          format: uuid
          description: 反馈 ID。
        app_id:
          type: string
          format: uuid
          description: 应用 ID。
        conversation_id:
          type: string
          format: uuid
          description: 会话 ID。
        message_id:
          type: string
          format: uuid
          description: 消息 ID。
        rating:
          type: string
          description: 反馈评分。`like` 为正面，`dislike` 为负面。
        content:
          type: string
          nullable: true
          description: 可选的文字反馈。
        from_source:
          type: string
          description: 反馈来源。`user` 为终端用户通过 API 提交的反馈，`admin` 为从控制台提交的反馈。
        from_end_user_id:
          type: string
          format: uuid
          nullable: true
          description: 提交反馈的终端用户 ID。当 `from_source` 为 `user` 时存在。
        from_account_id:
          type: string
          format: uuid
          nullable: true
          description: 提交反馈的账户 ID。当 `from_source` 为 `admin` 时存在。
        created_at:
          type: string
          format: date-time
          description: 创建时间戳。
        updated_at:
          type: string
          format: date-time
          description: 最后更新时间戳。
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API_KEY
      description: >-
        API Key 认证。对于所有 API 请求，请在 `Authorization` HTTP 头中包含您的 API Key，并加上
        `Bearer ` 前缀。示例：`Authorization: Bearer {API_KEY}`。**强烈建议将 API Key
        存储在服务端，不要在客户端共享或存储，以避免 API Key 泄漏导致严重后果。**

````