Monday.com Integration Example
To illustrate this capability, we’ll explore a practical use case involving Monday.com integration. Our workflow accomplishes two key operations:- Data Retrieval: Using the HTTP step, we connect to Monday.com’s API to fetch all items from a specific board, giving us comprehensive visibility into our project data.
- Data Creation: We then utilize the HTTP step again to write new items back to the Monday.com board, effectively creating a bidirectional data flow between systems.
Prerequisites for Monday.com Integration
In order for us to achieve this, the first thing we will need is an API key for Monday.com, and a board that we will work on. For our example, we have created a test board that looks like this:
Creating the REST API workflow
We now prepared to build our first REST workflow:
- Entry Step: Initializes the workflow and processes the input parameters
- HTTP Step: Executes the API calls to Monday.com to retrieve board data
- Python Processing: Generates formatted HTML content based on the retrieved data
- Email Notification: Sends a comprehensive email containing all items read from the board
Configuring the REST API for Monday.com
Our HTTP Request requires configuration of several essential fields to properly communicate with the Monday.com API:- URL: The specific Monday.com API endpoint we’ll be accessing
- Method: The HTTP method (POST/GET/etc.) appropriate for our operation
- Body: The payload data we’re sending to the endpoint
-
Auth Type: Authentication method (Simple/None/Bearer)
- For Bearer authentication, the Auth Value field will contain our Monday.com API key
- Headers: Required HTTP request headers for proper API communication
Reading Items from a board




Writing Items to a board

- Creates a new item within a dedicated “Detached EBS” group in our Monday.com board
- Populates a custom “Total Cost Savings” Numbers column we’ve added to capture financial impact

- Read the Detached EBS volumes cases
- Transform the data to our columns structure
- Foreach volume - write the item to our Monday board
Transforming our data using AI
Let’s say the response we got from the EBS volumes cases looks like this: We can work with the current values or we can transform the data using a python step to the relevant format using AILet’s copy the data structure to our AI helper in the python step and write the following prompt:


Writing the items to Monday
We will implement an iterative approach using the Loop step to process each detached EBS volume case individually. This methodology enables us to write each instance to our Monday.com board systematically and efficiently. The API call structure remains consistent across iterations, allowing us to reuse the step configuration from our previous workflow. Our primary modification will be adjusting the query body to perform data mutation according to Monday.com’s API documentation.Obtaining the Group ID and the Cost column ID
To properly target our “Detached EBS” group with the newly created Costs column, we first need to identify their unique IDs. While this could be accomplished through a dedicated API calls, we can simplify the process by:- Adding a temporary item to our newly created group

- Executing our existing “read items” query from the previous workflow step
- Extracting the Group ID and the Costs column ID from the response


Conclusion: Unlocking Limitless Automation Possibilities
The Wiv.ai platform stands as a powerful automation solution that enables organizations to create tailor-made workflows aligned with their specific needs. By providing seamless integration with any REST API endpoint and offering cloud-based execution capabilities, Wiv.ai transcends traditional FinOps boundaries to become a truly versatile automation instrument. As demonstrated through our Monday.com integration example, connecting disparate systems and orchestrating complex workflows becomes remarkably straightforward. The platform’s flexibility allows organizations to implement solutions that perfectly complement their:- Daily operational requirements
- Organizational workflows
- Company culture
- FinOps maturity level