Monday Update

Monday Update

Certified

Update a column's title or description on a Monday board

Uses Monday's change_column_metadata mutation. Pick the attribute to change via attribute and provide the new value via value.

yaml
type: io.kestra.plugin.monday.columns.Update

Rename a column

yaml
id: monday_rename_column
namespace: company.team

tasks:
  - id: rename
    type: io.kestra.plugin.monday.columns.Update
    apiToken: "{{ secret('MONDAY_API_TOKEN') }}"
    boardId: "1234567890"
    columnId: "status"
    attribute: TITLE
    value: "Stage"

Update a column description

yaml
id: monday_describe_column
namespace: company.team

tasks:
  - id: describe
    type: io.kestra.plugin.monday.columns.Update
    apiToken: "{{ secret('MONDAY_API_TOKEN') }}"
    boardId: "1234567890"
    columnId: "status"
    attribute: DESCRIPTION
    value: "Current pipeline stage for this lead."
Properties

Monday API token

Personal API v2 token. Generate it in Monday under Profile, Developers, My Access Tokens. Treat the token as a secret and prefer Kestra secrets, e.g. {{ secret('MONDAY_API_TOKEN') }}.

Possible Values
TITLEDESCRIPTION

Column attribute to update

One of TITLE or DESCRIPTION.

Board id

Column id

New value for the chosen attribute

Defaulthttps://api.monday.com/v2

Monday GraphQL endpoint

Override only for proxies or test fixtures (WireMock).

Default2024-10

Monday API version header

Sent as the API-Version header. See the Monday API versioning docs.

Default3

Maximum retry attempts

Number of attempts before giving up on transient Monday API errors (HTTP 429, COMPLEXITY_BUDGET_EXHAUSTED).

Reference (ref) of the pluginDefaults to apply to this task.

DefaultPT5S

Initial retry interval

Base wait between retry attempts. Doubles each attempt up to maxRetryInterval.

DefaultPT30S

Maximum retry interval

Cap on the exponentially-growing retry delay.