with ShipStation and DocsAutomator?
Emit new event for each new webhook event received. See docs here
Generate a new document from a pre-existing template. See the documentation
The ShipStation API allows for streamlined management of shipping operations for e-commerce. With it, you can automate order processing, label creation, and tracking updates. Pipedream excels as a platform for integrating ShipStation with other services to create custom workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shipstation: {
type: "app",
app: "shipstation",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ssapi.shipstation.com/users/`,
auth: {
username: `${this.shipstation.$auth.api_key}`,
password: `${this.shipstation.$auth.api_secret}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docsautomator: {
type: "app",
app: "docsautomator",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.docsautomator.co/automations`,
headers: {
Authorization: `Bearer ${this.docsautomator.$auth.api_key}`,
},
})
},
})