> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-management/async-job/sample-flows.md ## Article Content: # Sample Flow This article shares some typical use cases you can support, as well as an example flow that supports each use case. You're certainly not limited to these use cases, but they can be a helpful jumping off point as you plan your implementation. ## Get job results for Bulk Update Products by Filter call You can update Wix Stores products in bulk, collect the resulting job ID, and check the status and updated products with the Async Jobs API. 1. Call Wix Stores' [Bulk Update Products by Filter](https://dev.wix.com/docs/rest/business-solutions/stores/catalog-v3/products-v3/bulk-update-products-by-filter.md) with products to update and collect the `jobId` from the response. 2. Call [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job.md) to get the job status and number of items remain to be processed. 3. Call [List Async Job Items](https://dev.wix.com/docs/rest/business-management/async-job/list-async-job-items.md) to retrieve the updated products.