Instantly connect your business with millions of paying customers and the top performing affiliates.
Go to siteimport { 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`,
},
})
},
})
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.