I have a python codebase that outputs a csv file, how can I integrate the csv to monday.com using the monday API? I want the csv file to be added to a monday board and each row in the csv file should be an item on the monday board.
Hey Danie lamoo
Integrate the CSV data with Monday.com, use the Monday API to create items based on each row in the CSV.
Parse the CSV file in your Python code using a library like csv
or pandas`. This allows you to iterate through each row and capture the data.
Using the Monday API, you’ll need to map the columns from the CSV to the corresponding columns on your Monday board.
For each row in the CSV, send a request to the Monday API to create a new item on your board. You’ll send this as a POST request with the relevant data.
Let’s Schedule the call