The Interseller API can be used to build a variety of applications, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
interseller: {
type: "app",
app: "interseller",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://interseller.io/api/team/users`,
headers: {
"X-API-Key": `${this.interseller.$auth.api_key}`,
},
})
},
})
Interseller uses API keys for authentication. When you connect your Interseller account, Pipedream securely stores the keys so you can easily authenticate to Interseller APIs in both code and no-code steps.
Obtain an API key from your Interseller account