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

# Post organisations hubs boards users

> Internal endpoint meant to link a dynamic user to a board.




## OpenAPI

````yaml post /organisations/{organisationId}/hubs/{hubId}/boards/{boardId}/users/{userid}
openapi: 3.0.3
info:
  title: Switchboard API
  description: >-
    The Switchboard API provides users the ability to manage their Apps,
    Integrations and Workflows
  version: 0.0.1-alpha.0
servers:
  - url: https://platform.versori.com/api/switchboard/v1alpha1/
    description: Production server
  - url: http://localhost:8080/v1alpha1/
    description: Localhost
security:
  - apiKey: []
paths:
  /organisations/{organisationId}/hubs/{hubId}/boards/{boardId}/users/{userid}:
    post:
      tags:
        - hubs
        - boards
      description: |
        Internal endpoint meant to link a dynamic user to a board.
      operationId: CreateBoardUser
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
        - name: hubId
          in: path
          required: true
          schema:
            type: string
        - name: boardId
          in: path
          required: true
          schema:
            type: string
        - name: userid
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          $ref: '#/components/responses/BoardUsersResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    BoardUsersResponse:
      description: >
        BoardUsersResponse is a placeholder response. Right now the APi doesn't
        return a body.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/EmptySchema'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    EmptySchema:
      type: object
      description: Empty placeholder schema
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````