As your organization grows and project volume increases, it becomes important to manage inactive or completed projects efficiently to help ensure optimal performance. SiteCapture offers multiple options for bulk archiving, allowing administrators to keep their workspaces organized with minimal effort.
You can bulk archive projects through:
• The web interface (UI) — by selecting projects directly from your screen
• The SiteCapture API — for automation and large-scale archiving workflows
This article outlines each method and offers best practices for choosing the right approach based on your needs.
Option 1: Bulk Archiving via Web
Please note that you can archive a maximum of 100 projects at a time. This method is ideal for teams who prefer a visual, manual approach and want to manage projects in small-to-medium batches. We advise that you implement this approach as a proactive measure for system hygiene.
You can find more detailed information on this method here: https://sitecapture.zendesk.com/hc/en-us/articles/4408131569683-Bulk-Actions
Option 2: Bulk Archiving via API
For organizations needing to archive hundreds or thousands of projects at once—or automate this as part of regular maintenance—SiteCapture provides API endpoints that enable robust bulk archiving workflows.
To do this, you’ll combine two API calls:
1. Retrieve Selected Projects
2. Archive a Project
Step 1: Retrieve Target Projects
Use the Retrieve Selected Projects endpoint to identify which projects you want to archive. Apply filters like status, last modified date, or template.
Step 2: Loop and Archive Each Project
Send a POST request to the Archive Project endpoint for each project ID you retrieved.
Endpoint:
POST https://<base-url>/customer_api/1_0/project/archive/<project_id>
Request Body: None
Response: 200 OK if successful
Example:
POST https://<base-url>/customer_api/1_0/project/archive/456
Best Practices
- Choose the Right Tool: Use the UI method for small batches (up to 100 at a time), and the API method for large-scale or automated workflows.
- Filter First: Whether using the UI or API, always use filters to target only the projects you need to archive.
- "Call the "Retrieve Selected Projects" endpoint with the summary_only flag set to true.
- Automate When Possible: Consider scripting the API workflow to archive projects on a scheduled basis.
- Stay Organized: Archiving old projects regularly helps keep your project environment clean, searchable, and easier to manage.
Need Help?
If you need support configuring an archiving workflow or deciding which method is best for your team, please contact your SiteCapture Customer Success Manager or reach out to support@sitecapture.com.
Comments