From Bright Pattern Documentation
Jump to: navigation, search
 
Line 2: Line 2:
 
This API is used to change a user's password, system status (i.e., active or inactive), and skills.
 
This API is used to change a user's password, system status (i.e., active or inactive), and skills.
  
 +
== Request ==
 +
=== URL ===
 +
http[s]://<host>/configapi/v2/user/<login_id>
  
== URL ==
+
=== HTTP Method ===
http[s]://<host>:<port>/configapi/v2/user/<login_id>
 
 
 
== Method ==
 
 
PUT
 
PUT
  
== Request Payload ==
+
== Response ==
{
+
  {
"password": "top secret",
+
  "password": "top secret",
"disabled": false,
+
  "disabled": false,
"changePassword": true,
+
  "changePassword": true,
"skills": {
+
  "skills": {
 
   "Maintenance Renewal": 100,
 
   "Maintenance Renewal": 100,
 
   "English": 33
 
   "English": 33
}
+
  }
}  
+
  }  
 +
 
  
  
  
  
<center>[[user-management-api-specification/CreateUser|< Previous]]  |  [[user-management-api-specification/GetUserLockState|Next >]]</center>
 
 
</translate>
 
</translate>

Revision as of 23:43, 13 November 2018

• 5.2

<translate>= Update User= This API is used to change a user's password, system status (i.e., active or inactive), and skills.

Request

URL

http[s]://<host>/configapi/v2/user/<login_id>

HTTP Method

PUT

Response

 {
 "password": "top secret",
 "disabled": false,
 "changePassword": true,
 "skills": {
  "Maintenance Renewal": 100,
  "English": 33
 }
 } 



</translate>

< Previous