mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	 06df5b9d95
			
		
	
	06df5b9d95
	
	
	
		
			
			* Adding check-legacy-links-format workflow * Adding test-link-rewrites workflow * Updating docs-content-check-legacy-links-format hash * Migrating links to new format Co-authored-by: Kendall Strautman <kendallstrautman@gmail.com>
		
			
				
	
	
		
			145 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ---
 | ||
| layout: api
 | ||
| page_title: /sys/raw - HTTP API
 | ||
| description: The `/sys/raw` endpoint is used to access the raw underlying store in Vault.
 | ||
| ---
 | ||
| 
 | ||
| # `/sys/raw`
 | ||
| 
 | ||
| The `/sys/raw` endpoint is used to access the raw underlying store in Vault.
 | ||
| 
 | ||
| This endpoint is off by default. See the
 | ||
| [Vault configuration documentation](/vault/docs/configuration) to
 | ||
| enable.
 | ||
| 
 | ||
| ## Read Raw
 | ||
| 
 | ||
| This endpoint reads the value of the key at the given path. This is the raw path
 | ||
| in the storage backend and not the logical path that is exposed via the mount
 | ||
| system.
 | ||
| 
 | ||
| | Method | Path             |
 | ||
| | :----- | :--------------- |
 | ||
| | `GET`  | `/sys/raw/:path` |
 | ||
| 
 | ||
| ### Parameters
 | ||
| 
 | ||
| - `path` `(string: <required>)` – Specifies the raw path in the storage backend.
 | ||
|   This is specified as part of the URL.
 | ||
| 
 | ||
| - `compressed` `(bool: true)` - Attempt to decompress the value.
 | ||
| 
 | ||
| - `encoding` `(string: "")` - Specifies the encoding of the returned data. Defaults to no encoding.
 | ||
|   "base64" returns the value encoded in base64.
 | ||
| 
 | ||
| ### Sample Request
 | ||
| 
 | ||
| ```shell-session
 | ||
| $ curl \
 | ||
|     --header "X-Vault-Token: ..." \
 | ||
|     http://127.0.0.1:8200/v1/sys/raw/secret/foo
 | ||
| ```
 | ||
| 
 | ||
| ### Sample Response
 | ||
| 
 | ||
| ```json
 | ||
| {
 | ||
|   "value": "{'foo':'bar'}"
 | ||
| }
 | ||
| ```
 | ||
| 
 | ||
| ## Create/Update Raw
 | ||
| 
 | ||
| This endpoint updates the value of the key at the given path. This is the raw
 | ||
| path in the storage backend and not the logical path that is exposed via the
 | ||
| mount system.
 | ||
| 
 | ||
| | Method | Path             |
 | ||
| | :----- | :--------------- |
 | ||
| | `POST`  | `/sys/raw/:path` |
 | ||
| 
 | ||
| ### Parameters
 | ||
| 
 | ||
| - `path` `(string: <required>)` – Specifies the raw path in the storage backend.
 | ||
|   This is specified as part of the URL.
 | ||
| 
 | ||
| - `value` `(string: <required>)` – Specifies the value of the key.
 | ||
| 
 | ||
| - `compression_type` `(string: "")` - Create/update using the compressed form of `value`. Supported `compression_type`
 | ||
|   values are `gzip`, `lzw`, `lz4`, `snappy`, or `""`. `""` means no compression is used. If omitted and key already exists,
 | ||
|   update uses the same compression (or no compression) as the existing value.
 | ||
| 
 | ||
| - `encoding` `(string: "")` - Specifies the encoding of `value`. Defaults to no encoding.
 | ||
|   Use "base64" if `value` is encoded in base64.
 | ||
| 
 | ||
| ### Sample Payload
 | ||
| 
 | ||
| ```json
 | ||
| {
 | ||
|   "value": "{\"foo\": \"bar\"}"
 | ||
| }
 | ||
| ```
 | ||
| 
 | ||
| ### Sample Request
 | ||
| 
 | ||
| ```shell-session
 | ||
| $ curl \
 | ||
|     --header "X-Vault-Token: ..." \
 | ||
|     --request POST \
 | ||
|     --data @payload.json \
 | ||
|     http://127.0.0.1:8200/v1/sys/raw/secret/foo
 | ||
| ```
 | ||
| 
 | ||
| ## List Raw
 | ||
| 
 | ||
| This endpoint returns a list keys for a given path prefix.
 | ||
| 
 | ||
| **This endpoint requires 'sudo' capability.**
 | ||
| 
 | ||
| | Method | Path                         |
 | ||
| | :----- | :--------------------------- |
 | ||
| | `LIST` | `/sys/raw/:prefix`           |
 | ||
| | `GET`  | `/sys/raw/:prefix?list=true` |
 | ||
| 
 | ||
| ### Sample Request
 | ||
| 
 | ||
| ```shell-session
 | ||
| $ curl \
 | ||
|     --header "X-Vault-Token: ..." \
 | ||
|     --request LIST \
 | ||
|     http://127.0.0.1:8200/v1/sys/raw/logical
 | ||
| ```
 | ||
| 
 | ||
| ### Sample Response
 | ||
| 
 | ||
| ```json
 | ||
| {
 | ||
|   "data": {
 | ||
|     "keys": ["abcd-1234...", "efgh-1234...", "ijkl-1234..."]
 | ||
|   }
 | ||
| }
 | ||
| ```
 | ||
| 
 | ||
| ## Delete Raw
 | ||
| 
 | ||
| This endpoint deletes the key with given path. This is the raw path in the
 | ||
| storage backend and not the logical path that is exposed via the mount system.
 | ||
| 
 | ||
| | Method   | Path             |
 | ||
| | :------- | :--------------- |
 | ||
| | `DELETE` | `/sys/raw/:path` |
 | ||
| 
 | ||
| ### Parameters
 | ||
| 
 | ||
| - `path` `(string: <required>)` – Specifies the raw path in the storage backend.
 | ||
|   This is specified as part of the URL.
 | ||
| 
 | ||
| ### Sample Request
 | ||
| 
 | ||
| ```shell-session
 | ||
| $ curl \
 | ||
|     --header "X-Vault-Token: ..." \
 | ||
|     --request DELETE \
 | ||
|     http://127.0.0.1:8200/v1/sys/raw/secret/foo
 | ||
| ```
 |