How to update a large number of records at once

I’ve been testing the process of updating multiple fields at once, approximately 300 in total. Initially, I attempted to accomplish this by using an iterator to go through each module of the field and update the corresponding record with new text. Unfortunately, this approach is taking around 15 minutes to complete. As an alternative, I am now experimenting with the ‘compose record search’ function to perform an update based on the search results it provides. This way, I hope to update all the necessary fields simultaneously. However, I’m encountering difficulties and would appreciate any assistance.

In version 2023.3 there is a new functionality called Bulk Editing of Records

You might be able to use the rest function if you can update from outside corteza.

Example:

{“records”:[“343388467159368119”],“values”:[{“name”:“Birthdate”},{“name”:“OwnerId”,“value”:“319544366110641421”},{“name":“Email”,“value”:"ab@name.com”}]}

This is one record only.

PATCH request to

https://your-server/compose/namespace/339714887966392420/module/339714887952302180/record/

Haven’t dug any deeper yet.