> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Row

Gets the row specified in the URL.

<Note>
  External Documentation

  To learn more, visit the [Smartsheet documentation](https://smartsheet.redoc.ly/tag/rows#operation/row-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Exclude   | A comma-separated list of element types to exclude from the response:<br />- `Filtered out Rows` - excludes filtered-out rows from response payload if a sheet filter is applied; includes total number of filtered rows.<br />- `Link in from cell Details` - excludes the following attributes from the cell.linkInFromCell object: columnId, rowId, status.<br />- `Links Out To Cells Details` - excludes the following attributes from the cell.linksOutToCells array elements: columnId, rowId, status.<br />- `None existent cells` - excludes empty cells. |
  | Include   | A comma-separated list of elements to include in the response.<br /><br />\* The `columns` flag adds a columns array that specifies all of the columns for the sheet.<br />\* The `filters` flag returns a `filteredOut` attribute indicating if the row should be displayed or hidden according to the sheet's filters.                                                                                                                                                                                                                                           |
  | Row ID    | Row ID of the row being accessed. <br /><br />Can be obtained by using `List Search Sheet` or `Search Sheets` actions.                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Sheet ID  | Sheet ID of the sheet being accessed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Level     | Specifies whether object data types, such as multi-contact data are returned in a backwards-compatible, text format in text/number columns.<br /><br />- Set `level`=0 (default) to use text/number columns for multi-contact data and multi-picklist data.<br /><br />- Set `level`=1 to use multiple-entry contact list columns for multi-contact data; multi-picklist data is returned in text/number columns.<br /><br />- Set `level`=2 to use multiple-entry contact list columns for multi-contact data and use multiple-entry picklist columns for multi-picklist data. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 940739534558112,
	"sheetId": 3122331708376523,
	"rowNumber": 3,
	"siblingId": 3216544120087153,
	"version": 5,
	"expanded": false,
	"accessLevel": "<string>",
	"createdAt": "2025-03-20T15:43:56Z",
	"modifiedAt": "2025-04-01T05:15:12Z",
	"cells": [
		{
			"columnId": 10584827567992126,
			"value": "<string>",
			"displayValue": "<string>"
		},
		{
			"columnId": 2819589684621389,
			"value": "<string>",
			"displayValue": "<string>"
		}
	],
	"columns": [
		{
			"id": 5438043066574469,
			"version": 2,
			"index": 2,
			"title": "<string>",
			"type": "<string>",
			"primary": true,
			"validation": false,
			"width": 99
		},
		{
			"id": 5999549488869523,
			"version": 0,
			"index": 1,
			"title": "<string>",
			"type": "<string>",
			"validation": false,
			"width": 124
		}
	]
}
```

## Workflow Library Example

[Get Row with Smartsheet and Send Results Via Email](https://library.blinkops.com/workflows/get-row-with-smartsheet-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-row-with-smartsheet-and-send-results-via-email/canvas" />
</div>
