Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

General Information


ServiceAPIMethod
urac/admin/getUserGET


Data Model: Users

Workflow: Get User Flow

Input


Type: application/json
NameSourceMandatoryTypeSpecial FormatDescription
uIdQueryYESStringN/Athe user id


Output


Valid Response

Valid Response Sample
{
	"result": true,
	"data": {
		"..."	
	}
}


Invalid Response

Error Response Sample
{
    "result":false,
    "errors":{
        "codes":[411],
        "details":[
            {
                "code":411,
                "message":"invalid user id provided"
            }
        ]
    }
}



Error Codes



Code
Description
405Unable to find User. Please try again.
411invalid user id provided


Example (CURL)


Request

Calling Get User API
 > CURL -X GET http://127.0.0.1:4000/urac/admin/getUser?uId=5718a32f0e811ab5a0ca08b3 

Response

Get User API response
{
    "result": true,
    "data": {
        "_id": ObjectId("5d308c68687aaf05b1c24097"),
	    "locked": true,
	    "username": "owner",
	    "password": "$2a$12$geJJfv33wkYIXEAlDkeeuOgiQ6y6MjP/YxbqLdHdDSK7LDG.7n7Pq",
	    "firstName": "owner",
	    "lastName": "owner",
	    "email": "me@localhost.com",
	    "ts": Double(1563462760715.0),
	    "status": "active",
	    "profile": {},
	    "groups": [
	        "owner"
	    ],
	    "config": {
	        "packages": {},
	        "keys": {}
	    },
	    "tenant": {
        	"id": "5c0e74ba9acc3c5a84a51259",
        	"code": "DBTN"
    	},
    	"lastLogin": Double(1564068005777.0)
    }
}
  • No labels