DeleteSheet() public method

Create a sheet in given folder.

It mirrors To the following Smartsheet REST API method: POST /folders/{folderId}/Sheets

Create a sheet (from existing sheet or template) in given folder.

It mirrors To the following Smartsheet REST API method: POST /folders/{folderId}/Sheets

Delete a sheet.

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

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 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 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 DeleteSheet ( long sheetId ) : void
sheetId long the sheetId
return void
 public virtual void TestDeleteSheet()
 {
     server.setResponseBody("../../../TestSDK/resources/deleteSheet.json");
     sheetResource.DeleteSheet(1234L);
 }