Starshipit

Starshipit is a shipping fulfilment web-based software designed to help eCommerce retailers, automate, process, fulfill, and ship orders from popular marketplaces and shopping carts.

Integrate the Starshipit API with the Supabase API

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

Create Order with Starshipit API on New Row Added from Supabase API
Supabase + Starshipit
 
Try it
Create Order with Starshipit API on New Webhook Event (Instant) from Supabase API
Supabase + Starshipit
 
Try it
Get Tracking Details with Starshipit API on New Row Added from Supabase API
Supabase + Starshipit
 
Try it
Get Tracking Details with Starshipit API on New Webhook Event (Instant) from Supabase API
Supabase + Starshipit
 
Try it
Print Shipping Label with Starshipit API on New Row Added from Supabase API
Supabase + Starshipit
 
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 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
Create Order with the Starshipit API

Create an outbound order in Starshipit. See the documentation

 
Try it
Delete Row with the Supabase API

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

 
Try it
Get Tracking Details with the Starshipit API

Retrieve tracking details using a tracking number or order number. See the documentation

 
Try it
Insert Row with the Supabase API

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

 
Try it
Print Shipping Label with the Starshipit API

Print a shipping label for a specific order. See the documentation

 
Try it

Overview of Starshipit

The Starshipit API is a tool for optimizing and automating shipping and fulfillment processes. By integrating it with Pipedream, you can create powerful serverless workflows that connect Starshipit with other apps and services to streamline e-commerce operations, reduce manual entry, and improve customer experiences. From automating order dispatch to synchronizing tracking information across platforms, the possibilities are vast.

Connect Starshipit

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    starshipit: {
      type: "app",
      app: "starshipit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.starshipit.com/api/orders/unshipped`,
      headers: {
        "Content-Type": `application/json`,
        "StarShipIT-Api-Key": `${this.starshipit.$auth.api_key}`,
        "Ocp-Apim-Subscription-Key": `${this.starshipit.$auth.subscription_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}`,
      },
    })
  },
})