WeSupply

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.

Integrate the WeSupply API with the Email API

Setup the WeSupply API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate WeSupply and Email remarkably fast. Free for developers.

Import Order with WeSupply API on New Email from Email API
Email + WeSupply
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
Import Order with the WeSupply API

Orders can be pushed into the WeSupply platform via a JSON containing the order data. See the docs here

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it

Overview of WeSupply

The 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.

Connect WeSupply

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});