Adversus

Dialer Software

Go to site
Explore
/
Apps
/
Adversus

Adversus API Integrations

Build and run workflows using the Adversus API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Adversus API enables you to create amazing websites and web applications. With the Adversus API, you can:

  • Build custom websites
  • Build custom web applications
  • Create amazing user experiences
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Authentication

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.