Skip to main content
POST
/
Agent
/
Storage
/
GetFromVault
Get From Vault
curl --request POST \
  --url https://{host}/Agent/Storage/GetFromVault \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vaultId": "<string>",
  "masked": true
}
'
{
  "vaultId": "<string>",
  "created": "2023-11-07T05:31:56Z",
  "updated": "2023-11-07T05:31:56Z",
  "Tags": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ],
  "type": "<string>",
  "clientId": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Allows the client to get an item from the vault. It is only possible to retrieve items that have been stored using the same account.

Authentication

Requires a valid JWT bearer token.

Notes

This endpoint uses the request schema notation described in Pattern matching.

Authorizations

Authorization
string
header
required

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

Body

application/json
vaultId
string
required
masked
boolean

Response

200 - application/json

Success

vaultId
string
required
created
string<date-time>
required
updated
string<date-time>
required
Tags
object[]
required
type
string
clientId
string