The REST Admin API is a legacy API as of October 1, 2024. Starting April 1, 2025, all new public apps must be built exclusively with the GraphQL Admin API. For details and migration steps, visit our migration guide.
Smart Collection
products
access scope.A smart collection is a grouping of products defined by rules that are set by the merchant. Shopify automatically changes the contents of a smart collection based on the rules. Smart collections, like other types of collections, are used to break down the catalog of products into categories and make the shop easier to browse.
By default, a store can have up to 5000 smart collections.
The Collect resource is used to connect a product to a smart collection. However, these collects can't be added or removed from the API as they're managed by the rules of the smart collection.

You can use the CustomCollection resource to work with collections where each product in the collection is manually chosen by the merchant.
Endpoints
- post/admin/api/latest/smart_
collections. json Creates a smart collection - get/admin/api/latest/smart_
collections. json?since_ id=482865238 Retrieves a list of smart collections - get/admin/api/latest/smart_
collections/{smart_ collection_ id}. json Retrieves a single smart collection - get/admin/api/latest/smart_
collections/count. json Retrieves a count of smart collections - put/admin/api/latest/smart_
collections/{smart_ collection_ id}. json Updates an existing smart collection - put/admin/api/latest/smart_
collections/{smart_ collection_ id}/order. json?products[]=921728736&products[]=632910392 Updates the ordering type of products in a smart collection - del/admin/api/latest/smart_
collections/{smart_ collection_ id}. json Removes a smart collection
The SmartCollection resource
Properties
The description of the smart collection. Includes HTML markup. Many shop themes display this on the smart collection page.
A human-friendly unique string for the smart collection. Automatically generated from the title
.
Used in shop themes by the Liquid templating language to refer to the smart collection. (maximum: 255 characters)
The ID of the smart collection.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
The date and time (ISO 8601 format)
that the smart collection was published. Returns null
when the collection is hidden.
Whether the smart collection is published to the Point of Sale channel. Valid values:
Show published_scope properties
web
: The smart collection is published to the Online Store channel but not published to the Point of Sale channel.global
: The smart collection is published to both the Online Store channel and the Point of Sale channel.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
Whether the product must match all the rules to be included in the smart collection. Valid values:
Show disjunctive properties
true
: Products only need to match one or more of the rules to be included in the smart collection.false
: Products must match all of the rules to be included in the smart collection.
The order of the products in the smart collection. Valid values:
Show sort_order properties
alpha-asc
: The products are sorted alphabetically from A to Z.alpha-des
: The products are sorted alphabetically from Z to A.best-selling
: The products are sorted by number of sales.created
: The products are sorted by the date they were created, from oldest to newest.created-desc
: The products are sorted by the date they were created, from newest to oldest.manual
: The products are manually sorted by the shop owner.price-asc
: The products are sorted by price from lowest to highest.price-desc
: The products are sorted by price from highest to lowest.
The suffix of the Liquid template that the shop uses. By default, the original template
is called product.liquid, and additional templates are called product.suffix
.liquid.
The name of the smart collection. Maximum length: 255 characters.
The date and time (ISO 8601 format) when the smart collection was last modified.
The SmartCollection resource
Anchor to POST request, Creates a smart collectionpostCreates a smart collection
Creates a new smart collection using the specified rules.
Create a new smart collection with a base64 encoded image
Create a new smart collection with a base64 encoded image
Show smart_collection properties
The name of the smart collection. Maximum length: 255 characters.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
Create a new smart collection with an image that will be downloaded by Shopify
Create a new smart collection with an image that will be downloaded by Shopify
Show smart_collection properties
The name of the smart collection. Maximum length: 255 characters.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
Create a new unpublished smart collection
Create a new unpublished smart collection
Show smart_collection properties
The name of the smart collection. Maximum length: 255 characters.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
Create a smart collection of all products starting with the specified term
Create a smart collection of all products starting with the specified term
Show smart_collection properties
The name of the smart collection. Maximum length: 255 characters.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
Create a smart collection with a specified title
Create a smart collection with a specified title
Show smart_collection properties
The name of the smart collection. Maximum length: 255 characters.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
Creating a smart collection without a title will return an error
Creating a smart collection without a title will return an error
Show smart_collection properties
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
/admin/api/2025-07/smart_ collections. json
Response
Anchor to GET request, Retrieves a list of smart collectionsgetRetrieves a list of smart collections
Retrieves a list of smart collections. Note: This endpoint implements pagination by using links that are provided in the response header. To learn more, refer to Make paginated requests to the REST Admin API.
Show only certain fields, specified by a comma-separated list of field names.
Filter results by smart collection handle.
Show only the smart collections specified by a comma-separated list of IDs.
The number of results to show.
Show smart collections that includes the specified product.
Show smart collections published before this date. (format: 2014-04-25T16:15:47-04:00)
Show smart collections published after this date. (format: 2014-04-25T16:15:47-04:00)
Filter results based on the published status of smart collections.
Show published_status properties
published: Show only published smart collections.
unpublished: Show only unpublished smart collections.
any: Show all smart collections.
Restrict results to after the specified ID.
Show smart collections with the specified title.
Show smart collections last updated before this date. (format: 2014-04-25T16:15:47-04:00)
Show smart collections last updated after this date. (format: 2014-04-25T16:15:47-04:00)
Retrieve a list all smart collections after a specified ID
Retrieve a list all smart collections after a specified ID
Restrict results to after the specified ID.
Retrieve a list of all smart collections
Retrieve a list of all smart collections
Retrieve a list of all smart collections for a certain product_id
Retrieve a list of all smart collections for a certain product_id
Show smart collections that includes the specified product.
Retrieve a list of specific smart collections
Retrieve a list of specific smart collections
Show only the smart collections specified by a comma-separated list of IDs.
/admin/api/2025-07/smart_ collections. json?since_ id= 482865238
Response
Anchor to GET request, Retrieves a single smart collectiongetRetrieves a single smart collection
Retrieves a single smart collection
Show only certain fields, specified by a comma-separated list of field names.
Retrieve a specific collection by ID
Retrieve a specific collection by ID
/admin/api/2025-07/smart_ collections/482865238. json
Response
Anchor to GET request, Retrieves a count of smart collectionsgetRetrieves a count of smart collections
Retrieves a count of smart collections
Show smart collections that include the specified product.
Show smart collections published before this date. (format: 2014-04-25T16:15:47-04:00)
Show smart collections published after this date. (format: 2014-04-25T16:15:47-04:00)
Filter results based on the published status of smart collections.
Show published_status properties
published: Show only published smart collections.
unpublished: Show only unpublished smart collections.
any: Show all smart collections.
Show smart collections with the specified title.
Show smart collections last updated before this date. (format: 2014-04-25T16:15:47-04:00)
Show smart collections last updated after this date. (format: 2014-04-25T16:15:47-04:00)
Retrieve a count of all smart collections
Retrieve a count of all smart collections
Retrieve a count of all smart collections for a certain product_id
Retrieve a count of all smart collections for a certain product_id
Show smart collections that include the specified product.
/admin/api/2025-07/smart_ collections/count. json
Response
Anchor to PUT request, Updates an existing smart collectionputUpdates an existing smart collection
Updates an existing smart collection
Hide a published smart collection
Hide a published smart collection
Show smart_collection properties
The ID of the smart collection.
Update a smart collection by clearing the collection image
Update a smart collection by clearing the collection image
Show smart_collection properties
The ID of the smart collection.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
The date and time (ISO 8601 format) when the smart collection was last modified.
A human-friendly unique string for the smart collection. Automatically generated from the title
.
Used in shop themes by the Liquid templating language to refer to the smart collection. (maximum: 255 characters)
The name of the smart collection. Maximum length: 255 characters.
The description of the smart collection. Includes HTML markup. Many shop themes display this on the smart collection page.
The date and time (ISO 8601 format)
that the smart collection was published. Returns null
when the collection is hidden.
The order of the products in the smart collection. Valid values:
Show sort_order properties
alpha-asc
: The products are sorted alphabetically from A to Z.alpha-des
: The products are sorted alphabetically from Z to A.best-selling
: The products are sorted by number of sales.created
: The products are sorted by the date they were created, from oldest to newest.created-desc
: The products are sorted by the date they were created, from newest to oldest.manual
: The products are manually sorted by the shop owner.price-asc
: The products are sorted by price from lowest to highest.price-desc
: The products are sorted by price from highest to lowest.
The suffix of the Liquid template that the shop uses. By default, the original template
is called product.liquid, and additional templates are called product.suffix
.liquid.
Whether the product must match all the rules to be included in the smart collection. Valid values:
Show disjunctive properties
true
: Products only need to match one or more of the rules to be included in the smart collection.false
: Products must match all of the rules to be included in the smart collection.
The list of rules that define what products go into the smart collection. Each rule has the following properties:
Show rules properties
column: The property of a product being used to populate the smart collection.
Valid values for text relations:
title
: The product title.type
: The product type.vendor
: The name of the product vendor.variant_title
: The title of a product variant.
Valid values for number relations:
variant_compare_at_price
: The compare price.variant_weight
: The weight of the product.variant_inventory
: The inventory stock. Note:not_equals
does not work with this property.variant_price
: product price.
Valid values for an
equals
relation:tag
: A tag associated with the product.
Valid values for metafield definition relations:
product_metafield_definition
: When the metafield definition rule is powered by a product metafield definition.variant_metafield_definition
: When the metafield definition rule is powered by a variant metafield definition.
relation: The relationship between the column choice, and the condition.
Valid values for number relations:
greater_than
The column value is greater than the condition.less_than
The column value is less than the condition.equals
The column value is equal to the condition.not_equals
The column value is not equal to the condition.
Valid values for text relations:
equals
: Checks if the column value is equal to the condition value.not_equals
: Checks if the column value is not equal to the condition value.starts_with
: Checks if the column value starts with the condition value.ends_with
: Checks if the column value ends with the condition value.contains
: Checks if the column value contains the condition value.not_contains
: Checks if the column value does not contain the condition value.
Valid values for metafield relations are based on the corresponding metafield definition type. The following definition types support the listed relations
rating
:equals
,greater_than
,less_than
boolean
:equals
number_integer
:equals
,greater_than
,less_than
number_decimal
:equals
,greater_than
,less_than
single_line_text_field
:equals
list.single_line_text_field
:equals
condition: Select products for a smart collection using a condition. Values are either strings or numbers, depending on the relation value.
condition_object_id: The object id that points to additional attributes for the collection rule. This is only required when using metafield definition rules.
Whether the smart collection is published to the Point of Sale channel. Valid values:
Show published_scope properties
web
: The smart collection is published to the Online Store channel but not published to the Point of Sale channel.global
: The smart collection is published to both the Online Store channel and the Point of Sale channel.
Update a smart collection by setting a new collection image
Update a smart collection by setting a new collection image
Show smart_collection properties
The ID of the smart collection.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
Update a smart collection by setting a new collection image alternative text
Update a smart collection by setting a new collection image alternative text
Show smart_collection properties
The ID of the smart collection.
The image associated with the smart collection. Valid values:
Show image properties
attachment
: An image attached to a smart collection returned as Base64-encoded binary data.src
: A URL that specifies the location of the image.alt
: Alternative text that describes the collection image.
Update the description of a smart collection
Update the description of a smart collection
Show smart_collection properties
The ID of the smart collection.
The description of the smart collection. Includes HTML markup. Many shop themes display this on the smart collection page.
/admin/api/2025-07/smart_ collections/482865238. json
Response
Anchor to PUT request, Updates the ordering type of products in a smart collectionputUpdates the ordering type of products in a smart collection
Updates the ordering type of products in a smart collection
An array of product IDs, in the order that you want them to appear at the top of the collection. When products
is specified but empty, any previously sorted products are cleared.
The type of sorting to apply. Valid values are listed in the Properties section above.
Update manually-sorted products in the smart collection
Update manually-sorted products in the smart collection
Update the type of ordering applied to the smart collection
Update the type of ordering applied to the smart collection
The type of sorting to apply. Valid values are listed in the Properties section above.
/admin/api/2025-07/smart_ collections/482865238/order. json?products[]= 921728736&products[]= 632910392
Response
Anchor to DELETE request, Removes a smart collectiondelRemoves a smart collection
Removes a smart collection
Remove a smart collection
Remove a smart collection