Starshipit is a shipping fulfilment web-based software designed to help eCommerce retailers, automate, process, fulfill, and ship orders from popular marketplaces and shopping carts.
Go to siteThe Starshipit API is a tool for optimizing and automating shipping and fulfillment processes. By integrating it with Pipedream, you can create powerful serverless workflows that connect Starshipit with other apps and services to streamline e-commerce operations, reduce manual entry, and improve customer experiences. From automating order dispatch to synchronizing tracking information across platforms, the possibilities are vast.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
starshipit: {
type: "app",
app: "starshipit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.starshipit.com/api/orders/unshipped`,
headers: {
"Content-Type": `application/json`,
"StarShipIT-Api-Key": `${this.starshipit.$auth.api_key}`,
"Ocp-Apim-Subscription-Key": `${this.starshipit.$auth.subscription_key}`,
},
})
},
})
Automated Order Processing: Trigger a workflow in Pipedream whenever a new order is placed on an e-commerce platform like Shopify. The workflow then uses the Starshipit API to create a shipping label, allocates a courier, and dispatches the order automatically.
Real-Time Shipping Updates: Set up a Pipedream workflow that listens for webhook events from Starshipit signaling a change in shipping status. When a status update occurs, the workflow can update the order status on platforms like WooCommerce, send a notification to Slack for the fulfillment team, and email the customer the updated tracking information.
Centralized Shipping Analytics: Collect shipping data from Starshipit via its API and feed it into a Pipedream workflow. This data can be aggregated and pushed to a Google Sheets document or a data visualization tool like Tableau for comprehensive analysis and reporting on shipping performance.
Retrieve tracking details using a tracking number or order number. See the documentation
Print a shipping label for a specific order. See the documentation
Starshipit uses API keys for authentication. When you connect your Starshipit account, Pipedream securely stores the keys so you can easily authenticate to Starshipit APIs in both code and no-code steps.
To retrieve your API keys,