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

# Verify email OTP

> Verify an email OTP sign-in code.



## OpenAPI

````yaml /api-reference/openapi.json post /auth/otp/verify
openapi: 3.1.0
info:
  title: Dench API
  version: 1.0.0
  description: >-
    Versioned Dench workspace API. The operation registry is shared with the
    Dench CLI parity layer, so every CLI command maps to an endpoint here.
servers:
  - url: https://www.dench.com/api/v1
security: []
tags:
  - name: agent-config
    description: Agent Config operations.
  - name: approvals
    description: Approvals operations.
  - name: apps
    description: Apps operations.
  - name: auth
    description: Auth operations.
  - name: billing
    description: Billing operations.
  - name: browser
    description: Browser operations.
  - name: chat
    description: Chat operations.
  - name: crm
    description: Crm operations.
  - name: email
    description: Email operations.
  - name: files
    description: Files operations.
  - name: gateway
    description: Gateway operations.
  - name: local
    description: Local operations.
  - name: memory
    description: Memory operations.
  - name: meta
    description: Meta operations.
  - name: routines
    description: Routines operations.
  - name: workspace
    description: Workspace operations.
paths:
  /auth/otp/verify:
    post:
      tags:
        - auth
      summary: Verify email OTP
      description: Verify an email OTP sign-in code.
      operationId: auth_otp_verify
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                code:
                  type: string
                  description: 6+ digit code from the email.
                agentName:
                  type: string
                agentKind:
                  type: string
                sessionTokenHash:
                  type: string
                  description: sha256 hex of the local session token.
                intent:
                  type: string
                  enum:
                    - join_existing
                    - create_workspace
                  description: Whether to join an existing workspace or create a new one.
                proposedOrganizationName:
                  type: string
                organizationSelector:
                  type: string
                userAgent:
                  type: string
              required:
                - email
                - code
                - agentName
                - agentKind
                - sessionTokenHash
                - intent
            example:
              email: string
              code: string
              agentName: string
              agentKind: string
              sessionTokenHash: string
              intent: join_existing
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  result:
                    anyOf:
                      - type: object
                        properties:
                          kind:
                            type: string
                            const: completed
                          organization:
                            type: object
                            properties:
                              id:
                                type: string
                              name:
                                type: string
                              slug:
                                type: string
                            required:
                              - id
                              - name
                              - slug
                            additionalProperties: false
                          sessionExpiresAt:
                            type: number
                        required:
                          - kind
                        additionalProperties: false
                      - type: object
                        properties:
                          kind:
                            type: string
                            const: requiresOrgChoice
                          authToken:
                            type: string
                            description: Pass to /auth/otp/finalize with the chosen org.
                          organizations:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                name:
                                  type: string
                                slug:
                                  type: string
                              required:
                                - id
                                - name
                                - slug
                              additionalProperties: false
                          expiresAt:
                            type: number
                        required:
                          - kind
                          - authToken
                          - organizations
                          - expiresAt
                        additionalProperties: false
                required:
                  - ok
                  - result
                additionalProperties: false
              example:
                ok: true
                result:
                  kind: completed
                  organization:
                    id: org_abc123
                    name: Acme
                    slug: acme
                  sessionExpiresAt: 1773302400000
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Operation or resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
            - code
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
            details: {}

````