From Bright Pattern Documentation
Jump to: navigation, search
m
Line 9: Line 9:
 
POST
 
POST
  
== Response ==
+
== Example Request Body ==
 
  {
 
  {
 
   "loginId": "test008",  
 
   "loginId": "test008",  

Revision as of 18:47, 30 July 2019

• 3.16 • 3.17 • 3.18

Create User

Creates a new user in the system.

Request

URL

http[s]://<host>/admin/ws/t/<tenant_url>/user

HTTP Method

POST

Example Request Body

{
 "loginId": "test008", 
 "password": "top secret",
 "firstName": "test",
 "lastName": "008",
 "team": "Maintenance Renewal",
                    
 "extension": "2072",
 "workPhone": "123456",
 "mobilePhone": "78910",
 "email": "test008@nowhere.net",
 "disabled": false,
 "changePassword": true,
 "skills": {
 "Maintenance Renewal": 100,
 "English": 33
 },
 "roles": [
 "Agent",
 "Supervisor"
 ]
} 


< Previous | Next >