import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ragie: {
type: "app",
app: "ragie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ragie.ai/documents`,
headers: {
Authorization: `Bearer ${this.ragie.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Emit new event whenever a new connection is created in Ragie. See the documentation
Emit new event whenever a new document is created in Ragie. See the documentation
Updates an existing document file in Ragie. See the documentation
Ragie uses API keys for authentication. When you connect your Ragie account, Pipedream securely stores the keys so you can easily authenticate to Ragie APIs in both code and no-code steps.