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:
- <hostname> is a public IPv4 address or DNS hostname of the machine where Veeam Backup & Replication is installed.
- <port> is the REST API port number set during Veeam Backup & Replication installation.
The default port number is 9419.
- <version> is an API version.
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", ... } ] |