The Adversus API enables you to create amazing websites and web applications. With the Adversus API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adversus: {
type: "app",
app: "adversus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.adversus.dk/v1/organization`,
auth: {
username: `${this.adversus.$auth.email}`,
password: `${this.adversus.$auth.password}`,
},
})
},
})
Adversus uses API keys for authentication. When you connect your Adversus account, Pipedream securely stores the keys so you can easily authenticate to Adversus APIs in both code and no-code steps.
In order to use the Adversus API, you must create an API user here and use that account for the API.