Inoreader

Build your own newsfeed

Integrate the Inoreader API with the Stripe API

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

Subscribe To Feed with Inoreader API on New Custom Webhook Events from Stripe API
Stripe + Inoreader
 
Try it
Cancel a Payment Intent with Stripe API on New Article In Folder from Inoreader API
Inoreader + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Broadcasted Article from Inoreader API
Inoreader + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Starred Article from Inoreader API
Inoreader + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Subscription from Inoreader API
Inoreader + Stripe
 
Try it
New Article In Folder from the Inoreader API

Emit new event when a new article is added to a folder. See the Documentation

 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
New Broadcasted Article from the Inoreader API

Emit new event when a new broadcasted article is added. See the Documentation

 
Try it
New Starred Article from the Inoreader API

Emit new event when a new starred article is added. See the Documentation

 
Try it
New Subscription from the Inoreader API

Emit new event when a new subscription is added. See the Documentation

 
Try it
Cancel a Payment Intent with the Stripe API

Cancel a payment intent. Once canceled, no additional charges will be made by the payment intent and any operations on the payment intent will fail with an error. For payment intents with status=requires_capture, the remaining amount_capturable will automatically be refunded. See the docs for more information

 
Try it
Cancel Or Reverse a Payout with the Stripe API

Cancel or reverse a payout. A payout can be canceled only if it has not yet been paid out. A payout can be reversed only if it has already been paid out. Funds will be refunded to your available balance. See the docs for more information

 
Try it
Subscribe To Feed with the Inoreader API

Subscribe to a feed. See the Documentation

 
Try it
Capture a Payment Intent with the Stripe API

Capture the funds of an existing uncaptured payment intent. See the docs for more information

 
Try it
Confirm a Payment Intent with the Stripe API

Confirm that your customer intends to pay with current or provided payment method. Upon confirmation, Stripe will attempt to initiate a payment. See the docs for more information

 
Try it

Overview of Inoreader

The Inoreader API taps into the functionality of the Inoreader content reader, allowing the automation of tasks like subscribing to new feeds, listing articles, or marking items as read. In Pipedream, this can be leveraged to create custom workflows that integrate with other apps, trigger actions based on new content, or manage content consumption in a more efficient way.

Connect Inoreader

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: {
    inoreader: {
      type: "app",
      app: "inoreader",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.inoreader.com/reader/api/0/user-info`,
      headers: {
        Authorization: `Bearer ${this.inoreader.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Stripe

The Stripe API is a powerful tool for managing online payments, subscriptions, and invoices. With Pipedream, you can leverage this API to automate payment processing, monitor transactions, and sync billing data with other services. Pipedream's no-code platform allows for quick integration and creation of serverless workflows that react to Stripe events in real-time. For instance, you might automatically update customer records, send personalized emails after successful payments, or escalate failed transactions to your support team.

Connect Stripe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import stripe from 'stripe'

export default defineComponent({
  props: {
    stripe: {
      type: "app",
      app: "stripe",
    }
  },
  async run({steps, $}) {
    const client = stripe(this.stripe.$auth.api_key)

    return await client.accounts.list({ limit: 1 })
  },
})