3. Send HTTP Requests
Create and update Trello cards from a workflow by mapping API inputs into a Send HTTP Request node.
Last updated
Was this helpful?
Create and update Trello cards from a workflow by mapping API inputs into a Send HTTP Request node.
Build a workflow that creates Trello cards from structured user input.
Then extend it to update existing cards by matching the user’s request to the closest card name.
Our project team is creating Trello cards manually for every new task that comes in — typing titles, descriptions, and due dates one by one.
We need an internal tool where a team member can describe a task, and the system automatically creates a properly structured Trello card in the to-do list on our board.
Create a free Trello account at trello.com.
Create a board with at least three lists.
Example: To Do, In Progress, Done
Get your API key.
Generate a token.
Build a Form interface with these inputs:
Task
Description
List
The List input should be a dropdown that contains the list names from your board.
Task: Design new onboarding screens
Description: Create mockups for the 3-step onboarding flow discussed in Monday's sync
List: To Do
Task: Write Q2 marketing brief
Description: Cover campaign goals, target audience, and budget breakdown for the Q2 push
List: Done
Your workflow should:
Accept the three form inputs.
Map the selected list to the correct Trello list ID.
Use Send HTTP Request to call Trello’s Create a New Card endpoint.
Create the card in the right list.
You may need a second Trello endpoint to retrieve list IDs.
You can get the board ID from the board URL.
The mapping from user-facing list name to list ID must stay dynamic.
Use the Send HTTP Request node for the API call.
Read the Trello docs closely.
Focus on the cURL example and query parameters.
Translate each API field into the correct request section:
URL
HTTP method
headers
query parameters
request body
Add support for updating the description of an existing card.
When updating, the user provides:
The card name
The list the card belongs to
The new description
The workflow should:
Find the closest matching card name in the selected list.
Update the matching card description.
Support approximate matches.
Example: work on workflow should match Build workflow
Then recreate the same workflow using Code Execution or the Terminal tool instead of the earlier approach.
Last updated
Was this helpful?
Was this helpful?

