Bulk update of parent ID (Python API)

Options

I'm building a project schedule that represents an overall manufacturing production plan. The the resulting Smartsheet has roughly 7,000 rows. I've found a way to use bulk API calls for all but setting the parent IDs, which is now taking upwards of 20 minutes.

Here's the basic flow:

-- Create production schedule in memory

-- Export to CSV

-- Import CSV to a new sheet (Sheet A)

-- Replicate a template Gantt sheet into a new sheet (Sheet B)

-- Copy all Imported rows from Sheet A to Sheet B (the Gantt) because importing CSV to the Gantt wasn't working. Might be able to condense these two steps. But, that's not my issue.

-- My issue is this. I now have to run repeated update_rows() requests, once for each parent ID. This was necessary because update_rows() doesn't allow updates to different parent IDs in the same call. Grouping by parent ID let me reduce the number of calls substantially, but I'm still hitting the rate limit.

Is there a way to a) include the parent ID in the CSV import, or b) somehow import a bulk update to parent IDs?

Answers