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

GetSight() public method

Get a specified Sight.

It mirrors To the following Smartsheet REST API method: GET /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 GetSight ( long sightId ) : Sight
sightId long the Id of the sight
return Smartsheet.Api.Models.Sight
        public virtual Sight GetSight(long sightId)
        {
            return this.GetResource<Sight>("sights/" + sightId, typeof(Sight));
        }