with Overledger and Jira?
Emit new event for transactions to/from a specific account.
Emit new event when a smart contract releases a new event.
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.
Executes a signed transaction by sending it to a blockchain node via Overledger. See the documentation
Adds multiple attachments to an issue. See the documentation
Prepares a smart contract transaction for signing on the Overledger platform. See the documentation
The Overledger API by Quant Network allows developers to interact with multiple blockchain networks. It facilitates the creation, reading, and execution of smart contracts and transactions across different blockchains. This API simplifies the complex nature of blockchain interoperability, enabling multi-chain applications (MApps) through a single gateway.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { overledger: { type: "app", app: "overledger", } }, async run({steps, $}) { const data = { "location": { "technology": "Ethereum", "network": "Ethereum Sepolia Testnet" } } return await axios($, { method: "post", url: `https://api.sandbox.overledger.dev/v2/autoexecution/search/block/latest`, headers: { Authorization: `Bearer ${this.overledger.$auth.oauth_access_token}`, "Content-Type": `application/json`, }, data, }) }, }) 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}`, }, }) }, })