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

# Get Meeting Playbook Result

> 指定したミーティングに紐づく特定Playbookの実行結果を取得します。
同一ミーティング内で同じPlaybookの複数バージョンが存在する場合は、最新の1件のみを返します。
最新判定は `playbook_version` の降順を優先し、同一バージョン内では作成日時とIDの降順で決定されます。
返却対象はワークスペース公開かつ完了済みのミーティングです。
対象ミーティングの `visibility_scope` が `WORKSPACE_ONLY` かつ `overview_status` が `COMPLETED`（完了済み）の場合のみ返却されます。
`visibility_scope` が `ATTENDEES_ONLY` の場合は 403 を返します。
公開対象外または存在しないミーティングは 404 を返します。
ミーティングは公開対象だが指定Playbookの実行結果が存在しない場合は `Playbook result not found` の 404 を返します。




## OpenAPI

````yaml /openapi.yaml get /v1/meetings/{meetingId}/playbook-results/{playbookId}
openapi: 3.1.0
info:
  title: Frictio Public API
  version: 1.0.0-beta
servers:
  - url: https://public-api.frictio.ai
security:
  - ApiKeyAuth: []
paths:
  /v1/meetings/{meetingId}/playbook-results/{playbookId}:
    get:
      summary: Get Meeting Playbook Result
      description: >
        指定したミーティングに紐づく特定Playbookの実行結果を取得します。

        同一ミーティング内で同じPlaybookの複数バージョンが存在する場合は、最新の1件のみを返します。

        最新判定は `playbook_version` の降順を優先し、同一バージョン内では作成日時とIDの降順で決定されます。

        返却対象はワークスペース公開かつ完了済みのミーティングです。

        対象ミーティングの `visibility_scope` が `WORKSPACE_ONLY` かつ `overview_status` が
        `COMPLETED`（完了済み）の場合のみ返却されます。

        `visibility_scope` が `ATTENDEES_ONLY` の場合は 403 を返します。

        公開対象外または存在しないミーティングは 404 を返します。

        ミーティングは公開対象だが指定Playbookの実行結果が存在しない場合は `Playbook result not found` の 404
        を返します。
      operationId: getMeetingPlaybookResult
      parameters:
        - $ref: '#/components/parameters/workspaceId'
        - $ref: '#/components/parameters/meetingId'
        - $ref: '#/components/parameters/playbookId'
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/MeetingPlaybookResult'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/MeetingPlaybookResultNotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    workspaceId:
      name: X-Workspace-Id
      in: header
      required: true
      description: ワークスペースID
      schema:
        type: string
      example: e1f2a3b4-...
    meetingId:
      name: meetingId
      in: path
      required: true
      description: ミーティングID
      schema:
        type: string
      example: a1b2c3d4-...
    playbookId:
      name: playbookId
      in: path
      required: true
      description: Playbook ID
      schema:
        type: string
      example: d4e5f6a7-...
  schemas:
    MeetingPlaybookResult:
      type: object
      description: ミーティングに紐づくPlaybook実行結果
      required:
        - id
        - playbook_id
        - playbook_name
        - created_at
        - talk_point_results
      properties:
        id:
          type: string
          description: Playbook実行結果ID
          example: 8b7c6d5e-...
        playbook_id:
          type: string
          description: Playbook ID
          example: a1b2c3d4-...
        playbook_name:
          type: string
          description: 実行時点のPlaybook名
          example: 商談ヒアリング
        created_at:
          type: string
          format: date-time
          description: Playbook実行結果の作成日時（UTC）
          example: '2026-06-05T10:05:00.000Z'
        talk_point_results:
          type: array
          description: Talk Pointごとの結果
          items:
            $ref: '#/components/schemas/MeetingPlaybookResultTalkPoint'
    MeetingPlaybookResultTalkPoint:
      type: object
      description: Talk PointごとのPlaybook実行結果
      required:
        - id
        - talk_point_id
        - question
        - answer
        - created_at
      properties:
        id:
          type: string
          description: Talk Point結果ID
          example: 9c8d7e6f-...
        talk_point_id:
          type: string
          description: Talk Point ID
          example: b2c3d4e5-...
        question:
          type: string
          description: Talk Pointの質問
          example: 導入課題は何ですか？
        answer:
          type: string
          description: Talk Pointへの回答
          example: 既存CRMとの連携です
        created_at:
          type: string
          format: date-time
          description: Talk Point結果の作成日時（UTC）
          example: '2026-06-05T10:06:00.000Z'
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTPステータスコード
          example: 404
        message:
          type: string
          description: エラーメッセージ
          example: Meeting not found
        error:
          type: string
          description: |
            エラー種別。メッセージ文字列付きで例外が生成された場合のみ含まれます。
          example: Not Found
  responses:
    Unauthorized:
      description: APIキーが無効、失効、期限切れ、または未指定です
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 401
            message: Invalid API key
            error: Unauthorized
    Forbidden:
      description: 権限エラー
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 403
            message: Forbidden
    MeetingPlaybookResultNotFound:
      description: ミーティングまたはPlaybook実行結果が見つかりません
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 404
            message: Playbook result not found
            error: Not Found
    TooManyRequests:
      description: レートリミット超過
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 429
            message: Too Many Requests
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````