To get data from Trello or automate creating new cards, use the Trello module.
When you add a Trello Trigger to your program, you will be prompted to link an account if you have not done so already.
Choose when you would like the trigger to run:
When one of my boards changes
When a list on one of my boards changes
When a specific card changes
If the trigger is set to run "when a specific card changes," you will be able to select one of the 1000 most-recent cards on your Trello board.
Select which Trello event data to retrieve as program variables.
The following outputs are always available, regardless of event type:
Changed_Action = {type : String,date : String,name : String,username : String}Changed_Board = {name : String,id : String}
List change events produce the following additional outputs:
Changed_List = {name : String,id : String}
Card change events produce the following additional outputs:
Changed_Card = {name : String,id : String,description : String,due_date : String,url : String}
In the advanced settings, you can choose to output the raw JSON data sent by Trello in the webhook event.