import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
memento_database: {
type: "app",
app: "memento_database",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mementodatabase.com/v1/libraries`,
params: {
token: `${this.memento_database.$auth.api_token}`,
},
})
},
})
Emit new event when an entry is updated in Memento Database. See the documentation
Emit new event when a new entry is created in Memento Database. See the documentation
Create an entry in a library on Memento Database. See the documentation
Get a library by ID on Memento Database. See the documentation
List entries in a library on Memento Database. See the documentation
Update an entry in a library on Memento Database. See the documentation
Memento Database uses API keys for authentication. When you connect your Memento Database account, Pipedream securely stores the keys so you can easily authenticate to Memento Database APIs in both code and no-code steps.