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

# Share a multiplayer quiz

> Create a shareable version of a completed multiplayer quiz



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi post /api/v1/share/multiplayer
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/share/multiplayer:
    post:
      tags:
        - Share
      summary: Share a multiplayer quiz
      description: Create a shareable version of a completed multiplayer quiz
      operationId: postApiV1ShareMultiplayer
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                quizId:
                  type: string
                  format: uuid
                roomId:
                  type: string
                  format: uuid
                isAnonymous:
                  type: boolean
                isPublic:
                  type: boolean
              required:
                - quizId
                - roomId
                - isAnonymous
                - isPublic
      responses:
        '201':
          description: Share created
          content:
            application/json:
              schema:
                type: object
                properties:
                  shareId:
                    type: string
                    format: uuid
                  shareUrl:
                    type: string
                    format: uri
                  isAnonymous:
                    type: boolean
                  isPublic:
                    type: boolean
                  type:
                    type: string
                  quiz:
                    type: object
                    properties:
                      quizId:
                        type: string
                        format: uuid
                      title:
                        type: string
                    required:
                      - quizId
                      - title
                required:
                  - shareId
                  - shareUrl
                  - isAnonymous
                  - isPublic
                  - type
                  - quiz

````