Delete Named Storages

Delete Named Storages

Deletes your named storages by matching their names with a RegExp, selecting a date, or more. Enables deleting multiple named storages fast and safe using a UI rather than API.

DEVELOPER_TOOLSOPEN_SOURCEApify

Apify Platform does not provide an option in the UI to delete your named storages and once you create a certain amount of them, navigation becomes slow and cumbersome. This actor attempts to solve that problem by giving you a simple UI that should serve most of your storage deleting requirements.

Usage

By selecting the type of named storage you want to delete and providing a number of filtering options, you can use this actor to delete one, many or all of your named storages in TWO clicks.

Safety check

To save you from accidentally deleting storages when using wrong filters, the actor does not delete the storages right away, but only saves a list of the ones to be deleted and displays a link for you to review. If you're satisfied with the selected list, you can then run the actor again to finally delete the storages.

Examples

Delete all datasets with STAGING in their name:

1{
2  "storageType": "DATASET",
3  "matchingExpression": "STAGING"
4}

Delete all key-value stores created on 20 January 2020:

1{
2  "storageType": "KEY_VALUE_STORE",
3  "matchingExpression": ".*",
4  "createdAt": "2020-01-20"
5}

Delete the newest (youngest) request queue:

1{
2  "storageType": "REQUEST_QUEUE",
3  "matchingExpression": ".*",
4  "newestFirst": true,
5  "maxDeletedStorages": 1
6}

Delete 100 oldest datasets whose name starts with "TEST":

1{
2  "storageType": "DATASET",
3  "matchingExpression": "^TEST",
4  "maxDeletedStorages": 100
5}

Frequently Asked Questions

Is it legal to scrape job listings or public data?

Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.

Do I need to code to use this scraper?

No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.

What data does it extract?

It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.

Can I scrape multiple pages or filter by location?

Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.

How do I get started?

You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!