# 得到账号信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/account/info:
    post:
      summary: 得到账号信息
      deprecated: false
      description: |+




      tags:
        - 账号相关
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties: {}
              x-apifox-orders: []
      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:
                      id:
                        description: '账号ID '
                        examples:
                          - xxxxxxx
                        type: string
                      name:
                        description: '名称 '
                        examples:
                          - 账号名称
                        type: string
                      score:
                        description: '当前积分 '
                        examples:
                          - 10000
                        type: integer
                      created_at:
                        description: '账号创建时间  '
                        examples:
                          - '2020-01-01T00:00:00+08:00'
                        type: string
                      vip_type:
                        description: >-
                          会员类型:  `general:普通会员` `month:月会员` `season:季会员`
                          `year:年会员`  
                        examples:
                          - year
                        type: string
                      vip_expiration_time:
                        description: '会员到期时间 '
                        examples:
                          - '2020-01-01T00:00:00+08:00'
                        type: string
                    required:
                      - id
                      - name
                      - score
                      - created_at
                      - vip_type
                      - vip_expiration_time
                    description: 数据区
                    x-apifox-orders:
                      - id
                      - name
                      - score
                      - created_at
                      - vip_type
                      - vip_expiration_time
                required:
                  - code
                  - info
                  - request_id
                x-apifox-orders:
                  - code
                  - info
                  - request_id
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 账号相关
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/3930068/apis/api-144734201-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
