Product Setting
GET
v1/products/settingsThe product setting endpoint allows merchants to retrieve the current product settings status from their dashboard. These settings control various aspects of how products are displayed, including search features, related products, and sold product counts. The endpoint helps merchants manage and fine-tune the visibility and order of products in their stores.
Request
A token used to verify the manager's identity and authorize the request
The unique identifier of the merchant's store.
A Bearer token used to authenticate the merchant.
Role of the user.
Request samples
Responses
A boolean flag (true or false) that determines whether the product search results are more intelligent and comprehensive. If set to true, the search includes broader criteria.
A boolean flag that determines whether related or similar products are displayed on product pages. When set to true, similar products will be visible on the product pages.
An integer value representing the number of related products that will be shown on a product page.
A boolean flag indicating whether the number of sold products is displayed. If true, the count of sold items will be visible on the product page.
This integer represents the minimum number of sold products that need to be sold before displaying the count on the product page.
A string representing the default ordering of products on the page. Out-of-stock products are shown at the bottom when this option is enabled. If this setting is disabled, the value will return null.
{
"extended_search_support": true,
"related_products_status": true,
"related_products_count": 5,
"sold_products_count_status": true,
"min_sold_products_count": 100,
"default_products_ordering": "-is_infinite,-quantity"
}