Integration reference

monday.com Trigger and Action reference

Automate board events and manage monday.com items, column values and updates from FastHook Workflows.

12 Triggers13 ActionsManifests: Trigger v1 · Action v1

Authentication

Connect your monday.com account through OAuth. Choose boards accessible to the connected user; FastHook stores tokens encrypted and refreshes them automatically.

  • Trigger account type: oauth2; reconnect by oauth.
  • Action connection type: oauth2; available modes: Connected monday.com account.

Create or reuse the account from a Trigger or Action dialog, or manage it under Settings → Connected accounts. See Authentication and permissions for scopes and access diagnostics, or Connected accounts for reuse, reconnect, revocation, and credential rotation.

Scopes and permissions

Base Trigger authorization requests: me:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write.

View 7 provider permissions or credential requirements

me:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write

Operation-specific requirements appear in the tables below. Custom event selections can add scopes dynamically, so the current Trigger or Action dialog remains authoritative for the exact consent request.

Use monday.com as a Trigger

The current provider manifest contains 12 available Trigger definitions. Representative definitions include:

  • Create Item
  • Change Column Value
  • Change Name
  • Create Update
View all 12 available Trigger definitions
TriggerManifest keyDeliveryAdditional scopes
Create Itemmonday.create_item.instantinstantNone declared
Change Column Valuemonday.change_column_value.instantinstantNone declared
Change Namemonday.change_name.instantinstantNone declared
Item Archivedmonday.item_archived.instantinstantNone declared
Item Deletedmonday.item_deleted.instantinstantNone declared
Item Moved To Any Groupmonday.item_moved_to_any_group.instantinstantNone declared
Item Restoredmonday.item_restored.instantinstantNone declared
Create Updatemonday.create_update.instantinstantNone declared
Edit Updatemonday.edit_update.instantinstantNone declared
Delete Updatemonday.delete_update.instantinstantNone declared
Any monday.com Eventmonday.any_event.instantinstantNone declared
Custom monday.com Eventsmonday.custom_webhook_events.instantinstantNone declared

Choose the narrowest event definition that fits the Workflow. Configure provider-specific resource and event filters in the Source dialog before adding broader Workflow Filters.

Use monday.com Actions

The current Action manifest contains 13 operations. Representative Actions include:

  • Create Item
  • Change Column Values
  • Create Update / Comment
  • Get Board
View all 13 available Action definitions
ActionManifest keyAccess and authManifest rate limit
Get Current Usermonday.get_meme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Get Boardmonday.get_boardme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
List Board Itemsmonday.list_itemsme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Get Itemmonday.get_itemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Create Itemmonday.create_itemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Create Subitemmonday.create_subitemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Change Column Valuesmonday.change_column_valuesme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Rename Itemmonday.rename_itemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Move Item to Groupmonday.move_item_to_groupme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Archive Itemmonday.archive_itemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Delete Itemmonday.delete_itemme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Create Update / Commentmonday.create_updateme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second
Custom GraphQL Requestmonday.custom_graphql_requestme:read, boards:read, boards:write, updates:read, updates:write, webhooks:read, webhooks:write
FastHook-managed account
1/second

The Action editor reads its required permissions, fields, remote resource pickers, output schema, and rate limit from the provider manifest. Available fields can change with the selected operation and authentication mode.

Build a Workflow

  1. Create a Source using a monday.com Trigger definition.
  2. Create a Workflow with that Source as its Trigger.
  3. Add the required monday.com Action and select the connected account.
  4. Map Trigger or earlier-Step data into the Action fields with the field picker.
  5. Add a Filter, Paths, Delay, or Transformation when the route needs it.
  6. Activate the Workflow, produce a controlled event, and verify the run in Audit and in monday.com.

Troubleshooting monday.com

The account is missing or cannot be selected
Confirm the active FastHook team, provider, account status, and authentication mode. A disabled or revoked account cannot execute an Action.
A resource picker is empty
Verify that the connected provider identity can access the resource itself. OAuth consent does not add workspace, repository, channel, drive, project, base, or record permissions.
The editor asks for additional scopes
Reconnect the same account from the affected Trigger or Action so FastHook can request its current manifest scopes. Then reopen the editor and select the resource again.
An active Workflow returns 401, 403, or a permission error
Compare the selected operation’s access requirements below with the account recorded in Audit. Check provider-side membership and object access before repeating the Action.
The provider returns 429 or a temporary 5xx
Inspect the Step attempt and retryability in Audit. FastHook can retry temporary failures, but provider quotas and idempotency rules still apply.

Provider-specific checks

  • FastHook manages one webhook per selected board and event, authenticates callbacks with a unique secret, and deduplicates repeated deliveries.
  • Choose up to five boards per Source. Any monday.com Event receives the ten event types currently supported by FastHook.
  • Column values use JSON keyed by column ID. Get Board returns column IDs, types and settings; each column type expects its own value format.
  • List Board Items returns up to 100 items per page. Map the returned cursor into the next call to continue reading the board.
  • Actions use monday.com API version 2026-07. Output schemas contain the fields selected by each GraphQL query; custom GraphQL results have a flexible body.
  • Webhook payload fields vary by event. FastHook preserves the original payload and provides an open schema based on official event examples.
  • Your monday.com account permissions, API limits and plan determine which boards and operations are available.

Next