> ## Documentation Index
> Fetch the complete documentation index at: https://developers.portao3.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# /auth/reset-pin



## OpenAPI

````yaml /api-reference/identity.openapi.json post /auth/reset-pin
openapi: 3.0.3
info:
  title: Identity
  version: 1.0.0
  description: >-
    Portão 3 identity API. Generated by tools/openapi from code (routes +
    security) and the hand-written spec (request/response bodies). 4 app groups
    run without the identity authorizer; publicPatterns enumerates every route
    they expose. Confidence tiers: generated:typed=34 copied:manual=1
    unknown=50.
servers:
  - url: https://api.identity.v2.portao3.com.br/
    description: production
  - url: https://api.identity.dev.3pers.com.br/
    description: development
security:
  - bearerAuth: []
tags:
  - name: Authentication
  - name: Current User
  - name: Custom Fields
  - name: API Clients
  - name: Users
  - name: Organizations
  - name: Realms
  - name: Internal & Support
paths:
  /auth/reset-pin:
    post:
      tags:
        - Authentication
      summary: /auth/reset-pin
      operationId: postAuthResetPin
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                eventId:
                  type: string
                  minLength: 1
                password:
                  type: string
                  minLength: 1
                email:
                  type: string
                  format: email
                  pattern: >-
                    ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
                newPin:
                  type: string
                  minLength: 1
              required:
                - eventId
                - password
                - email
                - newPin
      responses:
        default:
          description: Undocumented response (no code type, no existing spec).
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````