# 获取群精华消息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /get_essence_msg_list:
    post:
      summary: 获取群精华消息
      deprecated: false
      description: 获取指定群聊中的精华消息列表
      tags:
        - 群组接口
        - 群组接口
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                group_id:
                  description: 群号
                  type: string
              required:
                - group_id
              x-apifox-orders:
                - group_id
              x-apifox-ignore-properties: []
            examples:
              Default:
                value:
                  group_id: '123456'
                summary: 默认请求示例
      responses:
        '200':
          description: 业务响应
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/BaseResponse'
                  - type: object
                    required:
                      - data
                    properties:
                      data:
                        description: 业务数据
                        type: array
                        items:
                          type: object
                          properties:
                            msg_seq:
                              description: 消息序号
                              type: number
                            msg_random:
                              description: 消息随机数
                              type: number
                            sender_id:
                              description: 发送者QQ
                              type: number
                            sender_nick:
                              description: 发送者昵称
                              type: string
                            operator_id:
                              description: 操作者QQ
                              type: number
                            operator_nick:
                              description: 操作者昵称
                              type: string
                            message_id:
                              description: 消息ID
                              type: number
                            operator_time:
                              description: 操作时间
                              type: number
                            content:
                              description: 消息内容
                              type: array
                              items:
                                type: string
                          required:
                            - msg_seq
                            - msg_random
                            - sender_id
                            - sender_nick
                            - operator_id
                            - operator_nick
                            - message_id
                            - operator_time
                            - content
                          x-apifox-orders:
                            - msg_seq
                            - msg_random
                            - sender_id
                            - sender_nick
                            - operator_id
                            - operator_nick
                            - message_id
                            - operator_time
                            - content
                          x-apifox-ignore-properties: []
                    x-apifox-orders:
                      - data
                    x-apifox-ignore-properties: []
              examples:
                Success:
                  summary: 成功响应
                  value:
                    status: ok
                    retcode: 0
                    data:
                      - message_id: 123456
                        sender_id: 123456
                        sender_nick: 昵称
                        operator_id: 123456
                        operator_nick: 昵称
                        operator_time: 1710000000
                        content: 精华内容
                    message: ''
                    wording: ''
                    stream: normal-action
                Error_1400:
                  summary: 请求参数错误或业务逻辑执行失败
                  value:
                    status: failed
                    retcode: 1400
                    data: null
                    message: 请求参数错误或业务逻辑执行失败
                    wording: 请求参数错误或业务逻辑执行失败
                    stream: normal-action
                Error_1401:
                  summary: 权限不足
                  value:
                    status: failed
                    retcode: 1401
                    data: null
                    message: 权限不足
                    wording: 权限不足
                    stream: normal-action
                Error_1404:
                  summary: 资源不存在
                  value:
                    status: failed
                    retcode: 1404
                    data: null
                    message: 资源不存在
                    wording: 资源不存在
                    stream: normal-action
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 群组接口
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5348325/apis/api-226658664-run
components:
  schemas:
    BaseResponse:
      type: object
      x-schema-id: BaseResponse
      properties:
        status:
          type: string
          description: 状态 (ok/failed)
        retcode:
          type: number
          description: 返回码
        data:
          type: string
        message:
          type: string
          description: 消息
        wording:
          type: string
          description: 提示
        stream:
          type: string
          description: 流式响应
          enum:
            - stream-action
            - normal-action
      required:
        - status
        - retcode
      x-apifox-orders:
        - status
        - retcode
        - data
        - message
        - wording
        - stream
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []

```
