Simple Store
  • What is Simple Store?
  • Getting Started
    • Portal
      • Environments
      • Configuring Your Store
    • Creating Your First Product
    • QuickBuy
  • Concepts
    • Assets
      • Image Resizing
    • Cart
    • Categories
    • Configuration
    • Collections
    • Customers
    • Inventory
    • Orders
    • Payments
    • Pricing
    • Product
    • Rewards
    • Shipping
    • Specials
  • API
  • Front End Client APIs
  • Backend APIs
  • Pagination
  • Swagger References
Powered by GitBook
On this page
  • Portal View
  • Collection Properties
  1. Concepts

Collections

PreviousConfigurationNextCustomers

Last updated 5 years ago

A collection represents a broad logical grouping of products.

Examples of collections could be:

  • Winter Collection

  • Premium Collection

Portal View

View Collections

Assess the Collection screen in the console via the console navigation bar.

Add New Collection

Click Add New to create a new collection

Specified a Name and Description for the collection.

Click Submit to create the new collection.

Edit Collection

Additional Collection Details can be specified including:

Click Save to commit your modifications.

Collection Properties

Element

Description

collectionId

Internal Identifier for the collection

name

Name of the collection

slug

A Url slug to accese the collection

description

A Description for the collection

attributes

One or more key/value pairs

{
  "collectionId": "string",
  "version": "string",
  "name": "string",
  "slug": "string",
  "description": "string",
  "names": {
    "additionalProp1": "string",
    "additionalProp2": "string",
    "additionalProp3": "string"
  },
  "descriptions": {
    "additionalProp1": "string",
    "additionalProp2": "string",
    "additionalProp3": "string"
  },
  "isActive": true,
  "totalItems": 0,
  "attributes": {}
}