Option Sets

Deprecated

This is archived documentation. The V2 Catalog API is deprecated. For current API documentation, see the Catalog API.

Option Sets

A reusable set of option facets that can be applied to products.

NameTypeDescription
idintOptional field. Unique numeric ID for this option set. Increments sequentially.
namestringRequired field. The option set’s name, as used internally. Must be unique.
optionsobject/resourceOptional field; read-only. Object containing option-set options: a url and a resource.
product_id (optional)integerOptional field; read-only. If null, this option set can be reused with any product. If populated with a numeric ID, this option set can be used exclusively with the corresponding product.

Gets the collection of option sets. (Default sorting is by option-set id, from lowest to highest.)

GET /stores/{store_hash}/v2/option_sets

Filters

Filter parameters can be added to the URL query string to select specific option_sets in the collection.

ParameterTypeExample
namestring/api/v2/option_sets?name={value}

Pagination

Parameters can be added to the URL query string to paginate the collection. The maximum limit is 250. If a limit isn’t provided, up to 50 option_sets are returned by default.

ParameterTypeExample
Pageint/api/v2/option_sets?page={number}
Limitint/api/v2/option_sets?limit={count}

Response

Example JSON returned in the response:

[
{
"id": 1,
"product_id": null,
"name": "MacBook",
"options": {
"url": "https://store-bwvr466.mybigcommerce.com/api/v2/optionsets/1/options.json",
"resource": "/optionsets/1/options",
"product_id": null
}
},
{
"id": 2,
"product_id": null,
"name": "PixelSkin Case",
"options": {
"url": "https://store-bwvr466.mybigcommerce.com/api/v2/optionsets/2/options.json",
"resource": "/optionsets/2/options",
"product_id": null
}
}
]

Gets an option set.

GET /stores/{store_hash}/v2/option_sets/{id}

Response

Example JSON returned in the response:

{
"id": 10,
"product_id": null,
"name": "T-Shirt Facets",
"options": {
"url": "https://store-bwvr466.mybigcommerce.com/api/v2/optionsets/10/options.json",
"resource": "/optionsets/13/options",
"product_id": null
}
}

Gets a count of the number of option sets in the store.

GET /stores/{store_hash}/v2/option_sets/count

Response

Example JSON returned in the response:

{
"count": 4
}

Creates a new Option set.

POST /stores/{store_hash}/v2/option_sets

Read-only Properties

The following properties of the option set are read-only. If one or more of these properties are included in the request, it will be rejected.

  • id
  • options

Requirements

The following properties of the option set are required. The request won’t be fulfilled unless these properties are valid.

  • name

Request

Example request object:

{
"name": "T-Shirts"
}

Response

Example JSON returned in the response:

{
"id": 10,
"product_id": null,
"name": "T-Shirts",
"options": {
"url": "https://store-bwvr466.mybigcommerce.com/api/v2/optionsets/10/options.json",
"resource": "/optionsets/10/options",
"product_id": null
}
}

Updates an existing option set.

PUT /stores/{store_hash}/v2/option_sets/{id}

Read-only Properties

The following properties of the option set are read-only. If one or more of these properties are included in the request, it will be rejected.

  • id
  • options

Requirements

The following properties of the option set are required. The request won’t be fulfilled unless these properties are valid.

  • name

Request

Example request object:

{
"name": "T-shirt Facets"
}

Response

Example JSON returned in the response:

{
"id": 10,
"product_id": null,
"name": "T-shirt Facets",
"options": {
"url": "https://store-bwvr466.mybigcommerce.com/api/v2/optionsets/10/options.json",
"resource": "/optionsets/13/options",
"product_id": null
}
}

Deletes an option set.

DELETE /stores/{store_hash}/v2/option_sets/{id}

Deletes all option sets in the store.

DELETE /stores/{store_hash}/v2/option_sets