> ## 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.

# Get organisations hubs boards users

> Retrieves all users of a hub board.




## OpenAPI

````yaml get /organisations/{organisationId}/hubs/{hubId}/boards/{boardId}/users
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:
    get:
      tags:
        - hubs
        - boards
      description: |
        Retrieves all users of a hub board.
      operationId: ListHubBoardUsers
      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
      responses:
        '200':
          $ref: '#/components/responses/ListHubBoardUsersResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    ListHubBoardUsersResponse:
      description: A paginated set of HubBoardUsers
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/HubBoardUsers'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    HubBoardUsers:
      type: array
      items:
        $ref: '#/components/schemas/HubBoardUser'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
    HubBoardUser:
      type: object
      properties:
        userId:
          type: string
        boardId:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        deletedAt:
          type: string
          format: date-time
      required:
        - userId
        - boardId
        - createdAt
        - updatedAt
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````