Actions8
- Item Actions
- Vault Actions
- File Actions
Overview
This node integrates with the 1Password API to list files associated with a specific item in a vault. It is useful for workflows that need to retrieve metadata or manage files stored within 1Password vaults, such as automating file audits, backups, or syncing files with other systems.
For example, you can use this node to:
- Retrieve all files attached to a particular item in a vault.
- Automate processing or downloading of these files in subsequent workflow steps.
Properties
| Name | Meaning |
|---|---|
| Vault UUID | The unique identifier of the vault containing the item whose files you want to list. |
| Item UUID | The unique identifier of the item within the vault whose files you want to list. |
| Inline Content | Whether to include the actual content of the files inline in the response (true/false). |
Output
The node outputs JSON data representing the list of files associated with the specified item in the vault. Each file object typically includes metadata such as file name, size, content type, and optionally the file content itself if "Inline Content" is set to true.
If the node supports binary data output (not explicitly shown here), it would represent the actual file contents for further processing or saving.
Dependencies
- Requires an API key credential for authenticating with the 1Password API.
- The base URL for the 1Password API must be configured in the credentials.
- Network access to the 1Password API endpoint.
Troubleshooting
- Invalid Vault or Item UUID: Ensure the provided UUIDs are correct and exist in your 1Password account.
- Authentication Errors: Verify that the API key credential is valid and has sufficient permissions.
- Empty File List: Confirm that the specified item actually has files attached.
- API Rate Limits: If requests fail due to rate limiting, consider adding delays or retries in your workflow.