Jira

Jira is the #1 agile project management tool used by teams to plan, track, release, and support great software with confidence

Integrate the Jira API with the Discord API

Setup the Jira API trigger to run a workflow which integrates with the Discord API. Pipedream's integration platform allows you to integrate Jira and Discord remarkably fast. Free for developers.

Add Attachment To Issue with Jira API on New Message from Discord API
Discord + Jira
 
Try it
Add Comment To Issue with Jira API on New Message from Discord API
Discord + Jira
 
Try it
Add Multiple Attachments To Issue with Jira API on New Message (Instant) from Discord API
Discord + Jira
 
Try it
Add Watcher To Issue with Jira API on New Message from Discord API
Discord + Jira
 
Try it
Assign Issue with Jira API on New Message from Discord API
Discord + Jira
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Add Attachment To Issue with the Jira API

Adds an attachment to an issue, See the docs

 
Try it
Add Comment To Issue with the Jira API

Adds a new comment to an issue, See the docs

 
Try it
Add Multiple Attachments To Issue with the Jira API

Adds multiple attachments to an issue, See the docs

 
Try it
Add Watcher To Issue with the Jira API

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

 
Try it
Assign Issue with the Jira API

Assigns an issue to a user. See the docs

 
Try it

Overview of Jira

With the Jira API, you can create custom integrations to automatically track
and manage issues in Jira. For example, you could create a custom integration
that:

  • Automatically creates Jira issues when new items are added to a specified RSS
    feed
  • Tracks all changes made to a Jira issue in a database
  • Sends a notification to a specified Slack channel whenever a Jira issue is
    updated
  • Creates a new Jira issue when a customer submits a support ticket

Connect Jira

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})