> ## 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.

# 验证转发收件人

> 确认使用公共令牌的转发收件人。

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


## OpenAPI

````yaml /openapi.zh-cn.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: 验证转发收件人
      description: 确认使用公共令牌的转发收件人。
      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: 验证错误
components:
  schemas:
    ForwardingPublicVerifyRequest:
      description: 使用令牌确认转发验证的公共请求。
      properties:
        token:
          maxLength: 512
          minLength: 16
          title: 令牌
          type: string
      required:
        - token
      title: ForwardingPublicVerifyRequest
      type: object
    ForwardingVerificationConfirmResponse:
      properties:
        forwarding_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          description: 转发规则 UUID
          title: 转发 ID
        verified:
          description: 转发验证是否成功
          title: 已验证
          type: boolean
      required:
        - verified
      title: ForwardingVerificationConfirmResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: 详情
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: 位置
          type: array
        msg:
          title: 消息
          type: string
        type:
          title: 错误类型
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````