with Trello and Orderspace?
Emit new event for each new Trello notification for the authenticated user.
Emit new event when an inventory level is updated
Emit new events for activity matching a board, event types, lists and/or cards.
Emit new event when a new attachment is added on a board.
Emit new event for each new comment added to a card.
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
Moves a card to the specified board/list pair. 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, }) }, }) import { axios } from "@pipedream/platform" export default defineComponent({ props: { orderspace: { type: "app", app: "orderspace", } }, async run({steps, $}) { return await axios($, { url: `https://api.orderspace.com/v1/customers`, headers: { Authorization: `Bearer ${this.orderspace.$auth.oauth_access_token}`, }, params: { limit: `20`, }, }) }, })