with Rendi and Mural?
Emit new event when a new FFmpeg command is submitted. See the documentation
Emit new event when a new file is uploaded to an account. See the documentation
Emit new event each time a new sticky note is created in a specified mural
Get the status of a previously submitted FFmpeg command. See the documentation
Create a new mural within a specified workspace. See the documentation
Get the list of all stored files for an account. See the documentation
Create a new sticky note within a given mural. See the documentation
Submit an FFmpeg command for processing with input and output file specifications. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rendi: {
type: "app",
app: "rendi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rendi.dev/v1/files`,
headers: {
"x-api-key": `${this.rendi.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})