Webhooks
Fetches a collection of webhooks, including their configuration and associated events.
Table-Specific Information
Select
The connector uses the Monday API to process WHERE clause conditions built with the following column and operator. The connector processes other filters client-side within the connector.
- BoardId supports the '=' comparison operator.
SELECT * FROM Webhooks WHERE BoardId = '5574930939'
INSERT
The following inputs can be used in INSERT statements:
BoardId, Config, Event, 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 Id.
DELETE FROM Webhooks WHERE Id = '242031214'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | False |
The unique identifier for the webhook, used to distinguish it from other webhooks in the system. | |
BoardId | String | False |
The unique identifier for the board associated with the webhook, helping to identify which board the webhook is tied to. | |
Config | String | False |
A JSON or similar configuration format detailing the settings and preferences for the webhook, including event types, filters, and other parameters. | |
Event | String | False |
The specific event or trigger that the webhook listens to, such as a change in status or a new task being created. The allowed values are 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 | False |
A filter to include only webhooks created by the application initiating the request, excluding any manually created or external webhooks. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
Url | String |
The URL to which the webhook sends its notifications, typically used to deliver event data to a specified endpoint. |