From 2090cdbe43cb29111998b461f498a53fb25f7600 Mon Sep 17 00:00:00 2001 From: Gray Williams Date: Sat, 4 Jul 2026 00:21:17 +0100 Subject: [PATCH] Improve readability of required field (#48684) Improves the readability for the password field requirement when creating a non-sso user. --- docs/REST API/rest-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index 840fa8b183..bce4532966 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -14647,7 +14647,7 @@ By default, the user will be forced to reset its password upon first login. | ----------- | ------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | email | string | body | **Required**. The user's email address. | | name | string | body | **Required**. The user's full name or nickname. | -| password | string | body | The user's password (required for non-SSO users). | +| password | string | body | The user's password (**required** for API only and non-SSO users). | | sso_enabled | boolean | body | Whether or not SSO is enabled for the user. | | mfa_enabled | boolean | body | _Available in Fleet Premium._ Whether or not the user must click a magic link emailed to them to log in, after they successfully enter their username and password. Incompatible with SSO and API-only users. | | api_only | boolean | body | User is an "API-only" user (cannot use web UI) if true. |