/go-bigcommerce

Go Bigcommerce REST API

Primary LanguageGoMIT LicenseMIT

go-bigcommerce

Go Bigcommerce REST API

Build Status

Installation

go get github.com/corthmann/go-bigcommerce/bigcommerce

Usage

See GoDoc for API and examples.

import { "bigcommerce" }
config := &bigcommerce.ClientConfig{
  Endpoint: "https://example.bigcommerce.com",
  UserName: "go-bigcommerce",
  Password: "12345"}
client := bigcommerce.NewClient(http.DefaultClient, config)

products, resp, err := client.Products.List(&bigcommerce.ProductListParams{
  Sku: "Product-123",
  })