# get user info

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/user/info:
    get:
      summary: get user info
      deprecated: false
      description: ''
      tags:
        - User/user
        - user
      parameters:
        - name: Authorization
          in: header
          description: ''
          example: Bearer {{AUTH_TOKEN}}
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta_message:
                    type: string
                    description: success or other error msg
                  meta_status:
                    type: integer
                    description: 1 for success, negative for error
                  user:
                    type: object
                    properties:
                      account_limit:
                        type: integer
                      created_unixtime:
                        type: integer
                      email:
                        type: string
                      forbidden:
                        type: boolean
                      id:
                        type: integer
                      is_super_token:
                        type: boolean
                      parent_user_id:
                        type: integer
                      password:
                        type: string
                      permissions:
                        type: array
                        items:
                          type: string
                      reference_key:
                        type: string
                      reference_user_id:
                        type: integer
                      register_continent_code:
                        type: string
                      register_country_code:
                        type: string
                      register_ipv4:
                        type: string
                      register_region:
                        type: string
                      roles:
                        type: array
                        items:
                          type: string
                      subsidy_rate:
                        type: number
                      token:
                        type: string
                      user_tag:
                        type: string
                      whitelist_limit:
                        type: integer
                    x-apifox-refs: {}
                    x-apifox-orders:
                      - account_limit
                      - created_unixtime
                      - email
                      - forbidden
                      - id
                      - is_super_token
                      - parent_user_id
                      - password
                      - permissions
                      - reference_key
                      - reference_user_id
                      - register_continent_code
                      - register_country_code
                      - register_ipv4
                      - register_region
                      - roles
                      - subsidy_rate
                      - token
                      - user_tag
                      - whitelist_limit
                    description: user info
                x-apifox-refs: {}
                x-apifox-orders:
                  - meta_message
                  - meta_status
                  - user
                required:
                  - meta_message
                  - meta_status
                  - user
          headers: {}
          x-apifox-name: result
      security: []
      x-apifox-folder: User/user
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2880121/apis/api-88999373-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.ipcola.com
    description: ipcola
security: []

```
