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 Gmail API

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

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 Email with the Gmail API

Send an email from your Google Workspace email account

 
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}`,
      },
    })
  },
})

Overview of Gmail

By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.

Connect Gmail

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: {
    gmail: {
      type: "app",
      app: "gmail",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
      },
    })
  },
})