Work better together with Mural's visual work platform.
Create a new mural within a specified workspace. See the documentation
Create a new sticky note within a given mural. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mural: {
type: "app",
app: "mural",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.mural.co/api/public/v1/users/me`,
headers: {
Authorization: `Bearer ${this.mural.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.