> ## 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 boards variables

> Get the JSON schema for the variables of a board.




## OpenAPI

````yaml get /organisations/{organisationId}/boards/{boardId}/variables
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}/boards/{boardId}/variables:
    get:
      tags:
        - boards
      description: |
        Get the JSON schema for the variables of a board.
      operationId: GetBoardVariablesSchema
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - name: boardId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/GetVariablesSchemaResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    GetVariablesSchemaResponse:
      description: >
        GetVariablesSchemaResponse is the response containing the variables
        schema.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/BoardVariablesSchema'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    BoardVariablesSchema:
      description: |
        BoardVariablesSchema is the schema definition for board variables.
      type: object
      properties:
        dynamic:
          $ref: '#/components/schemas/VariablesSchema'
        global:
          $ref: '#/components/schemas/VariablesSchema'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
    VariablesSchema:
      type: object
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````