E-commerce platform dedicated to helping online retailers meet the challenges of omnichannel selling.
Go to siteThe Sellercloud API taps into a robust e-commerce platform that streamlines multichannel sales operations, inventory management, and order fulfillment. By integrating Sellercloud with Pipedream, you can automate tasks like syncing inventory levels, managing orders, and updating product listings across various channels. With Pipedream's serverless platform, you can create workflows that react to events in Sellercloud or initiate actions based on triggers from other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sellercloud: {
type: "app",
app: "sellercloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.sellercloud.$auth.api_url}/rest/api/orders`,
headers: {
Authorization: `Bearer ${this.sellercloud.$auth.oauth_access_token}`,
},
})
},
})
Sync Inventory to Google Sheets: Every time your inventory levels change in Sellercloud, a Pipedream workflow automatically updates a Google Sheets spreadsheet. This keeps your inventory data accessible and makes it easy to share with team members who prefer working with spreadsheets.
Automate Order Processing: When a new order is received in Sellercloud, a Pipedream workflow triggers, which can then check the order details, verify inventory, and send the order information to a shipping service like ShipStation. This streamlines the order fulfillment process and reduces the need for manual intervention.
Dynamic Pricing Updates: Monitor competitor pricing or stock levels using a web scraping tool, and then use Pipedream to adjust your Sellercloud product prices based on this data. This helps maintain competitive pricing automatically and can help improve sales performance.
Emit new event when an item's inventory level changes. See the documentation
Emit new event when a new order is created. See the documentation
Changes the inventory level of a specific product. See the documentation
Modifies the status of an existing order or orders. See the documentation
Sellercloud uses OAuth authentication. When you connect your Sellercloud account, Pipedream will open a popup window where you can sign into Sellercloud and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Sellercloud API.
Pipedream requests the following authorization scopes when you connect your account:
POST
{{custom_fields.api_url}}/rest/api/token
content-type: application/json
Username={{custom_fields.email}}
&
Password={{custom_fields.password}}
POST
{{custom_fields.api_url}}/rest/api/token
content-type: application/x-www-form-urlencoded
accept: application/json
Username={{custom_fields.email}}
&
Password={{custom_fields.password}}