Resource URLs
Each Veeam Backup for AWS REST API-exposed entity has a resource representing it. To get a resource representation, request its URL.
Veeam Backup for AWS 3.0 REST API requests use the following base URL format:
https://<hostname>:<port>/api/<version> |
where:
- <hostname> is a public IPv4 address or DNS hostname of the EC2 instance where Veeam Backup for AWS is installed.
- <port> is the REST API port number set during Veeam Backup for AWS installation.
The default port number is 11005.
- <version> is an API version.
The current version is v1.
To get a collection of Veeam Backup for AWS REST API resources, request the base URL followed by a resource collection endpoint. For example:
https://135.169.170.192:11005/api/v1/VirtualMachines |
To get a representation of an individual resource, enter a resource identifier after the resource collection endpoint. For example:
https://135.169.170.192:11005/api/v1/VirtualMachines/c36824e9-0c3e-4892-8dff-44fd56968506 |
The resource identifier is represented by the id property of the resource from the collection. For example:
[ { "id": "c36824e9-0c3e-4892-8dff-44fd56968506", "name": "forBackup", ... , { "id": "8cbd230f-0694-4b4d-b831-6308cafd6022", "name": "vb-test-byol", ... } ] |