With the Automizy API, you can build a variety of applications and integrations. Some examples include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
automizy: {
type: "app",
app: "automizy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://gateway.automizy.com/v2/smart-lists`,
headers: {
Authorization: `Bearer ${this.automizy.$auth.api_token}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
})
},
})
Automizy uses API keys for authentication. When you connect your Automizy account, Pipedream securely stores the keys so you can easily authenticate to Automizy APIs in both code and no-code steps.