open-vault/website/pages/api-docs/system/namespaces.mdx

98 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-08-17 16:17:11 +00:00
---
layout: api
page_title: /sys/namespaces - HTTP API
sidebar_title: <code>/sys/namespaces</code>
description: The `/sys/namespaces` endpoint is used manage namespaces in Vault.
2018-08-17 16:17:11 +00:00
---
# `/sys/namespaces`
The `/sys/namespaces` endpoint is used manage namespaces in Vault.
## List Namespaces
This endpoints lists all the namespaces.
| Method | Path |
| :----- | :---------------- |
| `LIST` | `/sys/namespaces` |
2018-08-17 16:17:11 +00:00
### Sample Request
```
$ curl \
--header "X-Vault-Token: ..." \
-X LIST \
http://127.0.0.1:8200/v1/sys/namespaces
```
### Sample Response
```json
["ns1/", "ns2/"]
2018-08-17 16:17:11 +00:00
```
## Create Namespace
This endpoint creates a namespace at the givent path.
| Method | Path |
| :----- | :---------------------- |
| `POST` | `/sys/namespaces/:path` |
2018-08-17 16:17:11 +00:00
### Parameters
- `path` `(string: <required>)`  Specifies the path where the namespace
will be namespace. This is specified as part of the URL.
### Sample Request
```
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
http://127.0.0.1:8200/v1/sys/namespaces/ns1
```
## Delete Namespace
This endpoint deletes a namespace at the specified path.
| Method | Path |
| :------- | :---------------------- |
| `DELETE` | `/sys/namespaces/:path` |
2018-08-17 16:17:11 +00:00
### Sample Request
```
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
http://127.0.0.1:8200/v1/sys/namespaces/ns1
```
## Read Namespace Information
This endpoint get the metadata for the given namespace path.
| Method | Path |
| :----- | :---------------------- |
| `GET` | `/sys/namespaces/:path` |
2018-08-17 16:17:11 +00:00
### Sample Request
```
$ curl \
--header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/namespaces/ns1
```
### Sample Response
```json
{
"id": "gsudj",
"path": "ns1/"
}
```