Gumroad

E-commerce and audience-building software for creators

Integrate the Gumroad API with the Trello API

Setup the Gumroad API trigger to run a workflow which integrates with the Trello API. Pipedream's integration platform allows you to integrate Gumroad and Trello remarkably fast. Free for developers.

Add Attachment to Card via URL with Trello API on New Cancellation from Gumroad API
Gumroad + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New Cancellation from Gumroad API
Gumroad + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New Product from Gumroad API
Gumroad + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New Product from Gumroad API
Gumroad + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New Refund from Gumroad API
Gumroad + Trello
 
Try it
New Cancellation from the Gumroad API

Emit new event on a sale is cancelled.

 
Try it
Card Moved (Instant) from the Trello API

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

 
Try it
New Product from the Gumroad API

Emit new event on each new product.

 
Try it
New Card (Instant) from the Trello API

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

 
Try it
New Refund from the Gumroad API

Emit new event on a sale is refunded.

 
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

Overview of Gumroad

The Gumroad API lets you tap into your digital storefront with ease, enabling seamless automation of your e-commerce activities. It's a game-changer for creators and entrepreneurs who use Gumroad to sell products. With this API on Pipedream, you can automate tasks like order processing, customer management, and sales reporting. Imagine syncing new purchases with your CRM, sending custom thank-you emails post-purchase, or compiling sales data without lifting a finger. Pipedream's serverless platform turns these ideas into reality, connecting Gumroad to countless other apps with zero server maintenance.

Connect Gumroad

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    gumroad: {
      type: "app",
      app: "gumroad",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.gumroad.com/v2/user`,
      headers: {
        Authorization: `Bearer ${this.gumroad.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Trello

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.

Connect Trello

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
    })
  },
})