import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
extensiv_integration_manager: {
type: "app",
app: "extensiv_integration_manager",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cartrover.com/v1/merchant/inventory`,
auth: {
username: `${this.extensiv_integration_manager.$auth.cartapi_api_user}`,
password: `${this.extensiv_integration_manager.$auth.cartapi_api_key}`,
},
})
},
})
Extensiv Integration Manager uses API keys for authentication. When you connect your Extensiv Integration Manager account, Pipedream securely stores the keys so you can easily authenticate to Extensiv Integration Manager APIs in both code and no-code steps.