Skip to content

Stores API

ardeearam edited this page Mar 5, 2015 · 33 revisions

/stores

The Stores API allows connectivity of online store fronts to GCore. These store fronts are the customer facing aspects of the GCore system. The idea is to allow integration to a very broad set of store front technologies, such as Magento, Drupal, WordPress, ImpressPages, and PrestaShop among others.

For this to be used properly, you must have a Store Front ID (store_front), which you can obtain from your friendly neighborhood GCore Administrators.

  • /stores/[store_front]/catalog_products. This is equivalent to the Products API, but with access limited only to the particular store front.
  • GET /stores/[store_front]/catalog_products
  • POST /stores/[store_front]/catalog_products
  • GET /stores/[store_front]/catalog_products/[uid]
  • GET /stores/[store_front]/catalog_products/[mode]?mode=sku
  • PUT /stores/[store_front]/catalog_products/[uid]
  • PUT /stores/[store_front]/catalog_products/[mode]?mode=sku
  • DELETE /stores/[store_front]/catalog_products/[uid]
  • DELETE /stores/[store_front]/catalog_products/[mode]?mode=sku
  • /stores/[store_front]/products. See Stores::Products API
  • /stores/[store_front]/sales_orders. See Stores::SalesOrders API
  • /stores/[store_front]/invoices. Allows users to access invoices relating to a particular store front.
  • GET /stores/[store_front]/invoices/[invoice_number]
  • GET /stores/[store_front]/invoices/[invoice_number].pdf

Clone this wiki locally