JVZoo

Instantly connect your business with millions of paying customers and the top performing affiliates.

Go to site

JVZoo API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    jvzoo: {
      type: "app",
      app: "jvzoo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.jvzoo.com/v2.0`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: `${this.jvzoo.$auth.api_key}`,
        password: `x`,
      },
    })
  },
})

Authentication

JVZoo uses API keys for authentication. When you connect your JVZoo account, Pipedream securely stores the keys so you can easily authenticate to JVZoo APIs in both code and no-code steps.

To obtain an API key, you first need go to https://www.jvzoo.com/account/applications to create a new API Application under the My Account tab.