Trello
Trello is a project management platform that enables teams to organise work using boards, lists and cards.
This Make.com scenario listens for new product creation events in ShopWired and automatically creates a card in a selected Trello board and list containing key product information.
This scenario allows …
- Automatic creation of a Trello card when a product is created in ShopWired
- Inclusion of product details such as title, description, SKU and pricing
- Assignment of the card to a selected Trello board and list
Prerequisites
Prerequisites
- A Trello account
- A Make.com account with access to instant webhook scenarios
Scenario blueprint
Scenario blueprint
The Make.com scenario blueprint is provided with this guide.
Open the official scenario (v1.0) using the link below:
ShopWired product created → Trello create card (v1.0)
Import the blueprint into your Make.com account and follow the setup steps outlined in this guide.
Scenario setup steps
Scenario setup steps
- Select the scenario blueprint provided with this guide
- Open it in Make.com
- Create a new scenario from the blueprint
- Replace any placeholder values if required
- Connect required accounts
- Turn the scenario on
- Trigger the relevant event in ShopWired
ShopWired webhook data
ShopWired webhook data
Webhook event name: product.created
This webhook fires when a new product is created in ShopWired.
Simplified example payload:
{
"event": {
"topic": "product.created",
"subjectId": 12345,
"createdAt": "2026-02-23T05:53:31+0000",
"data": {
"object": {
"title": "Test Product",
"description": "This is a test product",
"sku": "tp1234",
"price": 9.00,
"costPrice": 5.00,
"salePrice": 7.00,
"url": "https://example.com/test-product"
}
}
}
}
Required user inputs
Required user inputs
| Field | Description |
|---|---|
| Trello connection | Authorise and select the Trello account in Make.com |
| Board | Select the Trello board where cards will be created |
| List | Select the Trello list within the chosen board |
Recommendations
Recommendations
- The scenario requires a real product creation in ShopWired to trigger the webhook
- The card name is set to the ShopWired product title
- The card description contains mapped product information including SKU, pricing and URL
- This scenario creates new Trello cards only and does not update or delete existing cards