Import, manage and ship your orders with ShipStation
Emit new event for each new webhook event received. See docs here
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
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}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.