# 积分变更记录

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/account/score_log:
    post:
      summary: 积分变更记录
      deprecated: false
      description: |+

        最新的在前.



      tags:
        - 账号相关
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                after:
                  description: '第一页请求无需设置, 后续页的请求使用上页返回 ''after''值   '
                  default: ''
                  type: string
                limit:
                  description: '每页的条数, 默认10条  '
                  default: 10
                  type: integer
              x-apifox-orders:
                - after
                - limit
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object
                title: ResponseModel
                properties:
                  code:
                    type: integer
                    description: 错误码( 0:成功. 其它值:失败[无data数据区])
                  info:
                    type: string
                    description: 错误信息
                    examples:
                      - succ
                  request_id:
                    type: string
                    description: 请求id,用于定位请求
                    examples:
                      - 21al1389334aal4f
                  data:
                    type: object
                    properties:
                      list:
                        type: array
                        description: 变更列表
                        items:
                          description: ''
                          type: object
                          properties:
                            title:
                              description: '标题 '
                              examples:
                                - 标题
                              type: string
                            log_time:
                              description: '记录时间  '
                              examples:
                                - '2020-01-01T00:00:00+08:00'
                              type: string
                            original_score:
                              description: 修改前的积分
                              type: integer
                            modified_score:
                              description: 修改积分
                              type: integer
                            final_score:
                              description: 修改后的积分
                              type: integer
                          required:
                            - title
                            - log_time
                            - original_score
                            - modified_score
                            - final_score
                          x-apifox-orders:
                            - title
                            - log_time
                            - original_score
                            - modified_score
                            - final_score
                      after:
                        description: 是否有更多数据, 如果不为空, 可以请用该值请求下一页
                        type: string
                    required:
                      - list
                      - after
                    description: 数据区
                    x-apifox-orders:
                      - list
                      - after
                required:
                  - code
                  - info
                  - request_id
                x-apifox-orders:
                  - code
                  - info
                  - request_id
                  - data
          headers: {}
          x-apifox-name: 成功
      security:
        - bearer: []
      x-apifox-folder: 账号相关
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/3930068/apis/api-147596729-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
