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.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Adds a contact to a specific static list. See the documentation
Retrieve tracking details using a tracking number or order number. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Print a shipping label for a specific order. See the documentation
The 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}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})