Get Resellers
You can get a representation of a collection of all resellers in Veeam Service Provider Console.
Request
To get all resellers managed in Veeam Service Provider Console, send the GET HTTPS request to the URL of the /resellers 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 collection.
Example
The following example returns all resellers managed in Veeam Service Provider Console.
Request: GET https://localhost:1281/v2/resellers
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": 3, "name": "Gamma", "enabled": true, "tenantsUsage": 1, "tenants": 0, "workstationAgentsUsage": 2, "workstationAgentsNew": 20, "workstationAgents": 100, "serverAgentsUsage": 0, "serverAgentsNew": 5, "serverAgents": 30, "cloudBackupResourceUsage": 0, "cloudBackupResource": 107374182400, "cloudReplicationResourceUsage": 0, "cloudReplicationResource": 5, "vcdOrganizations": 0, "cloudReplicaType": "Native", "isUnlimitedTenants": true, "isUnlimitedWorkstationAgents": false, "isUnlimitedServerAgents": false, "_links": [ { "rel": "describes", "method": "GET", "href": "https://vac.tech.local:1281/v2/resellers/3" } ] }, { "id": 7, "name": "Zeta", "enabled": false, "tenantsUsage": 1, "tenants": 10, "workstationAgentsUsage": 0, "workstationAgentsNew": 0, "workstationAgents": 2, "serverAgentsUsage": 0, "serverAgentsNew": 0, "serverAgents": 2, "cloudBackupResourceUsage": 0, "cloudBackupResource": 429496729600, "cloudReplicationResourceUsage": 0, "cloudReplicationResource": 0, "vcdOrganizations": 0, "cloudReplicaType": "Not available", "isUnlimitedTenants": false, "isUnlimitedWorkstationAgents": false, "isUnlimitedServerAgents": false, "_links": [ { "rel": "describes", "method": "GET", "href": "https://vac.tech.local:1281/v2/resellers/7" } ] }, ] |