with RingCentral and Jira?
Emit new event for each notification from RingCentral of a specified type
Emit new event for each status change of inbound messages of a specific type
Emit new event each time an incoming call is missed
Emit new event for each outbound message event. This only includes the event, not the actual message.
Emit new event when a new voicemail message is received
Emit new event when an event with subscribed event source triggered, See the documentation
Emit new event when an issue is created. Note that Jira supports only one webhook, if more sources are needed please use New Event source and select multiple events.
Emit new event when an issue is deleted. Note that Jira supports only one webhook, if more sources are needed please use New Event source and select multiple events.
Emit new event when an issue is updated. Note that Jira supports only one webhook, if more sources are needed please use New Event source and select multiple events.
Gets a recording and downloads it to the /tmp directory. See the documentation
Adds multiple attachments to an issue. See the documentation
Adds a user as a watcher of an issue by passing the account ID of the user, For example, 5b10ac8d82e05b22cc7d4ef5, If no user is specified the calling user is added. See the documentation
Create a context for custom field options. See the documentation
Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask. See the documentation
Gets the status of a long-running asynchronous task. See the documentation
Gets either all transitions or a transition that can be performed by the user on an issue, based on the issue's status. See the documentation
Search for issues using JQL (Jira Query Language). See the documentation
Performs an issue transition and, if the transition has a screen, updates the fields from the transition screen. See the documentation
Updates an issue. A transition may be applied and issue properties updated as part of the edit. See the documentation
RingCentral 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}`, }, }) }, }) The Jira API opens up a world of possibilities for automating project management tasks, syncing with other tools, and enhancing data visibility. With Pipedream's integration, you can streamline issue tracking by automatically creating, updating, and searching for issues in Jira, as well as managing projects, sprints, users, and more. This integration not only saves time but also ensures real-time data flow across various platforms, keeping teams in sync and projects on track.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { jira: { type: "app", app: "jira", } }, async run({steps, $}) { return await axios($, { url: `https://api.atlassian.com/me`, headers: { Authorization: `Bearer ${this.jira.$auth.oauth_access_token}`, }, }) }, })