2017-08-08 16:28:17 +00:00
---
2020-01-18 00:18:09 +00:00
layout: api
page_title: Userpass - Auth Methods - HTTP API
2017-08-08 16:28:17 +00:00
description: |-
This is the API documentation for the Vault username and password
2017-09-13 01:48:52 +00:00
auth method.
2017-08-08 16:28:17 +00:00
---
2017-09-13 01:48:52 +00:00
# Userpass Auth Method (HTTP API)
2017-08-08 16:28:17 +00:00
2017-09-13 01:48:52 +00:00
This is the API documentation for the Vault Username & Password auth method. For
general information about the usage and operation of the Username and Password method, please
2020-01-22 20:05:41 +00:00
see the [Vault Userpass method documentation](/docs/auth/userpass).
2017-08-08 16:28:17 +00:00
2017-09-13 01:48:52 +00:00
This documentation assumes the Username & Password method is mounted at the `/auth/userpass`
2017-09-21 21:14:40 +00:00
path in Vault. Since it is possible to enable auth methods at any location,
2017-08-08 16:28:17 +00:00
please update your API calls accordingly.
## Create/Update User
Create a new user or update an existing user. This path honors the distinction between the `create` and `update` capabilities inside ACL policies.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------------- |
| `POST` | `/auth/userpass/users/:username` |
2017-08-08 16:28:17 +00:00
### Parameters
2021-05-07 12:17:51 +00:00
- `username` `(string: <required>)` – The username for the user. Accepted characters: alphanumeric plus "_", "-", "." (underscore, hyphen and period); username cannot begin with hyphen or period.
2017-09-13 01:48:52 +00:00
- `password` `(string: <required>)` - The password for the user. Only required
2017-08-08 16:28:17 +00:00
when creating the user.
2019-07-30 19:58:32 +00:00
2020-12-17 21:53:33 +00:00
@include 'tokenfields.mdx'
2017-08-08 16:28:17 +00:00
### Sample Payload
```json
{
"password": "superSecretPassword",
2018-05-25 18:35:09 +00:00
"policies": "admin,default",
"bound_cidrs": ["127.0.0.1/32", "128.252.0.0/16"]
2017-08-08 16:28:17 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users/mitchellh
2017-08-08 16:28:17 +00:00
```
## Read User
Reads the properties of an existing username.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------------- |
| `GET` | `/auth/userpass/users/:username` |
2017-08-08 16:28:17 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users/mitchellh
2017-08-08 16:28:17 +00:00
```
### Sample Response
```json
{
"request_id": "812229d7-a82e-0b20-c35b-81ce8c1b9fa6",
"lease_id": "",
"lease_duration": 0,
"renewable": false,
"data": {
"max_ttl": 0,
2019-06-24 14:39:34 +00:00
"policies": ["default", "dev"],
2017-08-08 16:28:17 +00:00
"ttl": 0
},
"warnings": null
}
```
## Delete User
2017-09-13 01:48:52 +00:00
This endpoint deletes the user from the method.
2017-08-08 16:28:17 +00:00
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :------------------------------- |
2019-03-22 16:15:37 +00:00
| `DELETE` | `/auth/userpass/users/:username` |
2017-08-08 16:28:17 +00:00
### Parameters
- `username` `(string: <required>)` - The username for the user.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users/mitchellh
2017-08-08 16:28:17 +00:00
```
## Update Password on User
Update password for an existing user.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :---------------------------------------- |
2019-03-22 16:15:37 +00:00
| `POST` | `/auth/userpass/users/:username/password` |
2017-08-08 16:28:17 +00:00
### Parameters
- `username` `(string: <required>)` – The username for the user.
- `password` `(string: <required>)` - The password for the user.
### Sample Payload
```json
{
2020-01-18 00:18:09 +00:00
"password": "superSecretPassword2"
2017-08-08 16:28:17 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users/mitchellh/password
2017-08-08 16:28:17 +00:00
```
## Update Policies on User
Update policies for an existing user.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :---------------------------------------- |
2019-03-22 16:15:37 +00:00
| `POST` | `/auth/userpass/users/:username/policies` |
2017-08-08 16:28:17 +00:00
### Parameters
- `username` `(string: <required>)` – The username for the user.
- `policies` `(string: "")` – Comma-separated list of policies. If set to empty
### Sample Payload
```json
{
2020-01-18 00:18:09 +00:00
"policies": ["policy1", "policy2"]
2017-08-08 16:28:17 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users/mitchellh/policies
2017-08-08 16:28:17 +00:00
```
## List Users
List available userpass users.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :--------------------- |
| `LIST` | `/auth/userpass/users` |
2017-08-08 16:28:17 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2020-05-15 12:29:32 +00:00
--request LIST \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/users
2017-08-08 16:28:17 +00:00
```
### Sample Response
```json
{
"data": {
2020-01-18 00:18:09 +00:00
"keys": ["mitchellh", "armon"]
2017-08-08 16:28:17 +00:00
}
}
```
## Login
Login with the username and password.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------------- |
2019-03-22 16:15:37 +00:00
| `POST` | `/auth/userpass/login/:username` |
2017-08-08 16:28:17 +00:00
### Parameters
- `username` `(string: <required>)` – The username for the user.
- `password` `(string: <required>)` - The password for the user.
### Sample Payload
```json
{
2020-01-18 00:18:09 +00:00
"password": "superSecretPassword2"
2017-08-08 16:28:17 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-08-08 16:28:17 +00:00
$ curl \
--request POST \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/auth/userpass/login/mitchellh
2017-08-08 16:28:17 +00:00
```
### Sample Response
```json
{
"lease_id": "",
"renewable": false,
"lease_duration": 0,
"data": null,
"warnings": null,
"auth": {
"client_token": "64d2a8f2-2a2f-5688-102b-e6088b76e344",
"accessor": "18bb8f89-826a-56ee-c65b-1736dc5ea27d",
"policies": ["default"],
"metadata": {
"username": "mitchellh"
},
"lease_duration": 7200,
"renewable": true
}
}
2017-09-13 01:48:52 +00:00
```