idempotency in API Requests
Running into issues where large updates to a sheet can sometime take too long to complete, and there is no way of knowing if it failed or not. Adding in a client side Key that is included with the request, will allow to try it again and the server will not process it again just return the status of the original request. As…