import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ragic: {
type: "app",
app: "ragic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.ragic.$auth.domain}.ragic.com/${this.ragic.$auth.database}`,
headers: {
"Authorization": `Basic ${this.ragic.$auth.api_key}`,
},
})
},
})
Emit new event when a record is created. Instructions on creating webhooks here.
Emit new event when a record is updated. Instructions on creating webhooks here.
Ragic uses API keys for authentication. When you connect your Ragic account, Pipedream securely stores the keys so you can easily authenticate to Ragic APIs in both code and no-code steps.
12345678
if your Ragic URL is https://www.ragic.com/1234567
abc
if your Ragic URL is https://abc.ragic.com/12345678