-
Notifications
You must be signed in to change notification settings - Fork 4
GetPluginsOnBoardAsync
Rasmus Wulff Jensen edited this page Apr 1, 2025
·
2 revisions
This method retrieves a list of plugins that are registered on a specified Trello board. Plugins in Trello are associated with Power-Ups, which extend the functionality of boards.
async Task<List<Plugin>> GetPluginsOnBoardAsync(string boardId)
-
boardId
The unique identifier of the Trello board from which to retrieve the plugins.
List<Plugin>
A collection of plugins registered on the specified board.
// Example 1: Retrieve all plugins on a specific board.
string boardId = "<your_board_id>";
List<Plugin> plugins = await trelloClient.GetPluginsOnBoardAsync(boardId);
foreach (Plugin plugin in plugins)
{
Console.WriteLine($"Plugin Name: {plugin.Name}, Plugin ID: {plugin.Id}");
}
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')