Retrieve a local user, Active Directory user or group belonging to a local group and SVM
GET /protocols/cifs/local-groups/{svm.uuid}/{local_cifs_group.sid}/members/{name}
Introduced In: 9.10
Retrieves local user, Active Directory user and Active Directory group which is member of the specified local group and SVM.
Related ONTAP commands
- 
vserver cifs users-and-groups local-group show-members 
Parameters
| Name | Type | In | Required | Description | 
|---|---|---|---|---|
local_cifs_group.sid  | 
string  | 
path  | 
True  | 
Local group SID  | 
name  | 
string  | 
path  | 
True  | 
Member name  | 
svm.uuid  | 
string  | 
path  | 
True  | 
UUID of the SVM to which this object belongs.  | 
fields  | 
array[string]  | 
query  | 
False  | 
Specify the fields to return.  | 
Response
Status: 200, Ok
| Name | Type | Description | 
|---|---|---|
name  | 
string  | 
Local user, Active Directory user, or Active Directory group which is a member of the specified local group.  | 
Example response
{
  "name": "string"
}
Error
Status: Default, Error
| 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.  | 
error_arguments
| Name | Type | Description | 
|---|---|---|
code  | 
string  | 
Argument code  | 
message  | 
string  | 
Message argument  | 
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.  |