Resource URLs

Each Veeam Backup for Google Cloud REST API-exposed entity has a resource representing it. To get a resource representation, request its URL.

Veeam Backup for Google Cloud 5.0 REST API requests use the following base URL format:

https://<hostname>:<port>/api/<version>

where:

The default port number is 13140.

The current version is v1.

To get a collection of Veeam Backup for Google Cloud REST API resources, request the base URL followed by a resource collection endpoint. For example:

https://123.123.123.123:13140/api/v1/vmInstances

To get a representation of an individual resource, enter a resource identifier after the resource collection endpoint. For example:

https://123.123.123.123:13140/api/v1/vmInstances/7876786467083982093

The resource identifier is represented by the id property of the resource from the collection. For example:

[

   {

     "id": "7876786467083982093",

     "resourceId": "dept-gc475akr1",

     "name": "dept-gc475akr1",

     "locationId": "1587a0d3-f27a-436e-b0cb-fe2d82a85767",

     "locationName": "asia-northeast3-a",

     "projectId": "project-backup-252812",

     "instanceType": "e2-medium"

   },

   ...

 }

]