Trello

Project Management integration · 43 node(s) including 1 trigger.

00Overview

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Trello

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

FieldTypeDetails
API KeysecretRequiredYour Trello API key
API TokensecretRequiredYour Trello API token
i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Attachment

Create Attachment

trello/attachment_create · Action

Attach a URL to a Trello card, optionally naming it.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card to attach to
URLstringRequiredThe URL to attach, e.g. https://example.com/file.pdf
NamestringA display name for the attachment (optional)
MIME TypestringThe MIME type of the attachment (optional)

Returns: id, result, tool_result, success, error

Delete Attachment

trello/attachment_delete · Action

Delete an attachment from a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the attachment is on
Attachment IDstringRequiredThe ID of the attachment to delete

Returns: id, result, tool_result, success, error

Get Attachment

trello/attachment_get · Action

Fetch a single attachment on a Trello card by its ID.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the attachment is on
Attachment IDstringRequiredThe ID of the attachment to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: id, result, tool_result, success, error

Get Attachments

trello/attachment_get_all · Action

List the attachments on a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card whose attachments to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

03Board

Create Board

trello/board_create · Action

Create a new Trello board. Give it a name and an optional description; use Additional Fields for board preferences (visibility, background, etc.).

FieldTypeDetails
API KeysecretRequiredYour Trello API key
NamestringRequiredThe name of the new board
DescriptiontextAn optional description for the board
Additional FieldsobjectExtra Trello fields as JSON, e.g. {"prefs_permissionLevel":"org","idOrganization":"..."}

Returns: id, result, tool_result, success, error

Delete Board

trello/board_delete · Action

Permanently delete a Trello board by its ID. This cannot be undone.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to delete

Returns: id, result, tool_result, success, error

Get Board

trello/board_get · Action

Fetch a single Trello board by its ID. Optionally narrow the returned data with a comma-separated Fields list.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to fetch
FieldsstringComma-separated fields to return, e.g. name,desc,url (default: all)

Returns: id, result, tool_result, success, error

Get Boards

trello/board_get_all · Action

List the Trello boards you can access. Optionally filter (e.g. open, closed, starred) and narrow the returned Fields.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
FilterstringWhich boards to include — choices: All, Open, Closed, Starred
FieldsstringComma-separated fields to return, e.g. name,url (default: all)

Returns: results, count, total, tool_result, success, error

Add Board Member

trello/board_member_add · Action

Add an existing Trello member to a board and set their membership type (normal, admin, or observer).

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to add the member to
MemberstringRequired · ● live pickerThe member to add
Member TypestringRequiredThe member's role on the board — choices: Normal, Admin, Observer
Allow Billable GuestbooleanOptionally allow adding a billable guest without a confirmation

Returns: id, result, tool_result, success, error

Get Board Members

trello/board_member_get_all · Action

List the members of a Trello board. Leave Return All on (the default behaviour when no Limit is set) to get every member; set a Limit and turn Return All off to cap how many are returned.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board whose members to list
Return AllbooleanReturn every member (ignores Limit)
LimitintegerMaximum number of members to return

Returns: results, count, total, tool_result, success, error

Invite Board Member by Email

trello/board_member_invite · Action

Invite someone to a Trello board by email address, optionally setting their membership type and full name.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to invite the member to
EmailstringRequiredThe email address to invite
Member TypestringThe member's role on the board — choices: Normal, Admin, Observer
Full NamestringThe invitee's full name (optional)

Returns: id, result, tool_result, success, error

Remove Board Member

trello/board_member_remove · Action

Remove a member from a Trello board.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to remove the member from
MemberstringRequired · ● live pickerThe member to remove

Returns: id, result, tool_result, success, error

Update Board

trello/board_update · Action

Change an existing Trello board — rename it, edit its description, open/close it, or set any other field via Additional Fields.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to update
NamestringA new name for the board
DescriptiontextA new description for the board
ClosedbooleanClose (archive) the board, or reopen it
SubscribedbooleanSubscribe to the board
Additional FieldsobjectExtra Trello fields as JSON, e.g. {"prefs/background":"blue"}

Returns: id, result, tool_result, success, error

04Card

Create Comment

trello/card_comment_create · Action

Add a comment to a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card to comment on
CommenttextRequiredThe comment text

Returns: id, result, tool_result, success, error

Delete Comment

trello/card_comment_delete · Action

Delete a comment from a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the comment belongs to
Comment IDstringRequiredThe ID of the comment to delete

Returns: id, result, tool_result, success, error

Update Comment

trello/card_comment_update · Action

Change the text of an existing comment on a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the comment belongs to
Comment IDstringRequiredThe ID of the comment to update
CommenttextRequiredThe new comment text

Returns: id, result, tool_result, success, error

Create Card

trello/card_create · Action

Create a new card in a Trello list. Pick a board to load its lists, choose the list, and give the card a name plus optional description, due date, members, and labels.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the list (used to load the list picker)
ListstringRequired · ● live pickerThe list to create the card in
NamestringRequiredThe name of the card
DescriptiontextAn optional description for the card
Due DatedatetimeAn optional due date for the card
Positionstringtop, bottom, or a positive number
Member IDsstringComma-separated member IDs to assign
Label IDsstringComma-separated label IDs to attach
Additional FieldsobjectExtra Trello fields as JSON, e.g. {"urlSource":"https://..."}

Returns: id, result, tool_result, success, error

Delete Card

trello/card_delete · Action

Permanently delete a Trello card by its ID. This cannot be undone.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe ID of the card to delete

Returns: id, result, tool_result, success, error

Get Card

trello/card_get · Action

Fetch a single Trello card by its ID. Optionally narrow the returned data with a comma-separated Fields list.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe ID of the card to fetch
FieldsstringComma-separated fields to return, e.g. name,desc,due (default: all)

Returns: id, result, tool_result, success, error

Update Card

trello/card_update · Action

Change an existing Trello card — rename it, edit the description, set a due date, move it to another list or board, or update members and labels.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe ID of the card to update
NamestringA new name for the card
DescriptiontextA new description for the card
Due DatedatetimeA due date for the card
Due CompletebooleanMark the due date complete
Move to Liststring● live pickerMove the card to this list ID
Move to Boardstring● live pickerMove the card to this board ID
Positionstringtop, bottom, or a positive number
Member IDsstringComma-separated member IDs (replaces the set)
Label IDsstringComma-separated label IDs (replaces the set)
ClosedbooleanArchive the card, or reopen it
SubscribedbooleanSubscribe to the card
Additional FieldsobjectExtra Trello fields as JSON

Returns: id, result, tool_result, success, error

05Checklist

Create Checklist

trello/checklist_create · Action

Add a checklist to a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card to add the checklist to
NamestringRequiredThe name of the checklist
Positionstringtop, bottom, or a positive number
Additional FieldsobjectExtra Trello fields as JSON, e.g. {"idChecklistSource":"..."}

Returns: id, result, tool_result, success, error

Create Checklist Item

trello/checklist_create_check_item · Action

Add an item to a Trello checklist.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Checklist IDstringRequiredThe checklist to add the item to
NamestringRequiredThe text of the checklist item
CheckedbooleanCreate the item already checked
Positionstringtop, bottom, or a positive number

Returns: id, result, tool_result, success, error

Delete Checklist

trello/checklist_delete · Action

Delete a checklist from a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the checklist belongs to
Checklist IDstringRequiredThe ID of the checklist to delete

Returns: id, result, tool_result, success, error

Delete Checklist Item

trello/checklist_delete_check_item · Action

Delete a checklist item from a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the checklist item is on
Checklist Item IDstringRequiredThe ID of the checklist item to delete

Returns: id, result, tool_result, success, error

Get Checklist

trello/checklist_get · Action

Fetch a single Trello checklist by its ID.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Checklist IDstringRequiredThe ID of the checklist to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: id, result, tool_result, success, error

Get Checklists

trello/checklist_get_all · Action

List the checklists on a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card whose checklists to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

Get Checklist Item

trello/checklist_get_check_item · Action

Fetch a single item from a Trello card's checklist.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the checklist item is on
Checklist Item IDstringRequiredThe ID of the checklist item to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: id, result, tool_result, success, error

Get Completed Checklist Items

trello/checklist_get_completed_check_items · Action

List the completed checklist items on a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card whose completed items to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

Update Checklist Item

trello/checklist_update_check_item · Action

Update a checklist item on a Trello card — rename it, mark it complete/incomplete, or reposition it.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Card IDstringRequiredThe card the checklist item is on
Checklist Item IDstringRequiredThe ID of the checklist item to update
NamestringA new text for the item
StatestringMark the item complete or incomplete — choices: Complete, Incomplete
Positionstringtop, bottom, or a positive number

Returns: id, result, tool_result, success, error

06Label

Add Label to Card

trello/label_add_to_card · Action

Attach an existing label to a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the label (used to load the label picker)
Card IDstringRequiredThe card to add the label to
LabelstringRequired · ● live pickerThe label to add

Returns: id, result, tool_result, success, error

Create Label

trello/label_create · Action

Create a new label on a Trello board with a name and color.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to create the label on
NamestringThe name of the label
ColorstringThe label color — choices: None, Green, Yellow, Orange, Red, Purple, Blue, Sky, Lime, Pink, Black

Returns: id, result, tool_result, success, error

Delete Label

trello/label_delete · Action

Delete a Trello label by its ID.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the label (used to load the label picker)
LabelstringRequired · ● live pickerThe label to delete

Returns: id, result, tool_result, success, error

Get Label

trello/label_get · Action

Fetch a single Trello label by its ID.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the label (used to load the label picker)
LabelstringRequired · ● live pickerThe label to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: id, result, tool_result, success, error

Get Labels

trello/label_get_all · Action

List the labels on a Trello board.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board whose labels to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

Remove Label from Card

trello/label_remove_from_card · Action

Remove a label from a Trello card.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the label (used to load the label picker)
Card IDstringRequiredThe card to remove the label from
LabelstringRequired · ● live pickerThe label to remove

Returns: id, result, tool_result, success, error

Update Label

trello/label_update · Action

Change a Trello label's name or color.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the label (used to load the label picker)
LabelstringRequired · ● live pickerThe label to update
NamestringA new name for the label
ColorstringThe label color — choices: None, Green, Yellow, Orange, Red, Purple, Blue, Sky, Lime, Pink, Black

Returns: id, result, tool_result, success, error

07List

Archive/Unarchive List

trello/list_archive · Action

Archive (close) a Trello list, or reopen it, with the Archive toggle.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the list (used to load the list picker)
ListstringRequired · ● live pickerThe list to archive or unarchive
ArchivebooleanOn = archive the list; off = reopen it (defaults to archive)

Returns: id, result, tool_result, success, error

Create List

trello/list_create · Action

Create a new list on a Trello board.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board to add the list to
NamestringRequiredThe name of the list
Positionstringtop, bottom, or a positive number
Additional FieldsobjectExtra Trello fields as JSON, e.g. {"idListSource":"..."}

Returns: id, result, tool_result, success, error

Get List

trello/list_get · Action

Fetch a single Trello list by its ID. Optionally narrow the returned data with a comma-separated Fields list.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the list (used to load the list picker)
ListstringRequired · ● live pickerThe list to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: id, result, tool_result, success, error

Get Lists

trello/list_get_all · Action

List the lists on a Trello board. Optionally filter by open/closed and narrow the returned Fields.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
BoardstringRequired · ● live pickerThe board whose lists to fetch
FilterstringWhich lists to include — choices: Open, Closed, All
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

Get Cards in List

trello/list_get_cards · Action

List all cards in a Trello list. Optionally narrow the returned Fields.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the list (used to load the list picker)
ListstringRequired · ● live pickerThe list whose cards to fetch
FieldsstringComma-separated fields to return (default: all)

Returns: results, count, total, tool_result, success, error

Update List

trello/list_update · Action

Change an existing Trello list — rename it, archive/reopen it, move it to another board, or reposition it.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
Boardstring● live pickerThe board that owns the list (used to load the list picker)
ListstringRequired · ● live pickerThe list to update
NamestringA new name for the list
ClosedbooleanArchive the list, or reopen it
Move to BoardstringMove the list to this board ID
Positionstringtop, bottom, or a positive number
SubscribedbooleanSubscribe to the list

Returns: id, result, tool_result, success, error

08Triggers

Trello Webhook Trigger

trigger/trello_webhook · Trigger

Triggers a flow when something changes on a Trello board, list, or card you watch (a card is created, moved, commented on, and so on). The webhook is registered automatically for the model you choose; set the Trello API Secret to have each delivery's HMAC-SHA1 signature verified.

FieldTypeDetails
API KeysecretRequiredYour Trello API key
WatchstringRequiredThe board (or list/card ID) to watch for changes
API SecretsecretOptional — your Trello API Secret, used to verify each delivery's HMAC-SHA1 signature

Returns: content, action_type, action_id, model_id, board_id, card_id, list_id, member, date, body

09Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.