Resource URLs

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

The Veeam Backup & Replication 1.1 REST API requests use the following base URL format:

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

where:

The default port number is 9419.

The current version is v1.

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

https://enterprise01.tech.local:9419/api/v1/sessions

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

https://enterprise01.tech.local:9419/api/v1/sessions/c36824e9-0c3e-4892-8dff-44fd56968506

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

[

 {

   ...

   "id": "c36824e9-0c3e-4892-8dff-44fd56968506",

   "name": "Infrastructure",

   ...

   ,

 {

   ...

   "id": "e170b7a4-0375-41b1-b066-d4be19d7b7ce",

   "name": "Backup Job 1",

   ...

 }

]