Get User Account
General Information
Service | API | Method |
|---|---|---|
urac | /account/getUser | GET |
Data Model: Users
Workflow: Get User Account Flow
Input
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
|---|---|---|---|---|---|
username | Query | YES | String | N/A | The User Name |
Output
Valid Response
Valid Response Sample
{
"result": true,
"data": {
"..."
}
}
Invalid Response
Error Response Sample
{
"result":false,
"errors":{
"codes":[405],
"details":[
{
"code":405,
"message":"Unable to find User. Please try again."
}
]
}
}
Error Codes
Code | Description |
|---|---|
405 | Unable to find User. Please try again. |
Example (CURL)
Request
Calling Get User API
> CURL -X GET http://127.0.0.1:4000/urac/account/getUser?username=john Response
Get User API response
{
"result": true,
"data": {
"_id": "571a2a0e8cc861b98a0b9467",
"locked": true,
"username": "john",
"firstName": "john",
"lastName": "john",
"email": "john@soajs.org",
"ts": 1461332494711,
"status": "active",
"profile": {},
"groups": ["administrator"],
"config": {
"packages": {},
"keys": {}
},
"tenant": {
"id": "5551aca9e179c39b760f7a1a",
"code": "DBTN"
}
}
}