- 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 Verification Code
- postRegister Azure AD Application
- getGet Cloud Credentials Record
- putEdit Cloud Credentials Record
- delRemove Cloud Credentials Record
- postChange Secret Key
- 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
- 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
- Jobs
- Backups
- Backup Objects
- Object Restore Points
- Restore
- 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 Encryption section defines paths and operations for managing passwords that are used for data encryption.
Get All Encryption Passwords
The HTTP GET request to the /api/v1/encryptionPasswords
path allows you to get an array of all passwords that are used for data encryption.
query Parameters
skip | integer <int32> Number of passwords to skip. |
limit | integer <int32> Maximum number of passwords to return. |
orderColumn | string (EEncryptionPasswordsFiltersOrderColumn) Sorts passwords by one of the password parameters. |
orderAsc | boolean Sorts passwords in the ascending order by the |
header Parameters
x-api-version required | string Default: 1.1-rev0 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": "6ebbe3cc-8147-47b6-b77a-01eeb7965522",
- "hint": "Standard Password",
- "modificationTime": "2021-10-19T12:37:58.27+03:00",
- "tag": "internal"
}, - {
- "id": "3261d360-1db7-4291-b1ed-360ef5b77175",
- "hint": "Created by TECH\\Administrator",
- "modificationTime": "2022-02-11T11:34:28.677+03:00",
- "tag": "external"
}
], - "pagination": {
- "total": 2,
- "count": 2,
- "skip": 0,
- "limit": 200
}
}
Add Encryption Password
The HTTP POST request to the /api/v1/encryptionPasswords
path allows you to add an encryption password.
header Parameters
x-api-version required | string Default: 1.1-rev0 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
hint required | string Hint for the encryption password. Provide a meaningful hint that will help you recall the password. |
password required | string Password for data encryption. If you lose the password, you will not be able to restore it. |
tag | string Tag for the encryption password. |
Password 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
{- "password": "string",
- "hint": "string",
- "tag": "string"
}
- 201
- 400
- 401
- 403
- 500
{- "password": "passsw3wrsdf2d44",
- "hint": "Pet name",
- "tag": "vcenter01"
}
Get Encryption Password
The HTTP GET request to the /api/v1/encryptionPasswords/{id}
path allows you to get an encryption password that has the specified id
.
path Parameters
id required | string <uuid> ID of the encryption password. |
header Parameters
x-api-version required | string Default: 1.1-rev0 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": "6ebbe3cc-8147-47b6-b77a-01eeb7965522",
- "hint": "Standard Password",
- "modificationTime": "2022-10-19T12:37:58.27+03:00",
- "tag": "internal"
}
Edit Encryption Password
The HTTP PUT request to the /api/v1/encryptionPasswords/{id}
path allows you to edit an encryption password that has the specified id
.
path Parameters
id required | string <uuid> ID of the encryption password. |
header Parameters
x-api-version required | string Default: 1.1-rev0 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
hint required | string Hint for the encryption password. |
id required | string <uuid> ID of the encryption password. |
modificationTime | string <date-time> Date and time when the password was last modified. |
tag | string Tag for the encryption password. |
Password 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": "6ebbe3cc-8147-47b6-b77a-01eeb7965522",
- "hint": "Poem",
- "modificationTime": "2022-10-19T12:37:58.27+03:00",
- "tag": "internal"
}
- 200
- 400
- 401
- 403
- 404
- 500
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "hint": "string",
- "modificationTime": "2019-08-24T14:15:22Z",
- "tag": "string"
}
Remove Encryption Password
The HTTP DELETE request to the /api/v1/encryptionPasswords/{id}
path allows you to remove an encryption password that has the specified id
.
path Parameters
id required | string <uuid> ID of the encryption password. |
header Parameters
x-api-version required | string Default: 1.1-rev0 Version and revision of the client REST API. Must be in the following format: |
Password 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
{ }