-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathproduct.rb
44 lines (36 loc) · 939 Bytes
/
product.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
require 'bigcommerce'
require 'securerandom'
Bigcommerce.configure do |config|
config.store_hash = ENV['BC_STORE_HASH']
config.client_id = ENV['BC_CLIENT_ID']
config.access_token = ENV['BC_ACCESS_TOKEN']
end
# List products
@products = Bigcommerce::Product.all
puts @products
# Get a product
@product = @products[0]
puts Bigcommerce::Product.find(@product.id)
# Get products count
puts Bigcommerce::Product.count
# Create a product
@category = Bigcommerce::Category.all[0]
@product = Bigcommerce::Product.create(
name: SecureRandom.hex,
type: 'physical',
description: SecureRandom.hex,
price: '19.95',
categories: [@category.id],
availability: 'available',
weight: '0.5'
)
puts @product
# Update a product
puts Bigcommerce::Product.update(
@product.id,
custom_url: '/foo-bar/'
)
# Delete a product
puts Bigcommerce::Product.destroy(@product.id)
# Delete all products
# puts Bigcommerce::Product.destroy_all