with Outlign and BlueCart API?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
outlign: {
type: "app",
app: "outlign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://go.outlign.co/api/v1/companies`,
headers: {
Authorization: `Bearer ${this.outlign.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
The BlueCart API offers a suite of features for streamlining the wholesale ordering process between buyers and sellers. By leveraging this API, you can automate order placements, track shipments, manage inventory, and analyze sales data to drive business decisions. In Pipedream, you can create serverless workflows that interact with the BlueCart API to integrate real-time order data with other apps, trigger custom notifications, or synchronize inventory across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bluecart_api: {
type: "app",
app: "bluecart_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bluecartapi.com/categories`,
params: {
api_key: `${this.bluecart_api.$auth.api_key}`,
},
})
},
})