RingCentral

Experience Intelligent Phone, Meetings, Contact Center, and AI Solutions with RingCentral, the complete cloud communications platform.

Integrate the RingCentral API with the Stripe API

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

Create Meeting with Ringcentral API on Custom Webhook Events from Stripe API
Stripe + RingCentral
 
Try it
Download Recording with RingCentral API on New Custom Webhook Events from Stripe API
Stripe + RingCentral
 
Try it
Get Message with RingCentral API on New Custom Webhook Events from Stripe API
Stripe + RingCentral
 
Try it
Make CallOut with Ringcentral API on Custom Webhook Events from Stripe API
Stripe + RingCentral
 
Try it
Send SMS with Ringcentral API on Custom Webhook Events from Stripe API
Stripe + RingCentral
 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
New Call Recording from the RingCentral API

Emit new events when a call recording is created

 
Try it
New Event (Instant) from the RingCentral API

Emit new event for each notification from RingCentral of a specified type

 
Try it
New Inbound Call (Instant) from the RingCentral API

Emit new event on each incoming call

 
Try it
Create Meeting with the RingCentral API

Creates a new meeting. See the API docs here.

 
Try it
Download Recording with the RingCentral API

Gets a recording and downloads it to the /tmp directory. 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
Get Message with the RingCentral API

Get message from the Message Store. See the API docs here

 
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

Overview of RingCentral

RingCentral API is a powerful tool that allows users to build applications and
solutions that make communication easier and more convenient. With RingCentral
API, developers can build communication solutions that include voice and video,
SMS/MMS, Fax, and other features.

With RingCentral API, developers can build:

  • Voice and Video calls with advanced interactions, such as ringback tones,
    call screening, call forwarding, call recording and conference calling.
  • Rich messaging applications leveraging SMS, MMS, and chat functionality.
  • Fax solutions, such as sending and receiving faxes through a web application.
  • Presence and availability services, allowing users to set their status and
    view the status of other users.
  • Automated voice solutions such as voice recognition, voice menus and more.
  • Voice analytics and call quality monitoring.
  • Contact center solutions with the ability to monitor and manage queues.

Connect RingCentral

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: {
    ringcentral: {
      type: "app",
      app: "ringcentral",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.ringcentral.$auth.instancetype}.ringcentral.com/restapi/v1.0/account/~`,
      headers: {
        Authorization: `Bearer ${this.ringcentral.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Stripe

With Stripe, you can easily accept payments online. Stripe provides a simple
and powerful way to accept payments over the internet. With Stripe, you can
easily

  • Accept payments from major credit and debit cards
  • Process payments in over 130 currencies
  • Set up recurring billing
  • Accept Apple Pay, Google Pay, and other alternative payment methods
  • And much more!

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 })
  },
})