Skip to content
Rasmus Wulff Jensen edited this page May 12, 2023 · 64 revisions

This is the Main Client to communicate with the Trello API (aka everything is done via this)

Creating a new TrelloClient

In order to instantiate the client you need to provide:

  • ApiKey (Required)
  • Token (Required)
  • Options (Optional)
  • HttpClient (Optional)

Example

TrelloClient client = new TrelloClient("APIKey", "TOKEN");

Methods

Method Description
GetActionsOfBoardAsync Get the most recent Actions (Changelog Events) of a board
GetActionsOnCardAsync Get the most recent Actions (Changelog Events) on a Card

Clone this wiki locally