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

# Add Item To Vault

Add an item to a given vault.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Category  | The added item's category.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Favorite  | Select to mark the item as **favorite**.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
  | Fields    | An array of **Field** objects to include with the item.<br /><br />For example, to add Username, Password, Website, Token (custom) fields:<br /><pre><code>\[<br />  \{<br />    "purpose": "USERNAME",<br />    "value": "username"<br />  },<br />  \{<br />    "purpose": "PASSWORD",<br />    "value": "xqhAkjidE6EX4qPuWJf8"<br />  }<br />  \{<br />    "type": "URL",<br />    "label": "Website",<br />    "value": "[https://example.com](https://example.com)"<br />  }<br />  \{<br />    "section": \{<br />      "id": "credentials"<br />    },<br />    "type": "CONCEALED",<br />    "label": "token",<br />    "value": "juc9RBV\_bvj0hyg9hen"<br />  }<br />]</code></pre>For more information on different field types, please refer to [1password's documentation](https://developer.1password.com/docs/connect/api-reference/#item-field-object). |
  | Sections  | An array of **Section** objects to include with the item. You can attach each section to a custom field by using the `section` attribute in a field object.<br /><br />Example:<br /><pre><code>\[<br />  \{<br />    "id": "credentials",<br />    "label": "Credentials"<br />  }<br />]</code></pre>For more information on sections objects, please refer to [1password's documentation](https://developer.1password.com/docs/connect/api-reference/#item-section-object).                                                                                                                                                                                                                                                                                                                                                                                         |
  | Tags      | A comma-separated list of the tags to assign to the item.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | Title     | The added Item's title.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | Vault ID  | The ID of the vault the item will be added to. Can be obtained by using the `List Vaults` action.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"additionalInformation": "username",
	"category": "LOGIN",
	"createdAt": "2025-10-05T14:32:13.930147641Z",
	"favorite": true,
	"fields": [
		{
			"id": "username",
			"label": "username",
			"purpose": "USERNAME",
			"type": "STRING",
			"value": "username"
		},
		{
			"id": "password",
			"label": "password",
			"passwordDetails": {
				"strength": "EXCELLENT"
			},
			"purpose": "PASSWORD",
			"type": "CONCEALED",
			"value": "xqhAkjidE6EX4qPuWJf8"
		},
		{
			"id": "notesPlain",
			"label": "notesPlain",
			"purpose": "NOTES",
			"type": "STRING"
		},
		{
			"id": "buwabgpja4rhkh4cbkwvq6fymq",
			"label": "Website",
			"type": "URL",
			"value": "https://example.com"
		},
		{
			"id": "ba4n4qght3nm2nthhptt4lxps4",
			"label": "token",
			"section": {
				"id": "credentials",
				"label": "Credentials"
			},
			"type": "CONCEALED",
			"value": "123456"
		}
	],
	"id": "kfl2pmrdx434sdow6pvaxrwpxq",
	"sections": [
		{
			"id": "credentials",
			"label": "Credentials"
		}
	],
	"tags": [
		"tag1",
		"tag2"
	],
	"title": "New Item",
	"updatedAt": "2025-10-05T14:32:13.930149066Z",
	"vault": {
		"id": "89gk4nl4mdj7updlhn4tcvifrt",
		"name": ""
	}
}
```

## Workflow Library Example

[Add Item to Vault with 1Password Connect Server and Send Results Via Email](https://library.blinkops.com/workflows/add-item-to-vault-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/add-item-to-vault-with-1password-connect-server-and-send-results-via-email/canvas" />
</div>
