Resource URLs

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

Veeam Backup for Nutanix AHV 5.0 REST API requests use the following base URL format:

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

where:

The current version is v5.

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

https://127.0.0.1/api/v5/jobs

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

https://127.0.0.1/api/v5/jobs/3ad6270a-c42d-4925-aa48-9cbfc80100a6

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

[

 {

   "id": "83238f03-a894-497c-bf4d-7930f328f22a",

     "name": "Mail Server Daily Backup Job",

   ...

   ,

 {

   "id": "3ad6270a-c42d-4925-aa48-9cbfc80100a6",

     "name": "Media Server Weekly Backup Job",

   ...

 }

]