Asynchronous Operations

The /operations resource collection allows to retrieve information on asynchronous operations by ID.

Asynchronous Operations

The HTTP GET request to the /operations/{operationId} endpoint retrieves information on a specific operation performed in Veeam Backup for Microsoft Azure.

SecurityBearer
Request
path Parameters
operationId
required
string <uuid>

Specifies the system ID assigned to a session of the operation in the Veeam Backup for Microsoft Azure REST API.

Responses
200

OK

400

Bad Request. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The Authorization header does not contain an access token, or the provided access token is invalid.

403

Forbidden. The user sending a request does not have adequate privileges to access one or more objects specified in the request.

404

Not Found. One or more resources specified in the request could not be found in the specified resource collection.

get/api/v8/operations/{operationId}
Request samples
curl -i -X GET \
  'https://123.123.123.123/api/v8/operations/{operationId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "startTime": "2019-08-24T14:15:22Z",
  • "status": "Canceled",
  • "error": {
    },
  • "_links": {},
  • "result": { }
}