Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Edits the title of a specific document in Dynalist. See the documentation
Fetches the content of a specific document. See the documentation
Inserts content to a specific document. If the document has existing content, the new content will be appended. See the documentation
The Dynalist API enables programmatic access to the powerful outlining and organizing features of Dynalist, a tool designed for structured note-taking and dynamic lists. With Pipedream, you can automate tasks, sync data, and connect Dynalist to other apps and services to enhance productivity. This could include creating new documents, updating lists, and extracting items for reporting or integration with project management tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dynalist: {
type: "app",
app: "dynalist",
}
},
async run({steps, $}) {
const data = {
"token": `${this.dynalist.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://dynalist.io/api/v1/file/list`,
data,
})
},
})