Smartsheet.Api.Internal.GroupResourcesImpl.DeleteGroup C# (CSharp) Method

DeleteGroup() public method

Deletes the Group specified in the URL.

This operation is only available to system administrators.

It mirrors To the following Smartsheet REST API method: DELETE /groups/{groupId}

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 DeleteGroup ( long groupId ) : void
groupId long the Id of the group
return void
        public virtual void DeleteGroup(long groupId)
        {
            this.DeleteResource<Group>("groups/" + groupId, typeof(Group));
        }