# user login

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/user/login:
    post:
      summary: user login
      deprecated: false
      description: ''
      tags:
        - User/user
        - user
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                captcha:
                  type: string
                captcha_id:
                  type: string
                email:
                  type: string
                password:
                  type: string
                user_tag:
                  description: always "ipcola"
                  type: string
              x-apifox-refs: {}
              x-apifox-orders:
                - captcha
                - captcha_id
                - email
                - password
                - user_tag
              required:
                - user_tag
                - captcha
                - captcha_id
                - email
                - password
            example:
              user_tag: ipcola
              captcha: '23'
              captcha_id: xxxxxxxxxxx
              email: example@email.com
              password: mypassword123
      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
                  token:
                    type: string
                    description: user token
                x-apifox-refs: {}
                x-apifox-orders:
                  - meta_message
                  - meta_status
                  - token
                required:
                  - meta_message
                  - meta_status
                  - token
          headers: {}
          x-apifox-name: user token
      security: []
      x-apifox-folder: User/user
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2880121/apis/api-88999375-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.ipcola.com
    description: ipcola
security: []

```
