Add Users To Group
General Information
Service | API | Method |
|---|---|---|
urac | /admin/group/addUsers | POST |
Data Model: Groups
Workflow: Add Users To Group Flow
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
Valid Response Sample
{
"result": true,
"data": true
}
Invalid Response
Error Response Sample
{
"result":false,
"errors":{
"codes":[400],
"details":[
{
"code":400,
"message":"Database connection error"
}
]
}
}
Error Codes
Code | Description |
|---|---|
400 | Database connection error |
Example (CURL)
Request
Calling Add Users API
> CURL -X POST http://127.0.0.1:4000/urac/admin/group/addUsers -d 'groupCode=bronze&users[]=user1&users[]=user2' Response
Add Users API response
{
"result": true,
"data": true
}