with Plainly and Noor?
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: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
noor: {
type: "app",
app: "noor",
}
},
async run({steps, $}) {
const data = {
"spaceId": `${this.noor.$auth.space_id}`,
}
return await axios($, {
method: "post",
url: `https://sun.noor.to/api/v0/getSpaceMembers`,
headers: {
Authorization: `Bearer ${this.noor.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})