Zerto APIs : File Level Recovery : View Existing Sessions
  
View Existing Sessions
Retrieve a list of mounted disks. There are several options to retrieve mounted disks:
Retrieve All Mounted Disks.
Retrieve All Mounted Disks of a VM
Retrieve a Single Mounted Disk.
Retrieve All Mounted Disks
 
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 All Mounted Disks of a VM
 
method
url
GET
https://zvm_ip:port/v1/flrs?vmIdentifier={vmIdentifier}
 
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.
vmIdentifier
The identifier of the VM. If the VM identifier is excluded, all open File Level Recovery sessions are displayed.
 
Retrieve a Single Mounted Disk
 
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 disks: https://zvm_ip:port/v1/flrs
All disks of a VM: https://zvm_ip:port/v1/flrs?vmIdentifier={vmIdentifier}
A single disk (without the array statement): 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",
    "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 disk completed successfully.
MountFailed: Mounting the disk failed.
MountInProgress: Mounting a new disk is in progress.
UnmountCompletedSuccessfully: Unmounting the disk completed successfully.
UnmountFailed: Unmount the disk failed.
UnmountInProgress: Unmounting the disk 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.
VpgIdentifier
The internal identifier of the VPG.
Back to File Level Recovery
Back to All APIs