General Information
...
Service | API | Method |
---|---|---|
urac | /admin/getUser | GET |
Data Model: Users
Workflow: Get User
Input
...
Name | Source | Mandatory | Type | Special Format | Description |
---|---|---|---|---|---|
uId | Query | YES | String | N/A | the user id |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": { "..." } } |
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result":false, "errors":{ "codes":[411], "details":[ { "code":411, "message":"invalid user id provided" } ] } } |
Error Codes
Code | Description |
---|---|
405 | Unable to find User. Please try again. |
411 | invalid user id provided |
Example (CURL)
...
Request
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X GET http://127.0.0.1:4000/urac/admin/getUser?uId=5718a32f0e811ab5a0ca08b3 |
...