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

# Post workspaces join



## OpenAPI

````yaml /openapi.json post /workspaces/{workspace_id}/join
openapi: 3.0.0
info:
  title: Kair Voice
  version: '1.0'
servers:
  - url: http://0.0.0.0:8000/api
security: []
tags:
  - name: Admin
  - name: ApiKey
  - name: Auth
  - name: Concerns
  - name: Device
  - name: Graph
  - name: Health
  - name: Job
  - name: Session
  - name: Workshop
  - name: Workspace
paths:
  /workspaces/{workspace_id}/join:
    post:
      tags:
        - Auth
      operationId: post-workspaces-workspace-id-join
      parameters:
        - name: workspace_id
          schema:
            type: string
            format: uuid
          in: path
          required: true
          deprecated: false
          explode: true
      requestBody:
        content:
          application/json; charset=utf-8:
            schema:
              $ref: '#/components/schemas/GuestJoinRequest'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/GuestJoinResponse'
        '400':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    GuestJoinRequest:
      type: object
      title: GuestJoinRequest
      required:
        - name
        - privacy_accepted
      properties:
        name:
          type: string
        device_fingerprint:
          type: string
          description: >-
            Opaque client-generated UUID persisted in localStorage; used to
            rebind

            returning guests without requiring an email address.
        privacy_accepted:
          type: boolean
    GuestJoinResponse:
      type: object
      title: GuestJoinResponse
      required:
        - success
        - token
        - user_id
        - workspace_id
      properties:
        success:
          type: boolean
        token:
          type: string
        user_id:
          type: string
        workspace_id:
          type: string
    ErrorResponse:
      type: object
      title: ErrorResponse
      required:
        - success
        - message
      properties:
        success:
          type: boolean
        message:
          type: string

````