Manage and automate your recurring workflows and tasks
With Manifestly, you can easily create, edit, and track checklist items for any
process or activity. Manifestly provides a simple, yet powerful, interface for
managing checklist items that can be used for any type of activity.
Here are a few examples of what you can build using the Manifestly Checklists
API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
manifestly_checklists: {
type: "app",
app: "manifestly_checklists",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.manifest.ly/api/v1/users/`,
params: {
api_key: `${this.manifestly_checklists.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})