with Notion and Jira?
Emit new event when a new comment is created in a page or block. See the documentation
Emit new event when a data source is created. See the documentation
Emit new event when a page is created or updated in the selected data source. See the documentation
Emit new event when a page is created or updated in the selected data source. See the documentation
Emit new event when a page is created in the selected data source. See the documentation
Emit new event when an event with subscribed event source triggered, See the docs
Emit new event each time a webhook event is received. Webhook must be setup in Notion. 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 the selected page or one of its sub-pages is updated. See the documentation
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 each time a page property is updated in a data source. For use with Page Properties Updated event type. Webhook must be set up in Notion. See the documentation
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 when a selected page is updated. See the documentation
Append new and/or existing blocks to the specified parent. See the documentation
Use this action to finalize a mode=multi_part
file upload after all of the parts have been sent successfully. See the documentation
Create a comment in a page or existing discussion thread. See the documentation
Adds multiple attachments to an issue, See the docs
Create a database and its initial data source. 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 docs
Create a context for custom field options. See the documentation here
Create a page from a data source. See the documentation
Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask, See the docs
Sets a Block object, including page blocks, to archived: true using the ID specified. See the documentation
Create a new page copied from an existing page block. See the documentation
Searches for a page or data source. 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 docs
Search for issues using JQL (Jira Query Language). See the documentation
Query a data source with a specified filter. See the documentation
Performs an issue transition and, if the transition has a screen, updates the fields from the transition screen, See the docs
Get all content of a data source. See the documentation
Get the property schema of a data source in Notion. See the documentation
Updates an issue. A transition may be applied and issue properties updated as part of the edit, See the docs
Use this action to retrieve a file upload. See the documentation
Get page content as block objects or markdown. Blocks can be text, lists, media, a page, among others. See the documentation
Get a Property Item object for a selected page and property. See the documentation
Update a page's property values. To append page content, use the Append Block action instead. See the documentation
Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { notion: { type: "app", app: "notion", } }, async run({steps, $}) { return await axios($, { url: `https://api.notion.com/v1/users/me`, headers: { Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`, "Notion-Version": `2021-08-16`, }, }) }, })
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}`, }, }) }, })