- About Veeam Backup & Replication REST API
- Overview
- How To
- Changelog
- Login
- Service
- Services
- Credentials
- getGet All Credentials
- postAdd Credentials Record
- getGet Credentials Record
- putEdit Credentials Record
- delRemove Credentials Record
- postChange Password
- postChange Linux Private Key
- postChange Linux Root Password
- getGet All Cloud Credentials
- postAdd Cloud Credentials Record
- postGet Microsoft Azure Verification Code
- postRegister Azure AD Application
- postGet Google Authentication Information
- getGet Cloud Credentials Record
- putEdit Cloud Credentials Record
- delRemove Cloud Credentials Record
- postChange Secret Key
- postChange Google Service Account
- postChange Certificate
- getGet All Helper Appliances
- postAdd or Edit Helper Appliance
- getGet Helper Appliance
- delRemove Helper Appliance
- Encryption
- Connection
- Cloud Browser
- Inventory Browser
- Traffic Rules
- General Options
- Malware Detection
- Configuration Backup
- Managed Servers
- Repositories
- getGet All Repositories
- postAdd Repository
- getGet All Repository States
- getGet Repository
- putEdit Repository
- delRemove Repository
- getGet All Scale-Out Backup Repositories
- postAdd Scale-Out Backup Repository
- getGet Scale-Out Backup Repository
- putEdit Scale-Out Backup Repository
- delRemove Scale-Out Backup Repository
- postEnable Sealed Mode
- postDisable Sealed Mode
- postEnable Maintenance Mode
- postDisable Maintenance Mode
- Proxies
- WAN Accelerators
- Jobs
- Backups
- Backup Objects
- Restore Points
- Restore
- getGet All VM Mounts
- postStart Instant Recovery
- getGet VM Mount
- postStop VM Publishing
- postStart VM Migration
- postRestore Entire VMware vSphere VM
- postRestore Entire VMware Cloud Director VM
- getGet All FCD Mounts
- postStart Instant FCD Recovery
- getGet FCD Mount
- postStop FCD Publishing
- postStart FCD Migration
- postStart File Restore
- postUnmount File System
- Backup Browsers
- getGet All File Restore Mounts
- getGet File Restore Mount
- postBrowse File System
- postCompare Attributes
- postCompare Files and Folders
- postSearch for Files and Folders
- postBrowse Search Results
- postRestore Files and Folders to Original Location
- postRestore Files and Folders to Another Location
- postPrepare Files and Folders for Download
- postDownload Files and Folders
- Tasks
- Replicas
- Replica Restore Points
- Failover
- Failback
- Sessions
- Agents
- Automation
- postImport Jobs
- postExport Jobs
- postImport Credentials
- postExport Credentials
- postImport Cloud Credentials
- postExport Cloud Credentials
- postImport Proxies
- postExport Proxies
- postImport Servers
- postExport Servers
- postImport Repositories
- postExport Repositories
- postImport Encryption Passwords
- postExport Encryption Passwords
- getGet All Automation Sessions
- getGet Automation Session
- getGet Automation Session Logs
- postStop Automation Session
The Credentials section defines paths and operations for managing credentials records that are added to the backup server.
Get All Credentials
The HTTP GET request to the /api/v1/credentials
path allows you to get an array of credentials records that are added to the backup server.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
query Parameters
skip | integer <int32> Number of credentials records to skip. |
limit | integer <int32> Maximum number of credentials records to return. |
orderColumn | string (ECredentialsFiltersOrderColumn) Sorts credentials by one of the credentials parameters. |
orderAsc | boolean Sorts credentials in the ascending order by the |
nameFilter | string Filters credentials by the |
typeFilter | string (ECredentialsType) Filters credentials by type. |
createdAfterFilter | string <date-time> Returns credentials that are created after the specified date and time. |
createdBeforeFilter | string <date-time> Returns credentials that are created before the specified date and time. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 401
- 403
- 500
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "username": "string",
- "description": "string",
- "type": "Standard",
- "creationTime": "2019-08-24T14:15:22Z",
- "uniqueId": "string"
}
], - "pagination": {
- "total": 0,
- "count": 0,
- "skip": 0,
- "limit": 0
}
}
Add Credentials Record
The HTTP POST request to the /api/v1/credentials
path allows you to add a credentials record.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
username required | string User name. |
type required | string (ECredentialsType) Credentials type. |
password | string Password. |
description | string Description of the credentials record. |
uniqueId | string Unique ID that identifies the credentials record. |
Account has been added.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "username": "string",
- "password": "string",
- "description": "string",
- "type": "Standard",
- "uniqueId": "string"
}
- 201
- 400
- 401
- 403
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "username": "string",
- "description": "string",
- "type": "Standard",
- "creationTime": "2019-08-24T14:15:22Z",
- "uniqueId": "string"
}
Get Credentials Record
The HTTP GET request to the /api/v1/credentials/{id}
path allows you to get a credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "username": "string",
- "description": "string",
- "type": "Standard",
- "creationTime": "2019-08-24T14:15:22Z",
- "uniqueId": "string"
}
Edit Credentials Record
The HTTP PUT request to the /api/v1/credentials/{id}
path allows you to edit a credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
id required | string <uuid> ID of the credentials record. |
username required | string User name. |
description required | string Description of the credentials record. |
type required | string (ECredentialsType) Credentials type. |
creationTime required | string <date-time> Date and time when the credentials were created. |
uniqueId | string Unique ID that identifies the credentials record. |
Credentials record has been updated.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "username": "string",
- "description": "string",
- "type": "Standard",
- "creationTime": "2019-08-24T14:15:22Z",
- "uniqueId": "string"
}
- 200
- 400
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "username": "string",
- "description": "string",
- "type": "Standard",
- "creationTime": "2019-08-24T14:15:22Z",
- "uniqueId": "string"
}
Remove Credentials Record
The HTTP DELETE request to the /api/v1/credentials/{id}
path allows you to remove a credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Credentials record has been removed.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 204
- 401
- 403
- 404
- 500
{ }
Change Password
The HTTP POST request to the /api/v1/credentials/{id}/changepassword
path allows you to change a password of the credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
password required | string New password. |
Password has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "password": "string"
}
- 200
- 400
- 401
- 403
- 404
- 500
{ }
Change Linux Private Key
The HTTP POST request to the /api/v1/credentials/{id}/changeprivatekey
path allows you to change a Linux private key of the credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
privateKey required | string New private key. |
passphrase | string Passphrase that protects the private key. |
Private key has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "privateKey": "string",
- "passphrase": "string"
}
- 200
- 400
- 401
- 403
- 404
- 500
{ }
Change Linux Root Password
The HTTP POST request to the /api/v1/credentials/{id}/changerootpassword
path allows you to change a Linux root password of the credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
password required | string New password. |
Root password has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "password": "string"
}
- 200
- 400
- 401
- 403
- 404
- 500
{ }
Get All Cloud Credentials
The HTTP GET request to the /api/v1/cloudCredentials
path allows you to get an array of credentials records used to connect to cloud services.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
query Parameters
skip | integer <int32> Number of cloud credentials records to skip. |
limit | integer <int32> Maximum number of cloud credentials records to return. |
orderColumn | string (ECloudCredentialsFiltersOrderColumn) Sorts cloud credentials by one of the cloud credentials parameters. |
orderAsc | boolean Sorts cloud credentials in the ascending order by the |
nameFilter | string Filters cloud credentials by the |
typeFilter | string (ECloudCredentialsType) Cloud credentials type. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 401
- 403
- 500
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string"
}
], - "pagination": {
- "total": 0,
- "count": 0,
- "skip": 0,
- "limit": 0
}
}
Add Cloud Credentials Record
The HTTP POST request to the /api/v1/cloudCredentials
path allows you to add a credentials record used to connect to cloud services.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
type required | string (ECloudCredentialsType) Cloud credentials type. |
account required | string Name of the Azure storage account. |
sharedKey required | string Shared key of the Azure storage account. |
description | string Description of the cloud credentials record. |
uniqueId | string Unique ID that identifies the cloud credentials record. |
Cloud credentials record has been created.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "description": "Azure storage account",
- "type": "AzureStorage",
- "accessKey": "string",
- "secretKey": "string",
- "uniqueId": "createdbysheiladcory",
- "account": "williamfox",
- "sharedKey": "0sF53pZ/c8cVk+sEMby1lGZzA4SJezapyrFysdjlfLlUwMESTW6dEnkC3x62USr4cwHgPxarsBCE+ASt1Zjmwg=="
}
- 201
- 400
- 401
- 403
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
Get Microsoft Azure Verification Code
The HTTP POST request to the /api/v1/cloudCredentials/appRegistration
path allows you to get a single-use verification code required to register a new Azure Active Directory application.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
type required | string (ECloudCredentialsType) Cloud credentials type. |
region required | string (EAzureRegionType) Region where your Microsoft Azure container is located. |
Verification code has been received.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "type": "AzureCompute",
- "region": "China"
}
- 201
- 400
- 401
- 403
- 500
{- "type": "AzureCompute",
- "url": "string",
- "verificationCode": "string",
- "expirationTime": "2019-08-24T14:15:22Z"
}
Register Azure AD Application
The HTTP POST request to the /api/v1/cloudCredentials/appRegistration/{verificationCode}
path allows you to register a new Azure Active Directory application using the specified verificationCode
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
verificationCode required | string Verification code. To obtain the code, use the Get Verification Code request. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Azure Active Directory application has been registered.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 201
- 400
- 401
- 403
- 500
{- "type": "AzureCompute",
- "applicationId": "string",
- "secret": "string",
- "tenantId": "string"
}
Get Google Authentication Information
The HTTP POST request to the /api/v1/cloudCredentials/authentication
path allows you to get authentication information required to sign in to Google Cloud.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Authentication information has been received.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 201
- 400
- 401
- 403
- 500
{- "url": "string",
- "verificationCode": "string",
- "expirationTime": "2019-08-24T14:15:22Z"
}
Get Cloud Credentials Record
The HTTP GET request to the /api/v1/cloudCredentials/{id}
path allows you to get a cloud credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the cloud credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
Edit Cloud Credentials Record
The HTTP PUT request to the /api/v1/cloudCredentials/{id}
path allows you to edit a cloud credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the cloud credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
id required | string <uuid> ID of the cloud credentials record. |
type required | string (ECloudCredentialsType) Cloud credentials type. |
account required | string Name of the Azure storage account. |
description | string Description of the cloud credentials record. |
uniqueId | string Unique ID that identifies the cloud credentials record. |
Cloud credentials record has been updated.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
- 200
- 400
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
Remove Cloud Credentials Record
The HTTP DELETE request to the /api/v1/cloudCredentials/{id}
path allows you to remove a cloud credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the cloud credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Cloud credentials record has been removed.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 204
- 401
- 403
- 404
- 500
{ }
Change Secret Key
The HTTP POST request to the /api/v1/cloudCredentials/{id}/changeSecretKey
path allows you to change a secret key of a cloud credentials record that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the cloud credentials record. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
newSecretKey required | string New secret key. |
Secret key has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "newSecretKey": "string"
}
- 201
- 400
- 401
- 403
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
Change Google Service Account
The HTTP POST request to the /api/v1/cloudCredentials/changeAccount
path allows you to set a new Google Cloud service account associated with the same credentials id.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Google service account. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
keyFile required | string Base64-encoded string of the content of a JSON key file containing a service account key. |
Service account has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "keyFile": "string"
}
- 201
- 400
- 401
- 403
- 500
{ }
Change Certificate
The HTTP POST request to the /api/v1/cloudCredentials/{id}/changeCertificate
path allows you to change a certificate used for authentication in your Azure Active Directory application associated with an Azure compute account that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Azure compute account. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
certificate required | string Base64-encoded string of the content of a PFX certificate file. |
formatType required | string (ECertificateFileFormatType) Certificate file format. |
password | string Decryption password for the certificate file. |
Certificate has been changed.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "certificate": "string",
- "formatType": "pfx",
- "password": "string"
}
- 204
- 400
- 401
- 403
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "description": "string",
- "type": "AzureStorage",
- "accessKey": "string",
- "uniqueId": "string",
- "account": "string"
}
Get All Helper Appliances
The HTTP GET request to the /api/v1/cloudCredentials/{id}/helperAppliances
path allows you to get an array of Linux-based helper appliances of a Microsoft Azure compute account that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Microsoft Azure compute account. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 400
- 401
- 403
- 500
{- "data": [
- {
- "type": "AzureStorage",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
- "vmName": "string",
- "location": "string",
- "storageAccount": "string",
- "resourceGroup": "string",
- "virtualNetwork": "string",
- "subnet": "string",
- "SSHPort": 0
}
], - "pagination": {
- "total": 0,
- "count": 0,
- "skip": 0,
- "limit": 0
}
}
Add or Edit Helper Appliance
The HTTP POST request to the /api/v1/cloudCredentials/{id}/helperAppliances
path allows you to create a new Linux-based helper appliance or edit settings of an existing one for a Microsoft Azure compute account that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Microsoft Azure compute account. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
type required | string (ECloudCredentialsType) Cloud credentials type. |
subscriptionId required | string <uuid> ID that Veeam Backup & Replication assigned to the Azure subscription. |
location | string Storage account location where you want to configure the helper appliance. |
storageAccount | string Name of the Azure storage account whose resources are used to store the helper appliance. |
resourceGroup | string Resource group associated with the helper appliance. |
virtualNetwork | string Network to which the helper appliance is connected. |
subnet | string Subnet for the helper appliance. |
SSHPort | integer Port over which Veeam Backup & Replication communicates with the helper appliance. |
An AzureApplianceDeploy
session has been created. To check the progress, track the session state
.
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "type": "AzureCompute",
- "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
- "location": "string",
- "storageAccount": "string",
- "resourceGroup": "string",
- "virtualNetwork": "string",
- "subnet": "string",
- "SSHPort": 0
}
- 201
- 400
- 401
- 403
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39",
- "sessionType": "Infrastructure",
- "creationTime": "2019-08-24T14:15:22Z",
- "endTime": "2019-08-24T14:15:22Z",
- "state": "Stopped",
- "progressPercent": 0,
- "result": {
- "result": "None",
- "message": "string",
- "isCanceled": true
}, - "resourceId": "026d60bb-63a8-407e-bf67-01dcfc6022e6",
- "resourceReference": "string",
- "parentSessionId": "b1d7834e-fe2f-4cad-b0e5-ff5c5615f344",
- "usn": 0
}
Get Helper Appliance
The HTTP GET request to the /api/v1/cloudCredentials/{id}/helperAppliances/{applianceId}
path allows you to get a Linux-based helper appliance with the applianceId
of a Microsoft Azure compute account that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Microsoft Azure compute account. |
applianceId required | string <uuid> ID of the helper appliance. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
OK
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 200
- 400
- 401
- 403
- 500
{- "type": "AzureCompute",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
- "vmName": "string",
- "location": "string",
- "storageAccount": "string",
- "resourceGroup": "string",
- "virtualNetwork": "string",
- "subnet": "string",
- "SSHPort": 0
}
Remove Helper Appliance
The HTTP DELETE request to the /api/v1/cloudCredentials/{id}/helperAppliances/{applianceId}
path allows you to remove a Linux-based helper appliance with the applianceId
of a Microsoft Azure compute account that has the specified id
.
Available to: Veeam Backup Administrator, Veeam Security Administrator.
path Parameters
id required | string <uuid> ID of the Microsoft Azure compute account. |
applianceId required | string <uuid> ID of the helper appliance. |
header Parameters
x-api-version required | string Default: 1.1-rev2 Version and revision of the client REST API. Must be in the following format: |
An AzureApplianceDeploy
session has been created to remove the helper appliance. To check the progress, track the session state
.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Not found. No object was found with the path parameter specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- curl
- Python
- JavaScript
- C#
- Go
- 201
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39",
- "sessionType": "Infrastructure",
- "creationTime": "2019-08-24T14:15:22Z",
- "endTime": "2019-08-24T14:15:22Z",
- "state": "Stopped",
- "progressPercent": 0,
- "result": {
- "result": "None",
- "message": "string",
- "isCanceled": true
}, - "resourceId": "026d60bb-63a8-407e-bf67-01dcfc6022e6",
- "resourceReference": "string",
- "parentSessionId": "b1d7834e-fe2f-4cad-b0e5-ff5c5615f344",
- "usn": 0
}