POST /cdpReplicas/{ID}/vms/{ID}?action=intervals
Returns a collection of available intervals for the specified VM included in the specified CDP replica.
Request
To get a collection of available intervals for the specified VM, send the POST HTTP request to the /cdpReplicas/{ID}/vms/{ID}?action=intervals URL.
HTTP Request
|
POST https://<Enterprise-Manager>:9398/api/cdpReplicas/{ID}/vms/{ID}?action=intervals |
Request Headers
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. For details, see Authentication and Security. |
|
Accept |
False |
Identifies the format of the response. Possible values:
If the request does not contain the header, the server will return the response in the XML format. |
Request Body
The request body must conform to the XML Schema Definition of Veeam Backup Enterprise Manager REST API.
|
Important |
|
If you use the XML media type, make sure that the order of parameters in the request body is correct. For details, see request body examples in this section. |
The request body must contain the following elements:
|
Element |
Type |
Description |
Modifiable |
Min/Max Occurrence |
|---|---|---|---|---|
|
StartDate |
DateTime |
The earliest start date and time for the returning intervals. The parameter accepts only UTC-formatted DateTime values. |
Yes |
1/1 |
|
EndDate |
DateTime |
The latest end date and time for the returning intervals. The parameter accepts only UTC-formatted DateTime values. |
Yes |
1/1 |
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns response code 200 OK.
Response Headers
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:
|
Response Body
In the response body, the REST API returns a representation of the /cdpReplicaIntervals resource.
Example
The example below returns a collection of available intervals for the VM that has ID e809a086-2562-4a0f-a9a8-9c115ff8f0ba and that is included in the CDP replica with ID 7665222c-2e99-4a3f-b892-1827ba8d1eee.
|
Request: POST https://localhost:9398/api/cdpReplicas/7665222c-2e99-4a3f-b892-1827ba8d1eee/vms/e809a086-2562-4a0f-a9a8-9c115ff8f0ba?action=intervals Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj Request Body: <?xml version="1.0" encoding="utf-8"?> Response: 200 OK Response Body: <?xml version="1.0" encoding="utf-8"?> |