import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
productify_ai: {
type: "app",
app: "productify_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.productify.ai/workspace/detail`,
headers: {
"ApiKey": `${this.productify_ai.$auth.api_key}`,
},
})
},
})
Productify.ai uses API keys for authentication. When you connect your Productify.ai account, Pipedream securely stores the keys so you can easily authenticate to Productify.ai APIs in both code and no-code steps.