Loop Returns

The best return experience, for your customers and for your team.

Integrate the Loop Returns API with the Supabase API

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

Cancel Return with Loop Returns API on New Row Added from Supabase API
Supabase + Loop Returns
 
Try it
Cancel Return with Loop Returns API on New Webhook Event (Instant) from Supabase API
Supabase + Loop Returns
 
Try it
Delete Row with Supabase API on Label Updated (Instant) from Loop Returns API
Loop Returns + Supabase
 
Try it
Delete Row with Supabase API on New Return Created (Instant) from Loop Returns API
Loop Returns + Supabase
 
Try it
Delete Row with Supabase API on Return Status Updated (Instant) from Loop Returns API
Loop Returns + Supabase
 
Try it
Label Updated (Instant) from the Loop Returns API

Emit new event when a label is updated. See the documentation

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Return Created (Instant) from the Loop Returns API

Emit new event when a new return is created. See the documentation

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Return Status Updated (Instant) from the Loop Returns API

Emit new event when the status of a return has been updated. See the documentation

 
Try it
Cancel Return with the Loop Returns API

Cancels a pending return request in Loop. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Flag Return with the Loop Returns API

Flags a particular return as important inside Loop. Requires return ID as a mandatory prop. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Process Return with the Loop Returns API

Starts the processing of a return inside Loop. Return ID is a required prop to initiate the process. See the documentation

 
Try it

Overview of Loop Returns

The Loop Returns API enables merchants to automate and streamline their returns and exchanges process. It offers endpoints that allow you to initiate returns, update return states, and manage return-related data, all programmable to fit into your existing e-commerce and customer service workflows. With Pipedream, you can trigger workflows based on events in Loop, or use actions to call the Loop API directly, automating tasks like syncing return data with customer service platforms, updating inventory management systems, or even issuing refunds.

Connect Loop Returns

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    loop_returns: {
      type: "app",
      app: "loop_returns",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.loopreturns.com/api/v1/allowlists`,
      headers: {
        "accept": `application/json`,
        "X-Authorization": `${this.loop_returns.$auth.api_key}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})