Big Cartel

Easy Online Stores for Artists and Makers

Integrate the Big Cartel API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Order Event from Big Cartel API
Big Cartel + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Product Event from Big Cartel API
Big Cartel + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Order Event from Big Cartel API
Big Cartel + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Product Event from Big Cartel API
Big Cartel + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Order Event from Big Cartel API
Big Cartel + Formatting
 
Try it
New Order Event from the Big Cartel API

Emit new events when a new order is created. See the docs here

 
Try it
New Product Event from the Big Cartel API

Emit new events when a new product is created. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Big Cartel

With the Big Cartel API, you can build applications that:

  • Display information about products, collections, and orders
  • Allow customers to purchase products
  • Create and manage customer accounts
  • Offer discounts and promotional codes
  • Process payments
  • Send abandoned cart emails
  • Analyze sales data

Connect Big Cartel

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: {
    big_cartel: {
      type: "app",
      app: "big_cartel",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.bigcartel.com/v1/accounts`,
      headers: {
        Authorization: `Bearer ${this.big_cartel.$auth.oauth_access_token}`,
        "Accept": `application/vnd.api+json`,
        "Content-type": `application/vnd.api+json`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})