Use * syntax for faster search

Table of Contents


Overview

To view the contents of a created list, use the Export List function. While editing a list, navigate to the List Items tab and select Export List.

For lists with more than 3,000 items, list contents must download by entering the following API URL into the browser’s address bar:

http://<buzzkey>.api.beeswax.com/rest/list_item?&rows=3000&list_id=1111&format=csv

Before using this URL, ensure that the user is logged into the appropriate Buzz UI instance and authenticated to the correct account. Beeswax uses cookie-based authentication, so GET requests to API endpoints can be made directly via the browser.

Make sure to modify the following elements in the URL:

  • Replace <buzzkey> with the actual Buzz Key.
  • Replace 1111 with the specific list ID.
  • Adjust the format to the desired file type (e.g., csv, xls, json, xlsx).

After making these modifications, paste the URL into the browser and press enter to download the list.

The rows= parameter has a maximum limit of 3,000 rows. For lists containing more than 3,000 items, pagination is required. This can be done by using the offset= parameter, which should be increased by increments of 3,000 for each subsequent GET request.

For example:

http://<buzzkey>.api.beeswax.com/rest/list_item?&rows=3000&list_id=1111&format=csv&offset=3000

http://<buzzkey>.api.beeswax.com/rest/list_item?&rows=3000&list_id=1111&format=csv&offset=6000

This method uses the list_item API endpoint. For additional information on using the API, refer to the list_item Docs page.

  • No labels
Provide feedback on this article
You are evaluating Refined.