with Jira and Lightspeed eCom (C-Series)?
Emit new event when a customer is updated.
Emit new event when an invoice is updated.
Emit new event when a customer is created.
Emit new event when an invoice is created.
Emit new event when an order is created.
Emit new event when a product is created.
Emit new event when an order is shipped.
Emit new event when an event with subscribed event source triggered, See the documentation
Emit new event when a order is updated.
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 a product is deleted.
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 a product is updated.
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.
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
Get an order products by ID. 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
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}`, }, }) }, }) import { axios } from "@pipedream/platform" export default defineComponent({ props: { lightspeed_ecom_c_series: { type: "app", app: "lightspeed_ecom_c_series", } }, async run({steps, $}) { return await axios($, { url: `https://api.${this.lightspeed_ecom_c_series.$auth.cluster}.com/${this.lightspeed_ecom_c_series.$auth.lang}/account.json`, auth: { username: `${this.lightspeed_ecom_c_series.$auth.api_key}`, password: `${this.lightspeed_ecom_c_series.$auth.api_secret}`, }, }) }, })