Skip to main content
GET
/
vaults
/
{vaultUuid}
Get Vault details and metadata
curl --request GET \
  --url http://localhost:8080/v1/vaults/{vaultUuid} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "attributeVersion": 123,
  "contentVersion": 123,
  "items": 123,
  "type": "USER_CREATED",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vaultUuid
string
required

The UUID of the Vault to fetch Items from

Pattern: ^[\da-z]{26}$

Response

OK

id
string
Pattern: ^[\da-z]{26}$
name
string
description
string
attributeVersion
integer

The vault version

contentVersion
integer

The version of the vault contents

items
integer

Number of active items in the vault

type
enum<string>
Available options:
USER_CREATED,
PERSONAL,
EVERYONE,
TRANSFER
createdAt
string<date-time>
updatedAt
string<date-time>