> ## 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.ja.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: ForwardingPublicVerifyリクエスト
      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: ForwardingVerificationConfirmレスポンス
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: 詳細
          type: array
      title: HTTPValidationエラー
      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: Validationエラー
      type: object

````