Recurly

The subscription management platform delivering unrivaled results to smart brands worldwide.

Integrate the Recurly API with the Omnivore API

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

Get Article with Omnivore API on New Account Created from Recurly API
Recurly + Omnivore
 
Try it
Get Article with Omnivore API on New Invoice Created from Recurly API
Recurly + Omnivore
 
Try it
Get Article with Omnivore API on New Subscription Created from Recurly API
Recurly + Omnivore
 
Try it
Get Article with Omnivore API on New Transaction Created from Recurly API
Recurly + Omnivore
 
Try it
Save Page with Omnivore API on New Account Created from Recurly API
Recurly + Omnivore
 
Try it
New Account Created from the Recurly API

Emit new event when a new account is created. See the docs.

 
Try it
New Invoice Created from the Recurly API

Emit new event when a new invoice is created. See the docs.

 
Try it
New Subscription Created from the Recurly API

Emit new event when a new subscription is created. See the docs.

 
Try it
New Transaction Created from the Recurly API

Emit new event when a new transaction is created. See the docs.

 
Try it
Get Article with the Omnivore API

Get a single article and its content. See the documentation

 
Try it
Save Page with the Omnivore API

Save a page with supplied HTML content. See the documentation

 
Try it
Save URL with the Omnivore API

Save a URL to Omnivore. See the documentation

 
Try it
Search For Pages with the Omnivore API

Search for pages in Omnivore. See the documentation

 
Try it

Overview of Recurly

Recurly API provides robust functionality for subscription management, including creating and updating customer accounts, managing billing information, and handling subscription lifecycle events. With Pipedream, you can leverage these capabilities to create automated workflows that respond to events in Recurly, sync data with other systems, and perform actions that enhance your subscription operations and customer experiences.

Connect Recurly

1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = defineComponent({
  props: {
    recurly: {
      type: "app",
      app: "recurly",
    }
  },
  async run({steps, $}) {
    const recurly = require('recurly')
    const client = new recurly.Client(this.recurly.$auth.api_key)
    return await client.listAccounts()
  },
})

Overview of Omnivore

The Omnivore API offers a platform to integrate with various Point of Sale (POS) systems, streamlining data access across multiple restaurant locations and systems. With Pipedream, you can harness this API to automate tasks, sync data, and connect with other services like CRMs, messaging apps, or analytics tools. By setting up triggers and actions, workflows can process transactions, update menus, gather sales reports, and more, all in real time.

Connect Omnivore

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    omnivore: {
      type: "app",
      app: "omnivore",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `query Viewer { me { id name } }`,
    }
    return await axios($, {
      method: "POST",
      url: `https://api-prod.omnivore.app/api/graphql`,
      headers: {
        "authorization": `${this.omnivore.$auth.api_key}`,
      },
      data,
    })
  },
})