Resource URLs
Each Veeam Backup for Microsoft Azure RESTful API-exposed entity has a resource representing it. To get a resource representation, request its URL. All Veeam Backup for Microsoft Azure RESTful API URLs have the following base:
https://<hostname>/api/<version> |
where:
- <hostname> is a DNS name or IP address of the machine where the VBAzure server runs.
- <version> is an API version.
The current version is v1.
To get a collection of Veeam Backup for Microsoft Azure RESTful API resources, request a base URL followed by resource collection path. For example:
https://abc.ukwest.cloudapp.azure.com/api/v1/accounts |
To get a representation of an individual resource, enter a resource identifier after the resource collection path. For example:
https://abc.ukwest.cloudapp.azure.com/api/v1/accounts/543 |
The resource identifier is represented by the id property of the resource from the collection. For example:
[ { "name": "Azure Account", "id": "543", ...
] |