1Password Connect
  1. Vaults
1Password Connect
  • Activity
    • Retrieve a list of API Requests that have been made.
      GET
  • Health
    • Get state of the server and its dependencies.
      GET
    • Ping the server for liveness
      GET
  • Metrics
    • Query server for exposed Prometheus metrics
      GET
  • Vaults
    • Get all Vaults
      GET
    • Get Vault details and metadata
      GET
  • Items
    • Get all items for inside a Vault
      GET
    • Create a new Item
      POST
    • Delete an Item
      DELETE
    • Get the details of an Item
      GET
    • Update a subset of Item attributes
      PATCH
    • Update an Item
      PUT
  • Files
    • Get all the files inside an Item
      GET
    • Get the details of a File
      GET
    • Get the content of a File
      GET
  1. Vaults

Get all Vaults

GET
/vaults
Vaults
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/vaults'
Response Response Example
200 - Example 1
[
  {
    "attributeVersion": 0,
    "contentVersion": 0,
    "createdAt": "2019-08-24T14:15:22Z",
    "description": "string",
    "id": "string",
    "items": 0,
    "name": "string",
    "type": "USER_CREATED",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]

Request

Query Params
filter
string 
optional
Filter the Vault collection based on Vault name using SCIM eq filter

Responses

🟢200OK
application/json
Body
array of:
attributeVersion
integer 
optional
The vault version
contentVersion
integer 
optional
The version of the vault contents
createdAt
string <date-time>
read-onlyoptional
description
string 
optional
id
string 
optional
Match pattern:
^[\da-z]{26}$
items
integer 
optional
Number of active items in the vault
name
string 
optional
type
enum<string> 
optional
Allowed values:
USER_CREATEDPERSONALEVERYONETRANSFER
updatedAt
string <date-time>
read-onlyoptional
🟠401Invalid or missing token
Modified at 2022-09-02 07:10:37
Previous
Query server for exposed Prometheus metrics
Next
Get Vault details and metadata
Built with