Experience Intelligent Phone, Meetings, Contact Center, and AI Solutions with RingCentral, the complete cloud communications platform.
Go to siteRingCentral is a comprehensive cloud communication platform that melds messaging, video, and phone services. Integrating RingCentral with Pipedream allows for automated workflows involving SMS sending, call management, and leveraging communication logs for data-driven insights. With Pipedream's serverless execution model, you can trigger actions based on specific RingCentral events or schedule tasks to run at predetermined intervals, all without writing extensive code.
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}`,
},
})
},
})
Customer Support Ticket Trigger: When a missed call is detected on RingCentral, create a support ticket in Zendesk. This ensures timely follow-up and maintains high customer service standards.
SMS Campaign Analytics: Capture SMS messages sent from RingCentral, store them with Pipedream's built-in data stores, and analyze the data for campaign performance. Integrate with Google Sheets to easily share insights across your team.
Automated Meeting Reminders: Before a scheduled meeting, use RingCentral API to send a reminder via SMS to all participants. Sync meeting details from a Google Calendar event to ensure reminders are accurate and timely.
Gets a recording and downloads it to the /tmp directory. See the documentation
RingCentral uses OAuth authentication. When you connect your RingCentral account, Pipedream will open a popup window where you can sign into RingCentral and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any RingCentral API.
Pipedream requests the following authorization scopes when you connect your account:
GET
{{custom_fields.instancetype}}.ringcentral.com/restapi/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
{{custom_fields.instancetype}}.ringcentral.com/restapi/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
code={{oauth.code}}
&
Content Type=application/x-www-form-urlencoded
&
grant_type=authorization_code
&
redirect_uri={{oauth.redirect_uri}}
POST
{{custom_fields.instancetype}}.ringcentral.com/restapi/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}
&
Content Type=application/x-www-form-urlencoded