The e-commerce platform for fast-growing businesses.
Emit new event when an order is paid in Jumpseller. See the documentation
Emit new event when an order is updaetd in Jumpseller. See the documentation
Adds a contact to a specific static list. See the documentation
Create a new product variant in Jumpseller. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Update an existing product in Jumpseller. See the documentation
The Jumpseller API lets you automate and integrate your e-commerce operations, ranging from managing products, orders, and customers to updating inventory levels. With Pipedream, you can harness this functionality in serverless workflows, enabling you to connect Jumpseller with other apps and services. Craft workflows to simplify tasks such as syncing order info to accounting software, triggering custom alerts for new sales, or maintaining a real-time customer database.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jumpseller: {
type: "app",
app: "jumpseller",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jumpseller.com/v1/store/info.json`,
headers: {
Authorization: `Bearer ${this.jumpseller.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
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}`,
},
})
},
})