Automate Trello Integration Tasks from PowerShell

Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Are you in search of a quick and easy way to access Trello data from PowerShell? This article demonstrates how to utilize the Trello Cmdlets for tasks like connecting to Trello data, automating operations, downloading data, and more.

The CData ADO.NET Provider for Trello is a standard ADO.NET Provider that make it easy to accomplish data cleansing, normalization, backup, and other integration tasks by enabling real-time access to Trello.

ADO.NET Provider

The ADO.NET Provider provides a SQL interface for Trello; this tutorial shows how to use the Provider to retrieve Trello data.

Once you have acquired the necessary connection properties, accessing Trello data in PowerShell can be enabled in three steps.

Trello uses token-based authentication to grant third-party applications access to their API. When a user has granted an application access to their data, the application is given a token that can be used to make requests to Trello's API.

Trello's API can be accessed in 2 different ways. The first is using Trello's own Authorization Route, and the second is using OAuth1.0.

  • Authorization Route: At the moment of registration, Trello assigns an API key and Token to the account. See the Help documentation for information on how to connect via the Authorization route.
  • OAuth Route: Similar to using Authorization, OAuth creates an Application Id and Secret when you create your account. See the Help documentation for information on how to to connect.
  1. Load the provider's assembly:

    
    [Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData ADO.NET Provider for Trello\lib\System.Data.CData.Trello.dll")
        
  2. Connect to Trello:

     
    $conn= New-Object System.Data.CData.Trello.TrelloConnection("APIKey=myApiKey;Token=myGeneratedToken;InitiateOAuth=GETANDREFRESH;")
    $conn.Open()
    
  3. Instantiate the TrelloDataAdapter, execute an SQL query, and output the results:

    
    $sql="SELECT BoardId, Name from Boards"
    
    $da= New-Object System.Data.CData.Trello.TrelloDataAdapter($sql, $conn)
    $dt= New-Object System.Data.DataTable
    $da.Fill($dt)
    
    $dt.Rows | foreach {
    	Write-Host $_.boardid $_.name
    }
      

Ready to get started?

Download a free trial of the Trello Data Provider to get started:

 Download Now

Learn more:

Trello Icon Trello ADO.NET Provider

Rapidly create and deploy powerful .NET applications that integrate with Trello data including Lists, Cards, Boards, and more!