Add local users and Active Directory users and groups to a local group and SVM
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
POST /protocols/cifs/local-groups/{svm.uuid}/{local_cifs_group.sid}/members
Introduced In: 9.10
Adds local users, Active Directory users and Active Directory groups to the specified local group and SVM.
Important note
-
Specified members are appended to the existing list of members.
Required properties
-
svm.uuid
orsvm.name
- Existing SVM for which members are added to local group. -
local_cifs_group.sid
- Security ID of the local group to which members are added. -
name
orrecords
- Local users, Active Directory users, or Active Directory groups to be added to a particular local group.
Related ONTAP commands
-
vserver cifs users-and-groups local-group add-members
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
local_cifs_group.sid |
string |
path |
True |
Local group SID |
return_records |
boolean |
query |
False |
The default is false. If set to true, the records are returned.
|
svm.uuid |
string |
path |
True |
UUID of the SVM to which this object belongs. |
Request Body
Name | Type | Description |
---|---|---|
name |
string |
Local user, Active Directory user, or Active Directory group which is a member of the specified local group. |
records |
array[records] |
An array of local users, Active Directory users, and Active Directory groups specified to add or delete multiple members to or from a local group in a single API call.
Not allowed when the |
Example request
{
"name": "string",
"records": [
{
"name": "string"
}
]
}
Response
Status: 201, Created
Headers
Name | Description | Type |
---|---|---|
Location |
Useful for tracking the resource location |
string |
Error
Status: Default
ONTAP Error Response Codes
Error Code | Description |
---|---|
655673 |
Failed to resolve the member to be added to the specified group. |
655718 |
Failed to add a member to the specified group. The error code returned details the failure along with the reason for the failure. Take corrective actions as per the specified reason. |
655742 |
Records must not be specified when member name is specified. |
655743 |
SVM UUID and CIFS local group SID are invalid fields for the "records" parameter. |
655744 |
Either name or records must be specified. |
Name | Type | Description |
---|---|---|
error |
Example error
{
"error": {
"arguments": [
{
"code": "string",
"message": "string"
}
],
"code": "4",
"message": "entry doesn't exist",
"target": "uuid"
}
}
Definitions
See Definitions
records
Name | Type | Description |
---|---|---|
name |
string |
Local user, Active Directory user, or Active Directory group which is a member of the specified local group. |
local_cifs_group_members
Name | Type | Description |
---|---|---|
name |
string |
Local user, Active Directory user, or Active Directory group which is a member of the specified local group. |
records |
array[records] |
An array of local users, Active Directory users, and Active Directory groups specified to add or delete multiple members to or from a local group in a single API call.
Not allowed when the |
error_arguments
Name | Type | Description |
---|---|---|
code |
string |
Argument code |
message |
string |
Message argument |
returned_error
Name | Type | Description |
---|---|---|
arguments |
array[error_arguments] |
Message arguments |
code |
string |
Error code |
message |
string |
Error message |
target |
string |
The target parameter that caused the error. |