with Trello and Notion?
Emit new event for each new Trello notification for the authenticated user.
Emit new event when a new comment is created in a page or block. See the documentation
Emit new event when a data source is created. See the documentation
Emit new event when a page is created or updated in the selected data source. See the documentation
Emit new event when a page is created or updated in the selected data source. See the documentation
Emit new event when a page is created in the selected data source. See the documentation
Emit new event each time a webhook event is received. Webhook must be setup in Notion. See the documentation
Emit new event when the selected page or one of its sub-pages is updated. See the documentation
Emit new event each time a page property is updated in a data source. For use with Page Properties Updated event type. Webhook must be set up in Notion. See the documentation
Emit new events for activity matching a board, event types, lists and/or cards.
Emit new event when a selected page is updated. See the documentation
Emit new event when a new attachment is added on a board.
Emit new event for each new comment added to a card.
Append new and/or existing blocks to the specified parent. See the documentation
Use this action to finalize a mode=multi_part
file upload after all of the parts have been sent successfully. See the documentation
Create a comment in a page or existing discussion thread. See the documentation
Create a database and its initial data source. See the documentation
Create a page from a data source. See the documentation
Sets a Block object, including page blocks, to archived: true using the ID specified. See the documentation
Create a new page copied from an existing page block. See the documentation
Searches for a page or data source. See the documentation
Adds an existing label to the specified card. See the documentation
Completes an existing checklist item in a card. See the documentation
Create a new Trello board or copy from an existing one. See the documentation
Creates a new checklist item in a card. See the documentation
Query a data source with a specified filter. See the documentation
Get all content of a data source. See the documentation
Get the property schema of a data source in Notion. See the documentation
Use this action to retrieve a file upload. See the documentation
Get page content as block objects or markdown. Blocks can be text, lists, media, a page, among others. See the documentation
Get a Property Item object for a selected page and property. See the documentation
Moves a card to the specified board/list pair. See the documentation
Update a page's property values. To append page content, use the Append Block action instead. See the documentation
Searches for boards matching the specified query. See the documentation
Searches for cards matching the specified query. See the documentation
Find a checklist on a particular board or card by name. See the documentation here and here
Trello's API lets you craft workflows around managing boards, lists, cards, and users. With Pipedream, you can automate Trello tasks, like syncing cards with external databases, updating checklists, and posting notifications to other platforms. It enables seamless connection with other apps, fostering productivity by automating routine board operations, card management, and team notifications.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { trello: { type: "app", app: "trello", } }, async run({steps, $}) { return await axios($, { url: `https://api.trello.com/1/members/me`, }, { token: { key: this.trello.$auth.oauth_access_token, secret: this.trello.$auth.oauth_refresh_token, }, oauthSignerUri: this.trello.$auth.oauth_signer_uri, }) }, })
Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { notion: { type: "app", app: "notion", } }, async run({steps, $}) { return await axios($, { url: `https://api.notion.com/v1/users/me`, headers: { Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`, "Notion-Version": `2021-08-16`, }, }) }, })