← Trello + RSS integrations

Merge RSS Feeds with RSS API on Custom Webhook Events (Instant) from Trello API

Pipedream makes it easy to connect APIs for RSS, Trello and 2,000+ other apps remarkably fast.

Trigger workflow on
Custom Webhook Events (Instant) from the Trello API
Next, do this
Merge RSS Feeds with the RSS API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
4 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Trello trigger and RSS action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Custom Webhook Events (Instant) trigger
    1. Connect your Trello account
    2. Select a Board
    3. Optional- Select one or more Event Types
    4. Optional- Select one or more Lists
    5. Optional- Select one or more Cards
  3. Configure the Merge RSS Feeds action
    1. Connect your RSS account
    2. Configure Feed URLs
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new events for activity matching a board, event types, lists and/or cards.
Version:0.0.11
Key:trello-custom-webhook-events

Trello Overview

With the Trello API, you can:

  • Create new boards
  • Add and remove lists from boards
  • Add and remove cards from lists
  • Add comments to cards
  • Add and remove attachments from cards
  • Add and remove members from boards
  • Change the background of boards
  • And more!

Trigger Code

import common from "../common/common-webhook.mjs";

export default {
  ...common,
  key: "trello-custom-webhook-events",
  name: "Custom Webhook Events (Instant)",
  description: "Emit new events for activity matching a board, event types, lists and/or cards.",
  version: "0.0.11",
  type: "source",
  props: {
    ...common.props,
    board: {
      propDefinition: [
        common.props.trello,
        "board",
      ],
    },
    eventTypes: {
      propDefinition: [
        common.props.trello,
        "eventTypes",
      ],
    },
    lists: {
      propDefinition: [
        common.props.trello,
        "lists",
        (c) => ({
          board: c.board,
        }),
      ],
    },
    cards: {
      propDefinition: [
        common.props.trello,
        "cards",
        (c) => ({
          board: c.board,
        }),
      ],
    },
  },
  hooks: {
    ...common.hooks,
    async deploy() {
      const {
        sampleEvents, sortField,
      } = await this.getSampleEvents();
      sampleEvents.sort((a, b) => (Date.parse(a[sortField]) > Date.parse(b[sortField]))
        ? 1
        : -1);
      for (const action of sampleEvents.slice(-25)) {
        this.emitEvent({
          action,
        });
      }
    },
  },
  methods: {
    ...common.methods,
    async getSampleEvents() {
      const eventTypes = this.eventTypes && this.eventTypes.length > 0
        ? this.eventTypes.join(",")
        : null;
      const actions = await this.trello.getBoardActivity(this.board, eventTypes);
      return {
        sampleEvents: actions,
        sortField: "date",
      };
    },
    isCorrectEventType(event) {
      const eventType = event.body?.action?.type;
      return (
        (eventType) &&
        (!this.eventTypes ||
        this.eventTypes.length === 0 ||
        this.eventTypes.includes(eventType))
      );
    },
    async getResult(event) {
      return event.body;
    },
    async isRelevant({ result: body }) {
      let listId = body.action?.data?.list?.id;
      const cardId = body.action?.data?.card?.id;
      // If listId not returned, see if we can get it from the cardId
      if (cardId && !listId)
        listId = (await this.trello.getCardList(cardId)).id;
      return (
        (!this.lists ||
          this.lists.length === 0 ||
          !listId ||
          this.lists.includes(listId)) &&
        (!this.cards || this.cards.length === 0 || !cardId || this.cards.includes(cardId))
      );
    },
    generateMeta({ action }) {
      const {
        id,
        type: summary,
        date,
      } = action;
      return {
        id,
        summary,
        ts: Date.parse(date),
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
TrellotrelloappThis component uses the Trello app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
BoardboardstringSelect a value from the drop down menu.
Event TypeseventTypesstring[]Select a value from the drop down menu:{ "label": "Add Attachment To Card", "value": "addAttachmentToCard" }{ "label": "Add Checklist To Card", "value": "addChecklistToCard" }{ "label": "Add Label To Card", "value": "addLabelToCard" }{ "label": "Add Member To Board", "value": "addMemberToBoard" }{ "label": "Add Member To Card", "value": "addMemberToCard" }{ "label": "Comment Card", "value": "commentCard" }{ "label": "Convert To Card From Check Item", "value": "convertToCardFromCheckItem" }{ "label": "Copy Card", "value": "copyCard" }{ "label": "Create Card", "value": "createCard" }{ "label": "Create Check Item", "value": "createCheckItem" }{ "label": "Create Label", "value": "createLabel" }{ "label": "Create List", "value": "createList" }{ "label": "Delete Attachment From Card", "value": "deleteAttachmentFromCard" }{ "label": "Delete Card", "value": "deleteCard" }{ "label": "Delete Check Item", "value": "deleteCheckItem" }{ "label": "Delete Comment", "value": "deleteComment" }{ "label": "Delete Label", "value": "deleteLabel" }{ "label": "Email Card", "value": "emailCard" }{ "label": "Move Card From Board", "value": "moveCardFromBoard" }{ "label": "Move Card To Board", "value": "moveCardToBoard" }{ "label": "Move List From Board", "value": "moveListFromBoard" }{ "label": "Move List To Board", "value": "moveListToBoard" }{ "label": "Remove Checklist From Card", "value": "removeChecklistFromCard" }{ "label": "Remove Label From Card", "value": "removeLabelFromCard" }{ "label": "Remove Member From Board", "value": "removeMemberFromBoard" }{ "label": "Remove Member From Card", "value": "removeMemberFromCard" }{ "label": "Update Board", "value": "updateBoard" }{ "label": "Update Card", "value": "updateCard" }{ "label": "Update Check Item", "value": "updateCheckItem" }{ "label": "Update Check Item State On Card", "value": "updateCheckItemStateOnCard" }{ "label": "Update Checklist", "value": "updateChecklist" }{ "label": "Update Comment", "value": "updateComment" }{ "label": "Update Label", "value": "updateLabel" }{ "label": "Update List", "value": "updateList" }
Listslistsstring[]Select a value from the drop down menu.
Cardscardsstring[]Select a value from the drop down menu.

Trigger Authentication

Trello uses OAuth authentication. When you connect your Trello account, Pipedream will open a popup window where you can sign into Trello and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Trello API.

Pipedream requests the following authorization scopes when you connect your account:

readwrite

About Trello

Trello is the flexible work management tool that empowers all teams to plan, track, and accomplish their work, their way.

Action

Description:Retrieve multiple RSS feeds and return a merged array of items sorted by date [See documentation](https://www.rssboard.org/rss-specification)
Version:1.2.6
Key:rss-merge-rss-feeds

RSS Overview

With the RSS API you have the power to create powerful tools and applications.
RSS is a great way to reliably subscribe to, track and build around your
favorite content sources. Here are some examples of things you can create
using the RSS API:

  • A personal news website to syndicate articles from multiple sources.
  • A custom feed reader to deliver timely notifications of updates and news.
  • A live editorial dashboard to track news, trends and public sentiment.
  • An automated “report bot” to aggregate and report on news topics.
  • A competitor tracking tool to stay on top of industry news.
  • A custom RSS-based search engine or RSS-supported deep learning engine.
  • A live events feed to notify users and followers of new developments.

Action Code

import rss from "../../app/rss.app.mjs";
import { defineAction } from "@pipedream/types";
export default defineAction({
    name: "Merge RSS Feeds",
    description: "Retrieve multiple RSS feeds and return a merged array of items sorted by date [See documentation](https://www.rssboard.org/rss-specification)",
    key: "rss-merge-rss-feeds",
    version: "1.2.6",
    type: "action",
    props: {
        rss,
        urls: {
            propDefinition: [
                rss,
                "urls",
            ],
        },
    },
    async run({ $ }) {
        const items = [];
        for (const url of this.urls) {
            const feedItems = await this.rss.fetchAndParseFeed(url);
            items.push(...feedItems);
        }
        $.export("$summary", "Successfully merged feeds");
        return this.rss.sortItemsForActions(items);
    },
});

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
RSSrssappThis component uses the RSS app.
Feed URLsurlsstring[]

Enter either one or multiple URLs from any public RSS feed

Action Authentication

The RSS API does not require authentication.

About RSS

Real Simple Syndication

More Ways to Connect RSS + Trello

Merge RSS Feeds with RSS API on Card Archived (Instant) from Trello API
Trello + RSS
 
Try it
Merge RSS Feeds with RSS API on Card Due Date Reminder from Trello API
Trello + RSS
 
Try it
Merge RSS Feeds with RSS API on Card Moved (Instant) from Trello API
Trello + RSS
 
Try it
Merge RSS Feeds with RSS API on Card Updates (Instant) from Trello API
Trello + RSS
 
Try it
Merge RSS Feeds with RSS API on New Activity (Instant) from Trello API
Trello + RSS
 
Try it
Card Moved (Instant) from the Trello API

Emit new event each time a card is moved to a list.

 
Try it
New Card (Instant) from the Trello API

Emit new event for each new Trello card on a board.

 
Try it
Card Updates (Instant) from the Trello API

Emit new event for each update to a Trello card.

 
Try it
New Label Added To Card (Instant) from the Trello API

Emit new event for each label added to a card.

 
Try it
New Notification from the Trello API

Emit new event for each new Trello notification for the authenticated user.

 
Try it
Add Attachment to Card via URL with the Trello API

Adds a file attachment on a card by referencing a public URL. See the docs here

 
Try it
Add Attachment to Card via URL with the Trello API

Create a file attachment on a card by referencing a public URL

 
Try it
Add Existing Label to Card with the Trello API

Adds an existing label to the specified card. See the docs here

 
Try it
Add Existing Label to Card with the Trello API

Add an existing label to a card.

 
Try it
Add Image Attachment to Card with the Trello API

Adds image to card

 
Try it

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Snowflake
Snowflake
A data warehouse built for the cloud
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.