Retrieve the SMB session information for an SMB connection in an SVM node
GET /protocols/cifs/sessions/{node.uuid}/{svm.uuid}/{identifier}/{connection_id}
Introduced In: 9.8
Retrieves specific SMB session information for a specific SMB connection in a node on an SVM.
Learn more
Parameters
| Name | Type | In | Required | Description | 
|---|---|---|---|---|
node.uuid  | 
string  | 
path  | 
True  | 
Node UUID.  | 
identifier  | 
integer  | 
path  | 
True  | 
Unique identifier for the SMB session.  | 
connection_id  | 
integer  | 
path  | 
True  | 
Unique identifier for the SMB connection.  | 
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 | 
|---|---|---|
_links  | 
||
authentication  | 
string  | 
SMB authentication over which the client accesses the share. The following values are supported: 
  | 
client_ip  | 
string  | 
Specifies IP address of the client.  | 
connected_duration  | 
string  | 
Specifies an ISO-8601 format of date and time used to retrieve the connected time duration in hours, minutes, and seconds format.  | 
connection_count  | 
integer  | 
A counter used to track requests that are sent to the volumes to the node.  | 
connection_id  | 
integer  | 
A unique 32-bit unsigned number used to represent each SMB session's connection ID.  | 
continuous_availability  | 
string  | 
The level of continuous availabilty protection provided to the SMB sessions and/or files. 
  | 
identifier  | 
integer  | 
A unique 64-bit unsigned number used to represent each SMB session's identifier.  | 
idle_duration  | 
string  | 
Specifies an ISO-8601 format of date and time used to retrieve the idle time duration in hours, minutes, and seconds format.  | 
large_mtu  | 
boolean  | 
Specifies whether the large MTU is enabled or not for an SMB session.  | 
mapped_unix_user  | 
string  | 
Indicated that a mapped UNIX user has logged in.  | 
node  | 
||
open_files  | 
integer  | 
Number of files the SMB session has opened.  | 
open_other  | 
integer  | 
Number of other files the SMB session has opened.  | 
open_shares  | 
integer  | 
Number of shares the SMB session has opened.  | 
protocol  | 
string  | 
The SMB protocol version over which the client accesses the volumes. The following values are supported: 
  | 
server_ip  | 
string  | 
Specifies the IP address of the SVM.  | 
smb_encryption  | 
string  | 
Indicates an SMB encryption state. The following values are supported: 
  | 
smb_signing  | 
boolean  | 
Specifies whether or not SMB signing is enabled.  | 
svm  | 
||
user  | 
string  | 
Indicates that a Windows user has logged in.  | 
volumes  | 
array[volumes]  | 
A group of volumes, the client is accessing.  | 
Example response
{
  "_links": {
    "self": {
      "href": "/api/resourcelink"
    }
  },
  "authentication": "ntlmv2",
  "client_ip": "10.74.7.182",
  "connected_duration": "P4DT84H30M5S",
  "connection_count": 0,
  "connection_id": 22802,
  "continuous_availability": "unavailable",
  "identifier": 4622663542519103507,
  "idle_duration": "P4DT84H30M5S",
  "large_mtu": 1,
  "mapped_unix_user": "root",
  "node": {
    "_links": {
      "self": {
        "href": "/api/resourcelink"
      }
    },
    "name": "node1",
    "uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
  },
  "open_files": 0,
  "open_other": 0,
  "open_shares": 0,
  "protocol": "smb3_1",
  "server_ip": "10.140.78.248",
  "smb_encryption": "unencrypted",
  "smb_signing": "",
  "svm": {
    "_links": {
      "self": {
        "href": "/api/resourcelink"
      }
    },
    "name": "svm1",
    "uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
  },
  "user": "NBCIFSQA2\\administrator",
  "volumes": [
    {
      "_links": {
        "self": {
          "href": "/api/resourcelink"
        }
      },
      "name": "volume1",
      "uuid": "028baa66-41bd-11e9-81d5-00a0986138f7"
    }
  ]
}
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
href
| Name | Type | Description | 
|---|---|---|
href  | 
string  | 
_links
| Name | Type | Description | 
|---|---|---|
self  | 
node
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
|
uuid  | 
string  | 
svm
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
The name of the SVM.  | 
uuid  | 
string  | 
The unique identifier of the SVM.  | 
volumes
| Name | Type | Description | 
|---|---|---|
_links  | 
||
name  | 
string  | 
The name of the volume.  | 
uuid  | 
string  | 
Unique identifier for the volume. This corresponds to the instance-uuid that is exposed in the CLI and ONTAPI. It does not change due to a volume move. 
  | 
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.  |