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 an item to a given vault.
Parameters
| 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.
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. |
| 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.
Example:
[ { “id”: “credentials”, “label”: “Credentials” } ] For more information on sections objects, please refer to 1password’s documentation. |
| 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. |
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