BigCommerce

Ecommerce for a New Era

Integrate the BigCommerce API with the Go API

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

Run Go Code with Go API on New Custom Events from BigCommerce API
BigCommerce + Go
 
Try it
Run Go Code with Go API on New Customer from BigCommerce API
BigCommerce + Go
 
Try it
Run Go Code with Go API on New Order from BigCommerce API
BigCommerce + Go
 
Try it
New Custom Events from the BigCommerce API

Emit new custom webhook event

 
Try it
New Customer from the BigCommerce API

Emit new created customer

 
Try it
New Order from the BigCommerce API

Emit new created order

 
Try it
Create Product with the BigCommerce API

Create a product. See the docs here

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it
Delete Product with the BigCommerce API

Delete a product by Id. See the docs here

 
Try it
Get All Products with the BigCommerce API

Get all your products. See the docs here

 
Try it
Get All Products Sort Order with the BigCommerce API

Get all your products. See the docs here

 
Try it

Overview of BigCommerce

The BigCommerce API lets you build eCommerce applications and integrations on top of the BigCommerce platform. With the API, you can:

  • Create and manage products
  • Create and manage customers
  • Create and manage orders
  • Create and manage coupons
  • Create and manage shipping methods
  • Create and manage payment methods
  • And much more!

Connect BigCommerce

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: {
    bigcommerce: {
      type: "app",
      app: "bigcommerce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.bigcommerce.com/stores/${this.bigcommerce.$auth.store_hash}/v3/catalog/summary`,
      headers: {
        "X-Auth-Token": `${this.bigcommerce.$auth.access_token}`,
      },
    })
  },
})

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}