
This is an archive version of the document. To get the most up-to-date information, see the
current version.
(GET) /backupFiles/{ID}/vmRestorePoints
Returns a collection of restore points for separate VMs in a backup file with the specified ID. The backup file was created on or imported to the Veeam backup server connected to Veeam Backup Enterprise Manager.
To get a collection of restore points for separate VMs in a backup file, you need to send the GET HTTP request to the URL of the /backupFiles/{ID}/vmRestorePoints resource.
GET https://<Enterprise-Manager>:9398/api/backupFiles/{ID}/vmRestorePoints |
The request contains the following headers:
Header | Required | Description |
---|
X-RestSvcSessionId | True | The request requires authorization. In the header, the client must send a session ID copied from the server reply to the request creating a new logon session. To learn more, see Authentication and Security. |
Accept | False | Identifies the format of the response. Possible values: - application/xml — the client can send this value in the header to accept response in the XML format.
- application/json — the client must send this value in the header to accept the request in the JSON format.
If the request does not contain the header, the server will return the response in the XML format. |
None.
None.
The server returns the following response to the client.
A successfully completed operation returns response code 200 OK.
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header | Description |
---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message. Possible values: - application/xml
- application/json
|
In the response body, Veeam Backup Enterprise Manager returns a representation of the /backupFiles/{ID}/vmRestorePoints resource.
The example below returns a collection of restore points for separate VMs in a backup file with ID 98c2ba69-16b8-4162-80a4-c6ba1a2ff02c.
Request: GET https://localhost:9398/api/backupFiles/98c2ba69-16b8-4162-80a4-c6ba1a2ff02c/vmRestorePoints Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj Response: 200 OK Response Body: <EntityReferences xmlns="http://www.veeam.com/ent/v1.0"> <Ref Type="VmRestorePointReference" Href="https://localhost:9398/api/vmRestorePoints/657351ca-e263-4127-8748-99ba1bd76ee4" Name="apache03@2016-09-21 15:04:45" UID="urn:veeam:VmRestorePoint:657351ca-e263-4127-8748-99ba1bd76ee4"> <Links> <Link Rel="Up" Type="BackupServerReference" Href="https://localhost:9398/api/backupServers/99f01406-ecdc-428f-ae09-a13de244140a" Name="172.17.53.1" /> <Link Rel="Up" Type="RestorePointReference" Href="https://localhost:9398/api/restorePoints/cf5bf1e1-f551-4e67-95d1-fee4370aa733" Name="Sep 21 2016 3:03PM" /> <Link Rel="Up" Type="BackupFileReference" Href="https://localhost:9398/api/backupFiles/98c2ba69-16b8-4162-80a4-c6ba1a2ff02c" Name="Webserver BackupD2016-09-21T180331.vib" /> <Link Rel="Alternate" Type="VmRestorePoint" Href="https://localhost:9398/api/vmRestorePoints/657351ca-e263-4127-8748-99ba1bd76ee4?format=Entity" Name="apache03@2016-09-21 15:04:45" /> </Links> </Ref> <Ref Type="VmRestorePointReference" Href="https://localhost:9398/api/vmRestorePoints/8189ee7a-6cb2-43f8-b238-e2e417993727" Name="websrv02@2016-09-21 15:04:45" UID="urn:veeam:VmRestorePoint:8189ee7a-6cb2-43f8-b238-e2e417993727"> <Links> <Link Rel="Up" Type="BackupServerReference" Href="https://localhost:9398/api/backupServers/99f01406-ecdc-428f-ae09-a13de244140a" Name="172.17.53.1" /> <Link Rel="Up" Type="RestorePointReference" Href="https://localhost:9398/api/restorePoints/cf5bf1e1-f551-4e67-95d1-fee4370aa733" Name="Sep 21 2016 3:03PM" /> <Link Rel="Up" Type="BackupFileReference" Href="https://localhost:9398/api/backupFiles/98c2ba69-16b8-4162-80a4-c6ba1a2ff02c" Name="Webserver BackupD2016-09-21T180331.vib" /> <Link Rel="Alternate" Type="VmRestorePoint" Href="https://localhost:9398/api/vmRestorePoints/8189ee7a-6cb2-43f8-b238-e2e417993727?format=Entity" Name="websrv02@2016-09-21 15:04:45" /> </Links> </Ref> </EntityReferences> |