Post-Purchase CX Automation Platform built for Retail. WeSupply helps retailers reduce their customer support tickets with Pre-purchase delivery prediction, automated shipping tracking, proactive notifications and self-service returns.
Go to siteThe WeSupply API serves as a bridge connecting your ecommerce platforms to WeSupply's order tracking and logistics features. By utilizing the API within Pipedream, you unlock the potential to automate order updates, streamline returns, and enhance customer service interactions. Pipedream's serverless platform allows you to create workflows that trigger based on certain events, process data, and connect to countless other APIs and services—essentially turning your WeSupply data into actionable insights and automated tasks without the need for a dedicated backend infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wesupply: {
type: "app",
app: "wesupply",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.wesupply.$auth.client_name}.labs.wesupply.xyz/api/orders/lookup`,
headers: {
Authorization: `Bearer ${this.wesupply.$auth.oauth_access_token}`,
},
})
},
})
Order Status Sync to Customer Support Platform: Integrate WeSupply with a customer support platform like Zendesk. When an order status updates in WeSupply, the workflow triggers, fetching the order details and updating the corresponding support ticket in Zendesk. This keeps your support team and customers informed about the latest shipping updates or delays.
Returns Processing Automation: Automate the returns process by connecting WeSupply to an email service like SendGrid. When a return is initiated in WeSupply, Pipedream triggers a workflow that sends an email with a return label and instructions, streamlining the return process for customers and reducing manual work for your team.
Inventory Level Webhook Notifications: Pair WeSupply with Slack for real-time inventory updates. Set up a workflow where low inventory levels in WeSupply send an alert to a designated Slack channel. This helps your procurement team stay on top of stock levels and react promptly to avoid stockouts.
Orders can be pushed into the WeSupply platform via a JSON containing the order data. See the docs here
WeSupply uses OAuth authentication. When you connect your WeSupply account, Pipedream will open a popup window where you can sign into WeSupply and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any WeSupply API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://{{custom_fields.client_name}}.labs.wesupply.xyz/api/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.client_id}}
&
client_secret={{custom_fields.client_secret}}
&
grant_type=client_credentials
POST
https://{{custom_fields.client_name}}.labs.wesupply.xyz/api/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.client_id}}
&
client_secret={{custom_fields.client_secret}}
&
grant_type=client_credentials