POST Method
The HTTP POST method is used in two different ways:
- To create a new resource, for example, to create a job.
- To perform an operation, for example, to restore a VM.
For example, to create a job, send the following request:
POST https://127.0.0.1/api/v7/jobs |
In case of success, the HTTP POST method returns the 200 response code.
For example, to restore a VM, send the following request:
POST https://127.0.0.1/api/v7/restorePoints/restore |
In case of success, the HTTP POST method returns the 202 response code.