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`,
},
})
},
})
Sync Orders with Google Sheets: Automatically update a Google Sheet with new order details when they're placed on Jumpseller. This can help maintain organized records for accounting or inventory management purposes.
Send Custom Alerts on Slack for New Orders: Set up a workflow that posts a message to a designated Slack channel whenever a new order is created on Jumpseller. This can keep your team in the loop and promote timely responses to new sales.
Automatically Update Inventory: When a product's stock changes on Jumpseller, trigger a workflow to reflect these changes across other platforms or your internal systems, ensuring accurate inventory levels are maintained at all times.
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
Create a new product variant in Jumpseller. See the documentation
Update an existing product in Jumpseller. See the documentation
Jumpseller uses OAuth authentication. When you connect your Jumpseller account, Pipedream will open a popup window where you can sign into Jumpseller and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Jumpseller API.
Pipedream requests the following authorization scopes when you connect your account:
read_store
read_orders
read_products
read_customers
read_settings
write_products
write_hooks
GET
https://accounts.jumpseller.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://accounts.jumpseller.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://accounts.jumpseller.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}