Skip to main content
Add an item to a given vault.
External DocumentationTo learn more, visit the 1Password Connect Server documentation.

Parameters

ParameterDescription
CategoryThe added item’s category.
FavoriteSelect to mark the item as favorite.
FieldsAn array of Field objects to include with the item.

For example, to add Username, Password, Website, Token (custom) fields:
[
{
“purpose”: “USERNAME”,
“value”: “username”
},
{
“purpose”: “PASSWORD”,
“value”: “xqhAkjidE6EX4qPuWJf8”
}
{
“type”: “URL”,
“label”: “Website”,
“value”: “https://example.com
}
{
“section”: {
“id”: “credentials”
},
“type”: “CONCEALED”,
“label”: “token”,
“value”: “juc9RBV_bvj0hyg9hen”
}
]
For more information on different field types, please refer to 1password’s documentation.
SectionsAn 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.

Example:
[
{
“id”: “credentials”,
“label”: “Credentials”
}
]
For more information on sections objects, please refer to 1password’s documentation.
TagsA comma-separated list of the tags to assign to the item.
TitleThe added Item’s title.
Vault IDThe ID of the vault the item will be added to. Can be obtained by using the List Vaults action.

Example Output

{
	"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
Workflow LibraryPreview this Workflow on desktop
I