![]() |
VOOZH | about |
The CData Cmdlets Module for Todoist is a standard PowerShell module offering straightforward integration with Todoist. Below, you will find examples of using our API Cmdlets with native PowerShell cmdlets.
Start by setting the Profile connection property to the location of the Todoist Profile on disk (e.g. C:\profiles\Todoist.apip). Next, set the ProfileSettings connection property to the connection string for Todoist (see below).
To authenticate to Todoist, and connect to your own data or to allow other users to connect to their data, you can use the OAuth standard.
First, register an OAuth application with Todoist. To do so, go to App Management Console, create a new application and configure a valid OAuth redirect URL. Your Oauth application will be assigned a client id and a client secret.
After setting the following connection properties, you are ready to connect:
$conn = Connect-API -Profile "$Profile" -Authscheme "$Authscheme" -OAuthClientId "$OAuthClientId" -OAuthClientSecret "$OAuthClientSecret" -CallbackUrl "$CallbackUrl"
Follow the steps below to retrieve data from the Tasks table and pipe the result into to a CSV file:
Select-API -Connection $conn -Table Tasks | Select -Property * -ExcludeProperty Connection,Table,Columns | Export-Csv -Path c:\myTasksData.csv -NoTypeInformation
You will notice that we piped the results from Select-API 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.Connect to live data from Todoist with the API Driver
Connect to Todoist