# user register

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/user/register:
    post:
      summary: user register
      deprecated: false
      description: user register
      tags:
        - User/user
        - user
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                password:
                  type: string
                reference_key:
                  description: if no reference key, use ""
                  type: string
                user_tag:
                  description: awlays "ipcola"
                  type: string
                vcode:
                  description: vcode from email, length 16
                  type: string
              x-apifox-refs: {}
              x-apifox-orders:
                - email
                - password
                - reference_key
                - user_tag
                - vcode
              required:
                - email
                - password
                - reference_key
                - user_tag
                - vcode
            example:
              email: address@email.com
              password: qwer123456
              reference_key: ''
              user_tag: ipcola
              vcode: sjeuijnhgytghyuj
      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: result
      security: []
      x-apifox-folder: User/user
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2880121/apis/api-88999377-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.ipcola.com
    description: ipcola
security: []

```
