8000 GitHub - dturton/suavecito-api: NetSuite to Shopify API
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dturton/suavecito-api

 
 

Repository files navigation

Suavecito API

NetSuite to Shopify API

Setup

Environmental Variables:

# shopify
SHOPIFY_API_VERSION=2024-07 # shopify admin api version
SECRET_KEY= # random string used for hash / digest
SHOPIFY_STORE_1= # the shopify store name without the .myshopify.com
SHOPIFY_STORE_1__API_KEY= # shopify admin api token
...
...

src/config/stores.ts

const stores = {
  store_1: {
    store: process.env.SHOPIFY_STORE_1,
    apiKey: process.env.SHOPIFY_STORE_1_API_KEY,
  },
  store_2: {
    store: process.env.SHOPIFY_STORE_2,
    apiKey: process.env.SHOPIFY_STORE_2_API_KEY,
  },
  store_3: {
    store: process.env.SHOPIFY_STORE_3,
    apiKey: process.env.SHOPIFY_STORE_3_API_KEY,
  },
};

export default stores;

Endpoints:

Endpoint Method Description
/v1/:store/product POST This endpoint creates a Shopify product from a NetSuite item record.

About

NetSuite to Shopify API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 94.7%
  • JavaScript 5.3%
0