--- layout: "http" page_title: "HTTP API: /sys/auth" sidebar_current: "docs-http-auth-auth" description: |- The `/sys/auth` endpoint is used to manage auth backends in Vault. --- # /sys/auth ## GET
Description
Lists all the enabled auth backends.
Method
GET
Parameters
None
Returns
```javascript { "github": { "type": "github", "description": "GitHub auth" } } ```
## POST
Description
Enable a new auth backend. The auth backend can be accessed and configured via the auth path specified in the URL. This auth path will be exposed under the `auth` prefix. For example, enabling with the `/sys/auth/foo` URL will make the backend available at `/auth/foo`. _This endpoint requires `sudo` capability on the final path._
Method
POST
URL
`/sys/auth/`
Parameters
Returns
`204` response code.
## DELETE
Description
Disable the auth backend at the given auth path. _This endpoint requires `sudo` capability on the final path._
Method
DELETE
URL
`/sys/auth/`
Parameters
None
Returns
`204` response code.
# /sys/auth/[auth_path]/tune ## GET
Description
Read the given auth path's configuration. Returns the current time in seconds for each TTL, which may be the system default or a auth path specific value. _This endpoint requires `sudo` capability on the final path, but the same functionality can be achieved without `sudo` via `sys/mounts/auth/[auth_path]/tune`._
Method
GET
URL
`/sys/auth//tune`
Parameters
None
Returns
```javascript { "default_lease_ttl": 3600, "max_lease_ttl": 7200 } ```
## POST
Description
Tune configuration parameters for a given auth path. _This endpoint requires `sudo` capability on the final path, but the same functionality can be achieved without `sudo` via `sys/mounts/auth/[auth_path]/tune`._
Method
POST
URL
`/sys/auth//tune`
Parameters
Returns
`204` response code.