> ## 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 A Subset Of An Item

Update an item's attribute, field, or a field's attribute.

<Note>
  External Documentation

  To learn more, visit the [1Password Connect Server documentation](https://developer.1password.com/docs/connect/api-reference/#update-a-subset-of-item-attributes).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Item ID   | The ID of the item to retrieve details of. Can be obtained by using the `List Items` action.                                                                                                                                                                                                                                                                                                                                                                                                            |
  | Operation | Select the operation to perform.                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
  | Path      | An `RFC6901 JSON Pointer` to one of the following:<br /><br />\* An **item's attribute**. For example:`/title` - to update the item's `title`.<br />\* An item's **field** by **field ID**. For example:`/fields/username` - for updating the entire `username` field in an item.<br />\* An **item's field attribute**. For example: `/fields/username/value` - for updating only the `value` of the `username` field in an item.                                                                      |
  | Value     | The value to apply at the specified path.<br /><br />This can be one of the following:<br /><br />\* A new item `attribute` e.g. a new title.<br />\* A new `value` for an `item's field` (a JSON object that represents the field).<br />\* A new `value` for an `item's field attribute` e.g. a new username value.<br /><br />**Note**: The value you provide must match the path you specify. For example if you used the path format `/fields/<field_id>` the value must represent a field object. |
  | Vault ID  | The ID of the vault the item belongs to. Can be obtained by using the `List Vaults` action.                                                                                                                                                                                                                                                                                                                                                                                                             |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "kfl2pmrdx434sdow6pvaxrwpxq",
	"title": "New Item 1",
	"favorite": true,
	"tags": [
		"tag1",
		"tag2"
	],
	"version": 12,
	"vault": {
		"id": "89gk4nl4mdj7updlhn4tcvilok",
		"name": ""
	},
	"category": "LOGIN",
	"created_at": "2025-10-05T14:32:14Z",
	"updated_at": "2025-10-05T15:04:32.972821076Z",
	"additional_information": "XYZ",
	"sections": [
		{
			"id": "credentials",
			"label": "Credentials"
		}
	],
	"fields": [
		{
			"id": "username",
			"type": "STRING",
			"purpose": "USERNAME",
			"label": "username",
			"value": "user1"
		},
		{
			"id": "password",
			"type": "CONCEALED",
			"purpose": "PASSWORD",
			"label": "password",
			"value": "xqhAkjidE6EX4qPuWJf8",
			"password_details": {
				"strength": "EXCELLENT"
			}
		},
		{
			"id": "notesPlain",
			"type": "STRING",
			"purpose": "NOTES",
			"label": "notesPlain"
		},
		{
			"id": "buwabgpja4rhkh4cbkwvq6fymq",
			"type": "URL",
			"value": "https://example.com"
		},
		{
			"id": "ba4n4qght3nm2nthhptt4lxps4",
			"section": {
				"id": "credentials",
				"label": "Credentials"
			},
			"type": "CONCEALED",
			"label": "token",
			"value": "123456"
		}
	]
}
```

## Workflow Library Example

[Update a Subset of an Item with 1Password Connect Server and Send Results Via Email](https://library.blinkops.com/workflows/update-a-subset-of-an-item-with-1password-connect-server-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-a-subset-of-an-item-with-1password-connect-server-and-send-results-via-email/canvas" />
</div>
