GET /api/usergroups 200 { "total": 1, "subtotal": 1, "page": 1, "per_page": 20, "search": null, "sort": { "by": null, "order": null }, "results": [ { "admin": false, "created_at": "2021-05-18 16:04:00 UTC", "updated_at": "2021-05-18 16:04:00 UTC", "name": "usergroup247", "id": 13 } ] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
search optional |
filter results Validations:
|
order optional |
Sort field and order, eg. ‘id DESC’ Validations:
|
page optional |
Page number, starting at 1 Validations:
|
per_page optional |
Number of results per page to return, ‘all’ to return all results Validations:
|
Field name | Type | Possible values |
---|---|---|
name | string | |
role | string | |
role_id | integer |
GET /api/usergroups/20-usergroup253 200 { "admin": false, "created_at": "2021-05-18 16:04:01 UTC", "updated_at": "2021-05-18 16:04:01 UTC", "name": "usergroup253", "id": 20, "external_usergroups": [], "usergroups": [], "users": [], "roles": [] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
id required |
Validations:
|
POST /api/usergroups { "usergroup": { "name": "test_usergroup", "user_ids": [ 980190962, 298486374, 200482051 ] } } 201 { "admin": false, "created_at": "2021-05-18 16:04:01 UTC", "updated_at": "2021-05-18 16:04:01 UTC", "name": "test_usergroup", "id": 18, "external_usergroups": [], "usergroups": [], "users": [ { "id": 980190962, "login": "one", "description": null }, { "id": 298486374, "login": "two", "description": null }, { "id": 200482051, "login": "test", "description": null } ], "roles": [] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
usergroup required |
Validations:
|
usergroup[name] required |
Validations:
|
usergroup[admin] optional , nil allowed |
is an admin user group, can be modified by admins only Validations:
|
usergroup[user_ids] optional , nil allowed |
Validations:
|
usergroup[usergroup_ids] optional , nil allowed |
Validations:
|
usergroup[role_ids] optional , nil allowed |
Validations:
|
User groups linked to external groups (LDAP) are automatically synced with these groups on update. Remember this synchronization will remove any LDAP users manually added to the Foreman user group. Only LDAP users in the external groups will remain. Internal users can be added or removed freely.
PUT /api/usergroups/12 { "usergroup": { "name": "usergroup246x" } } 200 { "admin": false, "created_at": "2021-05-18 16:03:59 UTC", "updated_at": "2021-05-18 16:03:59 UTC", "name": "usergroup246x", "id": 12, "external_usergroups": [], "usergroups": [], "users": [], "roles": [] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
id required |
Validations:
|
usergroup required |
Validations:
|
usergroup[name] optional |
Validations:
|
usergroup[admin] optional , nil allowed |
is an admin user group, can be modified by admins only Validations:
|
usergroup[user_ids] optional , nil allowed |
Validations:
|
usergroup[usergroup_ids] optional , nil allowed |
Validations:
|
usergroup[role_ids] optional , nil allowed |
Validations:
|
DELETE /api/usergroups/14-usergroup248 { "usergroup": {} } 200 { "id": 14, "name": "usergroup248", "created_at": "2021-05-18T16:04:00.587Z", "updated_at": "2021-05-18T16:04:00.587Z", "admin": false }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
id required |
Validations:
|