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

# Put organisations boards variablesdynamic

> Updates or creates the dynamic variable schema for a board.




## OpenAPI

````yaml put /organisations/{organisationId}/boards/{boardId}/variables/dynamic
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/dynamic:
    put:
      tags:
        - boards
      description: |
        Updates or creates the dynamic variable schema for a board.
      operationId: UpdateBoardDynamicVariablesSchema
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
        - name: boardId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        $ref: '#/components/requestBodies/UpdateVariableSchemaRequest'
      responses:
        '200':
          $ref: '#/components/responses/GetBoardVariablesSchemaResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  requestBodies:
    UpdateVariableSchemaRequest:
      description: >
        UpdateVariableSchemaRequest is the request definition for updating a
        variable schema.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/VariablesSchema'
  responses:
    GetBoardVariablesSchemaResponse:
      description: >
        GetBoardVariablesSchemaResponse is the response containing the board
        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:
    VariablesSchema:
      type: object
    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
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````