From Bright Pattern Documentation
Jump to: navigation, search
 
Line 2: Line 2:
 
This API returns user data, such as name, team, extension, skills, and so forth.
 
This API returns user data, such as name, team, extension, skills, and so forth.
  
 +
== Request ==
 +
=== URL ===
 +
http[s]://<host>/configapi/v2/user/<login_id>
  
== URL ==
+
=== HTTP Method ===
http[s]://<host>:<port>/configapi/v2/user/<login_id>
 
 
 
== Method ==
 
 
GET
 
GET
  
Line 33: Line 33:
  
  
<center>[[user-management-api-specification/RequestAccessToken|< Previous]]  |  [[user-management-api-specification/CreateUser|Next >]]</center>
+
 
 
</translate>
 
</translate>

Revision as of 23:35, 13 November 2018

• 5.2

<translate>= Get User Data= This API returns user data, such as name, team, extension, skills, and so forth.

Request

URL

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

HTTP Method

GET

Response

{ 
"loginId": "test008",
"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"
]
} 



</translate>

< Previous | Next >