import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agiliron: {
type: "app",
app: "agiliron",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.agiliron.$auth.subdomain}.agiliron.net/agiliron/api-40/Accounts`,
headers: {
"Accept": `application/json`,
"apiKey": `${this.agiliron.$auth.api_key}`,
},
params: {
filter: `CreatedTime,bt,01-15-2000 | 01-31-2025`,
},
})
},
})
Emit new event when a new contact is created in Agiliron. See the documentation
Generates a new contact within Agiliron. See the documentation
Creates a new event within Agiliron. See the documentation
Establishes a new lead within Agiliron. See the documentation
Agiliron uses API keys for authentication. When you connect your Agiliron account, Pipedream securely stores the keys so you can easily authenticate to Agiliron APIs in both code and no-code steps.