Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.
Emit new event when a page or one of its sub-pages is updated.
Emit new event when a page in a database is updated. To select a specific page, use Updated Page ID
instead
Creates and appends blocks to the specified parent. See the documentation
Takes and returns an animated screenshot of the given site with specified options. See the documentation
Creates a page from a parent page. The only valid property is title. See the documentation
Takes and returns a screenshot of the given site with specified options. 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`,
},
})
},
})
ScreenshotOne API allows you to capture screenshots of web pages programmatically. It's a powerful tool you can leverage within Pipedream workflows to automate the process of taking screenshots, whether it's for archiving content, monitoring changes on websites, or capturing data for reporting. By combining ScreenshotOne with Pipedream's capabilities, you can easily integrate screenshot functionalities into multifaceted workflows, triggering actions in other apps, storing images, or processing the data further.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshotone: {
type: "app",
app: "screenshotone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.screenshotone.com/take`,
headers: {
"Content-Type": `application/json`,
},
params: {
url: `{{your_url}}`,//such as https://pipedream.com
access_key: `${this.screenshotone.$auth.access_key}`,
},
})
},
})