import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
reduct_video: {
type: "app",
app: "reduct_video",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.reduct.video/api/v3/project`,
headers: {
"x-auth-key": `${this.reduct_video.$auth.api_key}`,
},
})
},
})
Reduct.Video uses API keys for authentication. When you connect your Reduct.Video account, Pipedream securely stores the keys so you can easily authenticate to Reduct.Video APIs in both code and no-code steps.