General Information
...
Service | API | Method |
---|---|---|
urac | /admin/addUser | POST |
...
WorkFlow: Add User Flow
Input
...
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
---|
username | Body | YES | String | alphanumeric with _ , - characters only | ||
firstName | Body | YES | String | N/A | ||
lastName | Body | YES | String | N/A | ||
Body | YES | String |
Email Address Format (JSON Schema Validation) | ||||||
profile | Body | NO | Object | N/A | The profile object. | |
groups | Body | NO | Array | N/A | array of group code values | |
status | body | NO | String - enum | 'active', 'inactive', 'pendingNew' | ||
password | body | NO | String | |||
confirmation | body | NO | String | Value is as same as password | ||
pin | body | NO | ||||
code | YES | String | ||||
allowed | YES | boolean |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": "..." } |
...
Error Codes
Code | Description |
---|---|
400 | Database connection error |
402 | User account already exists. |
403 | Unable to register user. please try again. |
413 | Invalid profile field provided. Profile should be a stringified object. |
414 | Unable to add user. |
611 | invalid tenant id provided |
Example (CURL)
...
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X POST http://127.0.0.1:4000/urac/admin/addUser?tId=5551aca9e179c39b760f7a1a&tCode=DBTN -d 'username=john&firstName=John&lastName=Doe&email=johndoe@domain.com' |
...