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

# Resend Verification

> Re-send a verification email. Always 200 (no account-existence leak).



## OpenAPI

````yaml /api-reference/openapi.json post /api/auth/resend-verification
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/auth/resend-verification:
    post:
      tags:
        - auth
      summary: Resend Verification
      description: Re-send a verification email. Always 200 (no account-existence leak).
      operationId: resend_verification_api_auth_resend_verification_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResendVerificationRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResendVerificationRequest:
      properties:
        email:
          type: string
          title: Email
      type: object
      required:
        - email
      title: ResendVerificationRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````

## Related topics

- [Authentication](/api-reference/authentication.md)
- [Google Verification](/api-reference/google-verification.md)
- [Verify Email](/api-reference/auth/verify-email.md)
- [Rag Webhook](/api-reference/rag/rag-webhook.md)
