Click or drag to resize

SheetRowResourcesGetRow Method

Gets the Row specified in the URL.

It mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/rows/{rowId}

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
Row GetRow(
	long sheetId,
	long rowId,
	IEnumerable<RowInclusion> include,
	IEnumerable<RowExclusion> exclude
)

Parameters

sheetId
Type: SystemInt64
the sheetId
rowId
Type: SystemInt64
the rowId
include
Type: System.Collections.GenericIEnumerableRowInclusion
comma-separated list of elements to include in the response.
exclude
Type: System.Collections.GenericIEnumerableRowExclusion
a comma-separated list of optional objects to exclude in the response.

Return Value

Type: Row
the row object
Exceptions
ExceptionCondition
InvalidOperationException if any argument is null or 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