Yeah, the timeout issue is real, but I found a better way. Skip the regular HubSpot module in Make and use the HTTP module with direct API calls to the batch endpoints instead. HubSpot’s batch delete API handles up to 100 records per request - way more efficient than deleting one by one. Set up a filter to grab tasks older than your cutoff date, then use “Set multiple variables” to group the record IDs into batches of 100. Hit the /crm/v3/objects/tasks/batch/archive endpoint with a POST request containing the record IDs. I cleared 15,000 old tasks in about 90 minutes this way. Just make sure your HubSpot API key has delete permissions for objects, or you’ll get auth errors partway through.