Trello is a collaboration and project management platform that helps teams organize tasks using boards, lists, and cards. It provides REST APIs that allow developers to automate workflows, manage boards and cards, collaborate with team members, and integrate task tracking into their applications.
Authentication
Integrating your application with Trello allows you to execute board and card operations, manage lists, add comments, assign members, and automate workflows. Before starting, ensure you have the following information:
Connection Name: Choose a meaningful name for your connection. Example: "MyAppTrelloIntegration".API Key: Enter your Trello API key generated from the Trello Developer Portal.API Token: Enter the API token associated with your Trello account to authorize API requests.
Actions :
Actions | Description |
| Creates a new board in Trello. |
| Deletes an existing board. |
| Retrieves all boards accessible to the authenticated user. |
| Creates a new list within a board. |
| Retrieves all lists from a specified board. |
| Creates a new card in a specified list. |
| Updates card details such as name, description, due date, or members. |
| Deletes a specified card. |
| Moves a card from one list to another. |
| Adds a comment to a card. |
| Creates a checklist within a card. |
| Adds an item to an existing checklist. |
| Creates a label on a board. |
| Associates a label with a card. |
| Invites a member to collaborate on a board. |
| Creates a webhook to receive real-time updates from Trello. |