Skip to content

Instantly share code, notes, and snippets.

@notrab
Last active February 2, 2019 16:09
Show Gist options
  • Save notrab/59fbae901e175c1146c22a3220384a76 to your computer and use it in GitHub Desktop.
Save notrab/59fbae901e175c1146c22a3220384a76 to your computer and use it in GitHub Desktop.

Moltin JS SDK

  • Version: 4
import MoltinClient from '@moltin/sdk'

const moltin = new MoltinClient({
  client_id: '...'
})

moltin.products.all({ limit: 6, include: 'main_image,category' })

moltin.products.all()

moltin.products.get({ id: 'abc' })

moltin.products.create({
  name: 'T-Shirt',
  sku: 't-shirt-001'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment