Cmdlets for Monday

Build 25.0.9540

Webhooks

Fetches a collection of webhooks, including their configuration and associated events.

Table-Specific Information

SELECT

The 本製品 uses the Monday API to process some of the filters. The 本製品 processes other filters client-side within the 本製品.

  • BoardId supports the '=','IN' comparison operators.
  • AppWebhooksOnly supports the '=' comparison operator.

For example, the following queries are processed server-side:

  SELECT * FROM Webhooks WHERE BoardId = '5574930939'
  SELECT * FROM Webhooks WHERE AppWebhooksOnly = true

INSERT

The following columns can be used to create a new record:

BoardId, Config, Event

The following pseudo-column can be used to create a new record:

Url


INSERT INTO Webhooks (BoardId,Config,Event,Url) VALUES ('5574930939','{\"columnId\":\"status\", \"columnValue\":{\"$any$\":true}}','change_status_column_value','https://test.com/')

DELETE

You can delete entries by specifying the following column:

Id


DELETE FROM Webhooks WHERE Id = '242031214'

Columns

Name Type ReadOnly References Description
Id [KEY] String True

The unique identifier for the webhook, used to distinguish it from other webhooks in the system.

BoardId String True

The unique identifier for the board associated with the webhook, helping to identify which board the webhook is tied to.

Config String True

A JSON or similar configuration format detailing the settings and preferences for the webhook, including event types, filters, and other parameters.

Event String True

The specific event or trigger that the webhook listens to, such as a change in status or a new task being created.

使用できる値は次のとおりです。change_column_value, create_column, change_status_column_value, change_subitem_column_value, change_specific_column_value, create_item, create_subitem, create_update, edit_update, delete_update, create_subitem_update, change_subitem_name, change_name, item_deleted, subitem_deleted, item_archived, subitem_archived, item_restored, item_moved_to_any_group, item_moved_to_specific_group, move_subitem

AppWebhooksOnly Bool True

A filter to include only webhooks created by the application initiating the request, excluding any manually created or external webhooks.

Pseudo-Columns

SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。

Name Type Description
Url String

The URL to which the webhook sends its notifications, typically used to deliver event data to a specified endpoint.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 25.0.9540