View as Markdown
RingCentral icon

RingCentral ACTION

Create Meeting

Creates a new meeting. See the API docs here.
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's RingCentral account once, then configure and run Create Meeting from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "ringcentral-create-meeting",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    ringcentral: { authProvisionId: "apn_xxxxxxx" },
    accountId: "Account ID",
    extensionId: ["Extensions"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Meeting inputs
Property Type Description
accountId Account ID string
Internal identifier of a RingCentral account or tilde (~) to indicate the account logged-in within the current session.
Required
extensionId Extensions string[]
Internal identifier of an extension.
Required Dynamic
topic Topic string
Topic of the meeting.
Optional
meetingType MeetingType string
Meeting type.
Optional
schedule Schedule object
Optional
password Password string
Optional
host Host object
Optional
allowJoinBeforeHost AllowJoinBeforeHost boolean
Optional
startHostVideo StartHostVideo boolean
Optional
startParticipantsVideo StartParticipantsVideo boolean
Optional
usePersonalMeetingId UsePersonalMeetingId boolean
Optional
audioOptions AudioOptions any
Optional
recurrence Recurrence object
Recurrence settings.
Optional
autoRecordType AutoRecordType string
Automatic record type.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
ringcentral-create-meeting
Version
0.2.2
App
RingCentral
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes