Zerto APIs : File Level Recovery : View Existing Sessions
  
View Existing Sessions
Retrieve a list of mounted virtual machines. There are several options to retrieve mounted virtual machines:
Retrieve All Mounted Virtual Machines.
Retrieve a Single Virtual Machines.
Retrieve All Mounted Virtual Machines
 
method
url
GET
https://zvm_ip:port/v1/flrs
 
Where:
 
zvm_ip
The IP address of the Zerto Virtual Manager where the API is run.
port
The port to access the Zerto Virtual Manager. The default port is 9669.
 
 
Retrieve a Single Virtual Machines
 
method
url
GET
https://zvm_ip:port/v1/flrs/{flrSessionIdetifier}
Where:
 
zvm_ip
The IP address of the Zerto Virtual Manager where the API is run.
port
The port to access the Zerto Virtual Manager. The default port is 9669.
flrSessionIdentifier
The identifier of the File Level Recovery session.
 
Request Body Using Json Format
The request body is empty.
Response In Json Format
The following is an example of a Json response for:
All mounted virtual machines: https://zvm_ip:port/v1/flrs
A single virtual machines: https://zvm_ip:port/v1/flrs/{flrSessionIdetifier}
 
[
  {
    "CheckpointIdentifier": "6",
    "FlrSessionIdentifier": "2c120bd-9210-4fbb-9b9a-b2c08e24699e.6b30d6-c090-4233-84e18bf39a4c",
    "FlrSessionStatus": "MountCompletedSuccessfully",
    "FlrSessionType": "jflr",
    "MountTime": "2018-03-04T12:24:41.551Z",
    "VmIdentifier": "0a1d772d-0f69-4a0e-8063-f809aa9dc237.vm-70",
    "VmVolumeIdentifier": null,
    "VpgIdentifier": "b797d92a-a65a-4e00-9410-1a3aff93480b"
  }
]
 
Parameter
Description
CheckpointIdentifier
The identifier of the checkpoint of the VPG.
FlrSessionIdentifier
The File Level Recovery session identifier.
FlrSessionStatus
The status of the request to mount.
Possible values are:
MountCompletedSuccessfully: Mounting the virtual machinecompleted successfully.
MountFailed: Mounting the virtual machine failed.
MountInProgress: Mounting a new virtual machine is in progress.
UnmountCompletedSuccessfully: Unmounting the virtual machine completed successfully.
UnmountFailed: Unmount the virtual machinefailed.
UnmountInProgress: Unmounting the virtual machine is in progress.
FlrSessionType
The File Level Recovery session type: jflr.
MountTime
The date and time when the mount was created, in the format yyyy-mm-ddThh:mm:ss.fffZ, set to UTC.
VmIdentifier
The internal identifier of the VM.
VmVolumeIdentifier
Null
VpgIdentifier
The internal identifier of the VPG.
Back to File Level Recovery
Back to All APIs