DeleteWorkspace() public method

Deletes the specified Workspace (and its contents).

It mirrors To the following Smartsheet REST API method: DELETE /workspaces{workspaceId}

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 DeleteWorkspace ( long workspaceId ) : void
workspaceId long the Id of the workspace
return void
Example #1
0
 public virtual void TestDeleteWorkspace()
 {
     server.setResponseBody("../../../TestSDK/resources/deleteWorkspace.json");
     workspaceResources.DeleteWorkspace(1234L);
 }