Smartsheet.Api.Internal.SheetUpdateRequestResourcesImpl.CreateUpdateRequest C# (CSharp) Method

CreateUpdateRequest() 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 CreateUpdateRequest ( long sheetId, UpdateRequest updateRequest ) : UpdateRequest
sheetId long the sheetId
updateRequest Smartsheet.Api.Models.UpdateRequest
return Smartsheet.Api.Models.UpdateRequest
        public virtual UpdateRequest CreateUpdateRequest(long sheetId, UpdateRequest updateRequest)
        {
            return this.CreateResource<RequestResult<UpdateRequest>, UpdateRequest>("sheets/" + sheetId + "/updaterequests", updateRequest).Result;
        }