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