> ## 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.

# Update Row

Update cell values in the specified rows, expand/collapse the specified rows,
or modify the position of specified rows (including indenting/outdenting).

For more information regarding changing row positions, see [location-specifier attributes.](https://smartsheet.redoc.ly/tag/rowsRelated#section/Row-Include-Flags)

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter             | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
  | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Allow Partial Success | Select to enable partial success for this bulk operation.<br /><br />See [Partial Success](https://smartsheet.redoc.ly/#section/Work-at-Scale/Bulk-Operations) for more information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | Expanded              | Indicates whether the row is expanded or collapsed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
  | Locked                | Select to lock the row.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Override Validation   | Select to allow a cell value outside of the validation limits.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | 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.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
  | cells                 | Enter the content of the cells inside a list `[]` , each cell should be an object `{}`.<br /><br />For further information about the options for each cell visit, [Smartsheet's documentation](https://smartsheet.redoc.ly/tag/rows#operation/update-rows).<br /><br />Example: <br /><pre><code>\[<br />      \{<br />        "columnId": 11111111,<br />        "value": "Updated Value",<br />        "image":\{<br />          "altText": "The Actual Alt text",<br />          "height": 50,<br />          "id": "\{image ID}",<br />          "width": 50<br />        }<br />      },<br />      \{<br />        "columnId": 22222222,<br />        "value": "Updated Value",<br />        "strict": "true",<br />        "overrideValidation": "true"<br />      }<br />    ]</code></pre> |
</div>

## Example Output

```json theme={"dark"}
{
	"message": "<string>",
	"resultCode": 2,
	"version": 31,
	"failedItems": [],
	"result": [
		{
			"id": 4585366411359558,
			"rowNumber": 3,
			"siblingId": 4018042099687388,
			"expanded": false,
			"locked": false,
			"lockedForUser": false,
			"createdAt": "2025-03-20T15:43:56Z",
			"modifiedAt": "2025-04-02T05:14:23Z",
			"cells": [
				{
					"columnId": 5993672720434136,
					"displayValue": "<string>",
					"value": "<string>"
				},
				{
					"columnId": 478365502441661
				}
			]
		}
	]
}
```

## Workflow Library Example

[Update Row with Smartsheet and Send Results Via Email](https://library.blinkops.com/workflows/update-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/update-row-with-smartsheet-and-send-results-via-email/canvas" />
</div>
