Skip to main content

What is the Monday.com integration?

Monday.com is a project_management-category integration, connected with an API key. On the Integrations page its card description reads: “Trigger outbound calls from Monday.com boards and sync call results back” — which is exactly the two directions this page covers:
  • Inbound — start a Voxworks call from a Monday.com board item, using the Voxworks REST API and an API key you generate in Voxworks.
  • Outbound (Integration Sync) — after a call finishes, write the results (summary, status, duration, and so on) back onto the Monday.com item as column values, using an Automation.
Unlike the calendar providers, Monday.com has no dedicated step in the script editor’s tool picker — connecting it doesn’t add a new tool to your scripts. Both directions run outside the call, through the REST API and the Automations pipeline described below.
On the integration card and in Integration Settings, Monday.com’s category badge reads literally project_management rather than a friendly label like “CRM” or “Calendar” — that’s a known display quirk, not a setting you can change.
Integrations are typically built out for specific clients, so the full functionality of Monday.com’s interface might not be available. If your team needs additional features from this integration, contact the Voxworks team directly to discuss what can be added.

Connecting Monday.com

  1. In the sidebar under Admin, open Integrations.
  2. In the Available Integrations section, find the Monday.com card.
  3. Click Connect. The Connect Monday.com dialog opens: “Enter your Monday.com API key to establish the connection.”
  4. Paste your key into the API Key field and click Connect.
While the key is being saved the button reads Connecting…. On success the Monday.com card moves to the Connected Integrations section with a green Connected badge. Opening the gear icon on the card shows Integration SettingsStatus (Connected/Error badges plus an API Key auth-type badge), Connection Details (when you connected, and a masked view of the key), and Available Tools, which reads “No tools are currently available for this integration” — expected, since Monday.com works through the API and Automations rather than a script tool.

Triggering calls from Monday.com

Monday.com’s own Developer Center supports a “Make a Voxworks Call” custom automation-recipe action for boards, so you could trigger a call directly from a Monday.com automation without leaving Monday.com. That marketplace action is coming soon and isn’t available yet. Today, trigger calls from Monday.com with a generic Monday.com automation recipe (for example, a webhook/integration block that fires when an item enters a status or group) that sends an HTTP request to the Voxworks REST API’s Create Phone Call endpoint.

Generate a Voxworks API key

  1. Open Settings, then API Keys in the sub-navigation.
  2. Click Generate Key (optionally give it a Key Name, e.g. “Monday.com Production”).
  3. Click Generate. The key is shown once: “Copy your API key now. It won’t be shown again.” Copy it — Voxworks stores only a hash and never displays it again.

Call the Create Phone Call endpoint

A successful call returns 201 Created with call_id (type string (uuid)), contact_id (type string (uuid)), and status (type string, example scheduled). Store the Monday.com item ID before you send it. To write results back to the right item later, create a Custom Variable Type (for example monday_item, with fields like item_id and board_id) and pass its values in objects on the same request, as in the example above. Once saved, the values are readable as {{custom.monday_item.item_id}} (type string, example 1234567890) anywhere in your Voxworks flow, including in the Automation you build for the write-back below. See linking custom variables to contacts for how this data attaches to the caller’s contact record.

Writing call results back to Monday.com (Integration Sync)

Call results are written back using an Automation, not a fixed set of checkboxes. Start it from either side:
  • From the script editor’s Settings tab, the Post-Call Automations card (“Automations linked to this script after a call completes”) lists automations tied to the script. Click New to create one and jump straight into its editor. If the script hasn’t been saved yet, the card shows “Save the script before adding post-call automations.”
  • Or open Automations in the sidebar directly and click New Automation.

Build the pipeline

  1. The automation opens with the Call Completed trigger (“Runs after a call finishes”) — pre-selected and pre-filtered to this script if you started from the Post-Call Automations card, or chosen by you in the Create New Automation dialog if you started from Automations directly. Either way, you can filter it to specific scripts or call statuses.
  2. Add a Transform step in Field Mapping mode to map call and contact data onto your board’s actual column IDs, one row per column — for example call.call_summary → long_text_7, call.status → status_1, call.duration → numbers_3, custom.monday_item.item_id → item_id. This is where you translate Voxworks fields into your Monday.com column IDs (see below) rather than column labels.
  3. Add a Destination step, set Destination Type to Integration Sync, and pick your connected Monday.com integration.
  4. Configure the request:
Example Body Template, matching the mappings above:
  1. Click Test Request to send it once with live data and confirm Monday.com accepts it (status code and response body are shown inline) before you enable the automation — if it doesn’t succeed, check the response body for an authentication or validation error.
  2. Save and enable the automation.
There is no column picker in Voxworks — you type Monday.com’s column IDs by hand into the Field Mapping target and the Body Template. A wrong or renamed column ID fails silently against Monday.com’s API (visible only in the automation’s Execution Log), not at save time in Voxworks.

Finding your Monday.com column IDs

A board column’s ID (e.g. status_1, long_text_7) is not the same as the label shown on the board, and Voxworks has no way to look it up for you. Find it on the Monday.com side — for example, by querying boards { columns { id title } } in Monday.com’s own API playground, or via your board’s column settings — then use that ID, not the display label, in your Field Mapping targets and Body Template.

Managing or removing the connection

Click the gear icon on the connected Monday.com card to open Integration Settings, then click Disconnect. The Disconnect Monday.com? confirmation warns that disconnecting will stop all active workflows using the integration, remove access to Monday.com features from your AI agents, and delete any stored authentication tokens. You can reconnect at any time by entering an API key again.

Next Steps

  • Automations — triggers, the Pipeline builder, and the full step catalogue (Source, Transform, Condition, Upsert Contact, Upsert Custom Variable, Create Call, Destination).
  • Field Mapping & Context — how source paths, mapped.*, and {{call.*}} / {{contact.*}} / {{custom.*}} context values work across a pipeline.
  • Custom Variables overview — creating the Custom Variable Type that carries your Monday.com item and board IDs.
  • API Reference — Authentication — generating and using Voxworks API keys against the REST API.