with npm and Plainly?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a video render job finishes successfully.
Emit new event when a video is created or uploaded in Plainly.
Creates a render job for a video template. See the documentation
Retrieves the current status of a render job in Plainly. See the documentation
Fetches a list of available video templates in a project in the user's Plainly account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
plainly: {
type: "app",
app: "plainly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.plainlyvideos.com/api/v2/projects`,
auth: {
username: `${this.plainly.$auth.api_key}`,
password: ``,
},
})
},
})