Click or drag to resize

RowColumnResourcesGetCellHistory Method (Int64, Int64, Int64, IEnumerableCellInclusion, PaginationParameters, NullableInt32)

Gets the cell modification history.

Mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/rows/{rowId}/columns/{columnId}/history

Remarks

This operation supports pagination of results. For more information, see Paging.

This is a resource-intensive operation and incurs 10 additional requests against the rate limit.

Namespace:  Smartsheet.Api
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
PaginatedResult<CellHistory> GetCellHistory(
	long sheetId,
	long rowId,
	long columnId,
	IEnumerable<CellInclusion> include,
	PaginationParameters paging,
	Nullable<int> level
)

Parameters

sheetId
Type: SystemInt64
the sheet Id
rowId
Type: SystemInt64
the row Id
columnId
Type: SystemInt64
the column Id
include
Type: System.Collections.GenericIEnumerableCellInclusion
the elements to include in the response
paging
Type: Smartsheet.Api.ModelsPaginationParameters
the pagination
level
Type: SystemNullableInt32
compatibility level

Return Value

Type: PaginatedResultCellHistory
the row object
Exceptions
ExceptionCondition
InvalidOperationException if any argument is null or an empty string
InvalidRequestException if there is any problem with the REST API request
AuthorizationException if there is any problem with the REST API authorization (access token)
ResourceNotFoundException if the resource cannot be found
ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting)
SmartsheetException if there is any other error during the operation
See Also