Get Reseller Replication Resources
You can get a representation of a collection of all cloud replication resources available to a reseller with the specified ID.
Request
To get all cloud replication resources of a reseller in Veeam Service Provider Console, send the GET HTTPS request to the URL of the /resellers/{ID}/replicaResources collection.
HTTP Request
Request Headers
The request header must contain the authorization token.
Response
The server returns the following response to the client.
Response Code
A successfully completed operation returns response code 200 OK.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header | Description |
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message: application/json; charset=utf-8 |
Response Body
In the response body, Veeam Service Provider Console returns a representation of the /resellers/{ID}/replicaResources collection.
Example
The following request returns all cloud replication resources available in Veeam Service Provider Console for a reseller with ID 3.
Request: GET https://localhost:1281/v2/resellers/3/replicaResources
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": 1, "tenantsPerPlan": 5, "isWanAccelerationEnabled": true, "wanAcceleratorUid": "320b66e1-b0ba-4c3d-83b9-d275a50c1f26", "wanAcceleratorName": "Alpha_WA", "cloudConnectAgentUid": "5d828e03-52a1-4929-93b9-18a894f74bea" "cpuUsageLimitMhz": 3000 "ramUsageLimitMb": 4000 "storageGb": 400, "hardwarePlanId": "302c2e8a-e324-4f88-a8de-387268a2721e", "_links": [ "self": { { "rel": "self", "method": "GET", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/1" }, { "rel": "create", "method": "POST", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources" }, { "rel": "delete", "method": "DELETE", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/1" }, { "rel": "edit", "method": "PUT", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/1" } ] }, { "id": 2, "tenantsPerPlan": 4, "isWanAccelerationEnabled": false, "wanAcceleratorUid": "00000000-0000-0000-0000-000000000000", "wanAcceleratorName": null, "cloudConnectAgentUid": "011a2e72-ee82-4782-a096-26f73e85b7e8" "cpuUsageLimitMhz": 2500 "ramUsageLimitMb": 3000 "storageGb": 350, "hardwarePlanId": "2dfaa21e-3385-4e50-9fcb-50d577fc5bea", "_links": [ "self": { { "rel": "self", "method": "GET", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/2" }, { "rel": "create", "method": "POST", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources" }, { "rel": "delete", "method": "DELETE", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/2" }, { "rel": "edit", "method": "PUT", "href": "https://vac.tech.local:1281/v2/resellers/3/replicaResources/2" } ] }, ] |