You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specification/security/activate_user_profile/Request.ts
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,16 +24,46 @@ import { RequestBase } from '@_types/Base'
24
24
* Activate a user profile.
25
25
*
26
26
* Create or update a user profile on behalf of another user.
27
+
*
28
+
* NOTE: The user profile feature is designed only for use by Kibana and Elastic's Observability, Enterprise Search, and Elastic Security solutions.
29
+
* Individual users and external applications should not call this API directly.
30
+
* The calling application must have either an `access_token` or a combination of `username` and `password` for the user that the profile document is intended for.
31
+
* Elastic reserves the right to change or remove this feature in future releases without prior notice.
32
+
*
33
+
* This API creates or updates a profile document for end users with information that is extracted from the user's authentication object including `username`, `full_name,` `roles`, and the authentication realm.
34
+
* For example, in the JWT `access_token` case, the profile user's `username` is extracted from the JWT token claim pointed to by the `claims.principal` setting of the JWT realm that authenticated the token.
35
+
*
36
+
* When updating a profile document, the API enables the document if it was disabled.
37
+
* Any updates do not change existing content for either the `labels` or `data` fields.
Copy file name to clipboardExpand all lines: specification/security/disable_user_profile/Request.ts
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,10 +25,18 @@ import { Refresh } from '@_types/common'
25
25
* Disable a user profile.
26
26
*
27
27
* Disable user profiles so that they are not visible in user profile searches.
28
+
*
29
+
* NOTE: The user profile feature is designed only for use by Kibana and Elastic's Observability, Enterprise Search, and Elastic Security solutions.
30
+
* Individual users and external applications should not call this API directly.
31
+
* Elastic reserves the right to change or remove this feature in future releases without prior notice.
32
+
*
33
+
* When you activate a user profile, its automatically enabled and visible in user profile searches. You can use the disable user profile API to disable a user profile so it’s not visible in these searches.
34
+
* To re-enable a disabled user profile, use the enable user profile API .
0 commit comments