with Mural and Rendi?
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
Create a new mural within a specified workspace. See the documentation
Get the status of a previously submitted FFmpeg command. See the documentation
Create a new sticky note within a given mural. See the documentation
Get the list of all stored files for an account. 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: {
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`,
},
})
},
})
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}`,
},
})
},
})