From 0a6c007d707bc81aa3b9af658b668b9b0cf74887 Mon Sep 17 00:00:00 2001 From: Noah Talerman <47070608+noahtalerman@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:47:30 -0400 Subject: [PATCH] API fix: Incorrect key name (#48017) `authtype_username_password` is right. `authtype_username_and_password` is not. For the following bug: - https://github.com/fleetdm/fleet/issues/47844 --- 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 1babf62815..b2b30fa3fa 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -2186,7 +2186,7 @@ Modifies the Fleet's configuration with the supplied information. | sender_address | string | The sender email address for the Fleet app. An invitation email is an example of the emails that may use this sender address | | server | string | The SMTP server for the Fleet app. | | port | integer | The SMTP port for the Fleet app. | -| authentication_type | string | The authentication type used by the SMTP server. Options include `"authtype_username_and_password"` or `"none"` | +| authentication_type | string | The authentication type used by the SMTP server. Options include `"authtype_username_password"` or `"none"` | | user_name | string | The username used to authenticate requests made to the SMTP server. | | password | string | The password used to authenticate requests made to the SMTP server. | | enable_ssl_tls | boolean | Whether or not SSL and TLS are enabled for the SMTP server. |