Skip to main content
Trello logo

Trello

Manage Trello: boards, lists, cards, checklists, labels, members, comments. Exposes 45 actions covering the full API surface the agent needs - read and write.

What it can do

MethodWhat it does
trello_get_memberGet a Trello member profile - GET /members/{id}.
trello_list_boardsList boards for a member - GET /members/{id}/boards.
trello_get_boardGet a board - GET /boards/{id}.
trello_create_boardCreate a board - POST /boards.
trello_update_boardUpdate a board - PUT /boards/{id}.
trello_delete_boardDelete a board - DELETE /boards/{id}.
trello_list_listsList all lists on a board - GET /boards/{id}/lists.
trello_get_listGet a list - GET /lists/{id}.
trello_create_listCreate a list - POST /lists.
trello_update_listUpdate a list - PUT /lists/{id}.
trello_archive_listArchive a list - PUT /lists/{id}/closed.
trello_list_cardsList cards in a list - GET /lists/{id}/cards.
trello_get_cardGet a card - GET /cards/{id}.
trello_create_cardCreate a card - POST /cards.
trello_update_cardUpdate a card - PUT /cards/{id}.
trello_delete_cardDelete a card - DELETE /cards/{id}.
trello_list_card_membersList members assigned to a card - GET /cards/{id}/members.
trello_add_card_memberAdd a member to a card - POST /cards/{id}/members.
trello_remove_card_memberRemove a member from a card - DELETE /cards/{id}/members/{idMember}.
trello_list_checklistsList checklists on a card - GET /cards/{id}/checklists.
trello_create_checklistCreate a checklist on a card - POST /checklists.
trello_delete_checklistDelete a checklist - DELETE /checklists/{id}.
trello_list_checkitemsList items in a checklist - GET /checklists/{id}/checkItems.
trello_create_checkitemCreate a checkitem - POST /checklists/{id}/checkItems.
trello_update_checkitemUpdate a checkitem - PUT /checklists/{id}/checkItems/{checkItemId}.
trello_delete_checkitemDelete a checkitem - DELETE /checklists/{id}/checkItems/{checkItemId}.
trello_list_labelsList labels on a board - GET /boards/{id}/labels.
trello_create_labelCreate a label - POST /labels.
trello_update_labelUpdate a label - PUT /labels/{id}.
trello_delete_labelDelete a label - DELETE /labels/{id}.
trello_add_card_labelAdd a label to a card - POST /cards/{id}/idLabels.
trello_remove_card_labelRemove a label from a card - DELETE /cards/{id}/idLabels/{idLabel}.
trello_list_commentsList comments on a card - GET /cards/{id}/actions?filter=commentCard.
trello_create_commentCreate a comment on a card - POST /cards/{id}/actions/comments.
trello_delete_commentDelete a comment - DELETE /cards/{idCard}/actions/{id}.
trello_list_attachmentsList attachments on a card - GET /cards/{id}/attachments.
trello_get_attachmentGet an attachment - GET /cards/{idCard}/attachments/{id}.
trello_create_attachmentAttach a URL to a card - POST /cards/{id}/attachments.
trello_delete_attachmentDelete an attachment - DELETE /cards/{idCard}/attachments/{id}.
trello_list_board_membersList members on a board - GET /boards/{id}/members.
trello_add_board_memberAdd a member to a board - POST /boards/{id}/members.
trello_remove_board_memberRemove a member from a board - DELETE /boards/{id}/members/{idMember}.
trello_list_organizationsList organizations for a member - GET /members/{id}/organizations.
trello_get_organizationGet an organization - GET /organizations/{id}.
trello_searchSearch cards, boards, members, orgs - GET /search.

How to get credentials

This connector uses an API key / token. Create one in the provider dashboard, then paste it into FlyMyAI:

  • TRELLO_API_KEY - Trello - create a Power-Up then copy the API key. (https://trello.com/power-ups/admin)
  • TRELLO_TOKEN - Click 'Token' next to your API key to generate a user token.

Fields to fill in FlyMyAI

FlyMyAI fieldWhere it comes from
TRELLO_API_KEYTrello - create a Power-Up then copy the API key.
TRELLO_TOKENClick 'Token' next to your API key to generate a user token.

Troubleshooting

  • 401 Unauthorized / 403 Forbidden - the token is wrong, expired, or missing a required scope - regenerate it.
  • 429 Too Many Requests - you hit the provider rate limit; retry after a short backoff.
  • Unexpected 4xx on writes - double-check required fields; the agent confirms before write actions.
We love our partners - FlyMy.AI builds with the best. Thanks, Trello!