Smartsheet.Api.Internal.SightResourcesImpl.DeleteSight C# (CSharp) Method

DeleteSight() public method

Delete a sight.

It mirrors To the following Smartsheet REST API method: DELETE /sights/{sightId}

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 DeleteSight ( long sightId ) : void
sightId long the sightId
return void
        public virtual void DeleteSight(long sightId)
        {
            this.DeleteResource<Sight>("sights/" + sightId, typeof(Sight));
        }