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

# Verificar destinatario de reenvío

> Confirma un destinatario de reenvío mediante un token público.

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.es.json POST /v1/public/forwarding/verify
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/forwarding/verify:
    post:
      tags:
        - public-forwarding
      summary: Verificar destinatario de reenvío
      description: Confirma un destinatario de reenvío mediante un token público.
      operationId: verify_forwarding_recipient_v1_public_forwarding_verify_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ForwardingPublicVerifyRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForwardingVerificationConfirmResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Error de validación
components:
  schemas:
    ForwardingPublicVerifyRequest:
      description: >-
        Solicitud pública para confirmar la verificación de reenvío con un
        token.
      properties:
        token:
          maxLength: 512
          minLength: 16
          title: token
          type: string
      required:
        - token
      title: ForwardingPublicVerifyRequest
      type: object
    ForwardingVerificationConfirmResponse:
      properties:
        forwarding_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          description: Regla de reenvío UUID
          title: reenvío ID
        verified:
          description: Si la verificación de reenvío fue exitosa
          title: verificado
          type: boolean
      required:
        - verified
      title: ForwardingVerificationConfirmResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detalle
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Ubicación
          type: array
        msg:
          title: Mensaje
          type: string
        type:
          title: Tipo de error
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````