![]() |
VOOZH | about |
The CData Cmdlets Module for Monday.com is a standard PowerShell module offering straightforward integration with Monday.com. Below, you will find examples of using our Monday Cmdlets with native PowerShell cmdlets.
You can connect to Monday.com using either API Token authentication or OAuth authentication.
Connect to Monday.com by specifying the APIToken. Set the AuthScheme to Token and obtain the APIToken as follows:
Alternatively, you can establish a connection using OAuth (refer to the OAuth section of the Help documentation).
$conn = Connect-Monday -APIToken "$APIToken"
Follow the steps below to retrieve data from the Invoices table and pipe the result into to a CSV file:
Select-Monday -Connection $conn -Table Invoices | Select -Property * -ExcludeProperty Connection,Table,Columns | Export-Csv -Path c:\myInvoicesData.csv -NoTypeInformation
You will notice that we piped the results from Select-Monday into a Select-Object cmdlet and excluded some properties before piping them into an Export-Csv cmdlet. We do this because the CData Cmdlets append Connection, Table, and Columns information onto each "row" in the result set, and we do not necessarily want that information in our CSV file.
The Connection, Table, and Columns are appended to the results in order to facilitate piping results from one of the CData Cmdlets directly into another one.Download a free trial of the Monday.com Cmdlets to get started:
Download NowLearn more:
👁 Monday.com IconAn easy-to-use set of PowerShell Cmdlets offering real-time access to Monday.com. The Cmdlets allow users to easily read live data - just like working with SQL server.