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 7 REST API requests use the following base URL format:
https://<hostname>/api/<version> |
where:
- <hostname> is a public IPv4 address or DNS hostname of the Veeam Backup for Nutanix AHV backup appliance.
- <version> is an API version.
The current version is v7.
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/v7/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/v7/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", ... } ] |