with Jira and Overloop?
Emit new event each time a campaign is created. See the docs
Emit new event each time a contact is created. See the docs
Emit new event when an event with subscribed event source triggered, See the docs
Emit new event each time a contact replies to an email or LinkedIn message. See the docs
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.
Emit new event each time an exclusion list item is created. See the docs
Emit new event each time an organization is created. See the docs
Emit new event each time a workflow is created. See the docs
Adds multiple attachments to an issue, See the docs
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 docs
Create a context for custom field options. See the documentation here
Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask, See the docs
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 docs
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 docs
Updates an issue. A transition may be applied and issue properties updated as part of the edit, See the docs
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}`, }, }) }, })
The Overloop API is a powerhouse for sales automation, enabling users to streamline their sales pipeline by automating repetitive tasks, syncing data across platforms, and enhancing lead management. With Pipedream, you can leverage Overloop's capabilities to create detailed, event-driven workflows that respond in real-time to changes in your sales environment. This integration can help maintain a healthy sales funnel, ensure timely follow-ups, and personalize communication at scale.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { overloop: { type: "app", app: "overloop", } }, async run({steps, $}) { return await axios($, { url: `https://api.overloop.com/public/v1/organizations`, headers: { "Authorization": `${this.overloop.$auth.api_key}`, "Content-Type": `application/vnd.api+json; charset=utf-8`, }, }) }, })