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

# Consume a forwarding-destination verification token

> Verifies a forwarding destination via the token from the email link. Public — no auth.



## OpenAPI

````yaml /openapi.json post /inbound/forward-destinations/verify
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /inbound/forward-destinations/verify:
    post:
      tags:
        - Inbound
      summary: Consume a forwarding-destination verification token
      description: >-
        Verifies a forwarding destination via the token from the email link.
        Public — no auth.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - token
              properties:
                token:
                  type: string
                  description: >-
                    Opaque verification token from the email link's ?token=
                    query parameter.
                  example: lkM2_oXk-OQAAAAA...
      responses:
        '200':
          description: Token consumed (or was already consumed for this destination)
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  status:
                    type: string
                    enum:
                      - verified
                      - already_verified
                    example: verified
                  email:
                    type: string
                    format: email
                    example: team@theirinbox.com
                  rules_updated:
                    type: integer
                    description: >-
                      Number of forwarding rules flipped to verified = 1 by this
                      request. Only present when status = verified.
                    example: 3
        '400':
          description: Invalid request body or malformed token
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Invalid token
        '404':
          description: Token not recognized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  status:
                    type: string
                    example: invalid
                  error:
                    type: string
                    example: Verification link is invalid or has been revoked.
        '410':
          description: Token expired (TTL is 48h)
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  status:
                    type: string
                    example: expired
                  error:
                    type: string
                    example: >-
                      Verification link has expired. Ask the JetEmail account
                      owner to resend it.
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to verify destination
      security: []
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````