For the complete documentation index, see llms.txt. This page is also available as Markdown.

🎯 Exercise 7

Fetch 9 Products Data from BigCommerce - 3 by 3.

Objective

Connect to the BigCommerce Store and fetch the first 9 product data 3 by 3.

Reference API

https://docs.bigcommerce.com/developer/api-reference/rest/admin/catalog/products/get-products

Use Get All Products API from BigCommerce Beta System.

Hints to Achieve the Goal

Step 1: Use loop until break for repeating

Step 2: Connect to BigCommerce - Get all Products. Utilize Workflow Variables and Inline Transformation Functions to set the page and limit parameters.

Step 3: Print the data in console log 3 by 3

Step 4: Break when information of 9 products are fetched. In other words, 3 pages, 3 items per page information is fetched.

Last updated

Was this helpful?