Smartsheet.Api.Internal.SheetResourcesImpl.SendUpdateRequest C# (CSharp) Method

SendUpdateRequest() public method

Creates an Update Request for the specified Row(s) within the Sheet. An email notification (containing a link to the update request) will be asynchronously sent to the specified recipient(s).

It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/updaterequests

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public SendUpdateRequest ( long sheetId, MultiRowEmail email ) : UpdateRequest
sheetId long the sheetId
email Smartsheet.Api.Models.MultiRowEmail the Email
return Smartsheet.Api.Models.UpdateRequest
        public virtual UpdateRequest SendUpdateRequest(long sheetId, MultiRowEmail email)
        {
            return this.CreateResource<RequestResult<UpdateRequest>, MultiRowEmail>("sheets/" + sheetId + "/updaterequests", email).Result;
        }