← RingCentral

New Inbound SMS (Instant) from RingCentral API

Pipedream makes it easy to connect APIs for RingCentral and 1000+ other apps remarkably fast.

Trigger workflow on
New Inbound SMS (Instant) from the RingCentral API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Trigger a workflow on New Inbound SMS (Instant) with RingCentral API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Inbound SMS (Instant) trigger
    1. Connect your RingCentral account
    2. Select one or more Extensions
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on New Inbound SMS (Instant) from Ringcentral API
RingCentral + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Inbound SMS (Instant) from Ringcentral API
RingCentral + Google Sheets
 
Try it
Get Film with SWAPI API on New Inbound SMS (Instant) from Ringcentral API
RingCentral + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New Inbound SMS (Instant) from Ringcentral API
RingCentral + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Inbound SMS (Instant) from RingCentral API
RingCentral + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

New Inbound SMS (Instant) on RingCentral
Description:Emit new event on each incoming SMS
Version:0.1.4
Key:ringcentral-new-inbound-sms

Code

import common from "../common/http-based.mjs";

export default {
  ...common,
  key: "ringcentral-new-inbound-sms",
  name: "New Inbound SMS (Instant)",
  description: "Emit new event on each incoming SMS",
  version: "0.1.4",
  type: "source",
  props: {
    ...common.props,
    extensionId: {
      propDefinition: [
        common.props.ringcentral,
        "extensionId",
      ],
    },
  },
  methods: {
    ...common.methods,
    getSupportedNotificationTypes() {
      return new Set([
        "ringcentral-instant-message-event",
      ]);
    },
    getPropValues() {
      return {
        extensionId: this.extensionId,
      };
    },
    generateMeta(data) {
      const {
        uuid: id,
        body: eventDetails,
        timestamp,
      } = data;
      const ts = Date.parse(timestamp);

      const { from: { phoneNumber: senderPhoneNumber } } = eventDetails;
      const maskedCallerNumber = this.getMaskedNumber(senderPhoneNumber);
      const summary = `New inbound SMS from ${maskedCallerNumber}`;

      return {
        id,
        summary,
        ts,
      };
    },
    isEventRelevant(event) {
      const { body: eventDetails } = event.body;
      const { messageStatus } = eventDetails;
      return messageStatus === "Received";
    },
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
RingCentralringcentralappThis component uses the RingCentral app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
ExtensionsextensionIdstring[]Select a value from the drop down menu.

Authentication

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:

About RingCentral

Business communications platform

More Ways to Use RingCentral

Triggers

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
New Inbound Fax (Instant) from the RingCentral API

Emit new event on each incoming fax

 
Try it
New Inbound Message Event (Instant) from the RingCentral API

Emit new event for each status change of inbound messages of a specific type

 
Try it

Actions

Create Meeting with the RingCentral API

Creates a new meeting. See the API docs here.

 
Try it
Get Message with the RingCentral API

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

 
Try it
Make CallOut with the RingCentral API

Creates a new outbound call out session. See the API docs here

 
Try it
Send SMS with the RingCentral API

Creates and sends a new text message. See the API docs here

 
Try it