- 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 Cloud Browser section defines paths and operations for retrieving information about cloud resources (compute or storage). Cloud browser helps you map a cloud folder with an object storage repository.
Get Cloud Hierarchy
The HTTP POST request to the /api/v1/cloudBrowser
path allows you to browse cloud resources (compute or storage) available for the specified storage account.
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/json
credentialsId required | string <uuid> ID of the object storage account (for browsing either storage or compute infrastructure). |
serviceType required | string (ECloudServiceType) Type of cloud service. |
regionType | string (EAzureRegionType) Region where your Microsoft Azure container is located. |
folderType | string (ECloudBrowserFolderType) Folder type. |
gatewayServerId | string <uuid> ID of a gateway server you want to use to connect to the object storage. Specify this parameter to check internet connection of the server. As a gateway server you can use the backup server or any Microsoft Windows or Linux server added to your backup infrastructure. By default, the backup server ID is used. |
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.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "credentialsId": "08e8bcd2-3d30-4d03-8e1a-ab6ac0cbf1ed",
- "serviceType": "AzureBlob",
- "regionType": "China",
- "folderType": "backup",
- "gatewayServerId": "39c247aa-48c5-4705-90e0-b578a615649d"
}
- 200
- 400
- 401
- 403
- 500
{- "credentialsId": "08e8bcd2-3d30-4d03-8e1a-ab6ac0cbf1ed",
- "serviceType": "AzureBlob",
- "hostId": "70e3fb2d-1cb6-4dbc-ab8d-fa7209aca5dd",
- "regionType": "China",
- "containers": [
- {
- "name": "string",
- "folders": [
- "string"
]
}
]
}
New Folder
The HTTP POST request to the /api/v1/cloudBrowser/newFolder
path allows you to create a new folder in the cloud infrastructure.
The REST API does not create new containers, you can create a folder in an existing container only.
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/json
credentialsId required | string <uuid> ID of a cloud credentials record requiered to connect to the object storage. |
serviceType required | string (ECloudServiceType) Type of cloud service. |
newFolderName required | string Name of the new folder. |
regionType required | string (EAzureRegionType) Region where your Microsoft Azure container is located. |
containerName required | string Name of the container where you want to store your backup data. |
hostId | string <uuid> ID of a server you want to use to connect to the object storage. You can use the backup server or any Microsoft Windows or Linux server added to your backup infrastructure. By default, the backup server ID is used. |
folderType | string (ECloudBrowserFolderType) Folder type. |
Cloud folder 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
{- "credentialsId": "08e8bcd2-3d30-4d03-8e1a-ab6ac0cbf1ed",
- "serviceType": "AzureBlob",
- "newFolderName": "string",
- "hostId": "70e3fb2d-1cb6-4dbc-ab8d-fa7209aca5dd",
- "regionType": "China",
- "containerName": "string",
- "folderType": "backup"
}
- 201
- 400
- 401
- 403
- 500
{ }