# user reset password

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/user/reset_password:
    post:
      summary: user reset password
      deprecated: false
      description: ''
      tags:
        - User/user
        - user
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                password:
                  type: string
                user_tag:
                  description: always "ipcola"
                  type: string
                vcode:
                  description: vcode from email, length 16
                  type: string
              x-apifox-refs: {}
              x-apifox-orders:
                - email
                - password
                - user_tag
                - vcode
              required:
                - email
                - password
                - user_tag
                - vcode
            example:
              email: address@email.com
              password: qwer123456
              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 success, negative for error
                x-apifox-refs: {}
                x-apifox-orders:
                  - meta_message
                  - meta_status
                required:
                  - meta_status
                  - meta_message
          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-88999378-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.ipcola.com
    description: ipcola
security: []

```
