Hi!
I’m trying to use the Glide API with python to essentially replace an entire table.
For now, I’ve only managed to do it by
- Getting all rows and extracting their row-id.
- Looping through each row-id and making an api call per row to delete each one iindividually.
- Add the new rows one at a time through separate API calls.
I’m sure there must be away to bulk delete/upload but can’t seem to figure out how.
Does anyone know. a more efficient way to do this?