jira.js
    Preparing search index...

    Function setBoardProperty

    • Sets the value of the specified board's property. You can use this resource to store a custom data against the board identified by the id. The user who stores the data is required to have permissions to modify the board.

      Parameters

      • client: Client
      • parameters: { boardId: number; body: Record<string, any>; propertyKey: string }
        • boardId: number

          The id of the board on which the property will be set.

        • body: Record<string, any>
        • propertyKey: string

          The key of the board's property.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              keys?: { key?: string; self?: string; [key: string]: unknown }[];
              [key: string]: unknown;
          },
      >