You can find your Monday.com app credentials by visiting your Monday.com account.You’ll need the following information to set up your Monday.com app with Paragon:
Once your users have connected their Monday.com account, you can use the Paragon SDK to access the Monday.com API on behalf of connected users.See the Monday.com REST API documentation for their full API reference.Any Monday.com API endpoints can be accessed with the Paragon SDK as shown in this example.
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration// Authenticate the userparagon.authenticate(<ProjectId>, <UserToken>);// Query Itemsawait paragon.request("monday.com", "/", { method: "POST", body: {"query":"query { items (ids: [157244624, 201781760, 239164869]) { name } }"}});// Create an itemawait paragon.request("monday.com", "/", { method: "POST", body: {"query":"mutation { create_item (board_id: 1234567, group_id: \"today\", item_name: \"new item\") { id }}});
Webhook triggers can be used to run workflows based on events in your users’ Monday.com account. For example, you might want to trigger a workflow whenever items are updated to sync your users’ Monday.com items to your application in real-time.
You can find the full list of Webhook Triggers for Monday.com below:
Item Created
Item Updated Trigger when Monday.com items have either a name change or a column value change.