General Information
...
Service | API | Method |
---|---|---|
urac | /admin/group/addUsers | POST |
Data Model: Groups
Workflow: %Link to Architecture Page%
...
Input
...
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
---|
code | Body | YES | String | N/A | defined in the form as groupCode |
users | Body |
NO | Array | N/A | array of usernames |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": true } |
...
Invalid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result":false, "errors":{ "codes":[600400], "details":[ { "code":600400, "message":"ProblemDatabase with the provided passwordconnection error" } ] } } |
Error Codes
Code | Description |
---|
400 | Database connection error |
Example (CURL)
...
Request
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X POST http://127.0.0.1:4000/urac/admin/group/addUsers -d 'groupCode=bronze&users[]=user1&users[]=user2' |
...