Syntax for Displaying Your Current Tenants
GET /api/tenants lists all the vRealize Automation tenants in your system.
Input
Use the supported input parameters to control the command output.
Parameter | Description |
---|---|
URL | https://$vRA/identity/api/tenants |
$vRA |
Specifies the appliance name and fully qualified domain name, or IP address of the vRealize Automation server. |
$token |
Specifies a valid HTTP bearer token with necessary credentials. |
Output
The command output contains property names and values based on the command input parameters.
Parameter | Description |
---|---|
Links |
Specifies an array of link objects, each of which contains the following parts:
|
Content |
Specifies an array of data rows, each of which represents one of the tenant objects returned in a pageable list. Each tenant object can contain the following information:
|
Metadata |
Specifies the
following paging-related data:
|
curl Command to Display Current Tenants
The following example command displays all available tenants.
curl --insecure -H "Accept:application/json" -H "Authorization: Bearer $token" https://$vRA/identity/api/tenants
{ "links":[], "content"[ { "@type":"Tenant", "id":"vsphere.local", "urlName":"vsphere.local", "name":"vsphere.local", "description":null, "contactEmail":null, "password":"", "defaultTenant":true }, { "@type":"Tenant", "id":"qe", "urlName":"qe", "name":"QETenant", "description":"Precreated test tenant", "contactEmail":null, "password":"", "defaultTenant":false } { "@type":"Tenant", "id":"management", "urlName":"management", "name":"Management-ITTenant", "description":"Precreated test tenant", "contactEmail":null, "password":"", "defaultTenant":false } ], "metadata":{ "size":20, "totalElements":3, "totalPages":1, "number":1, "offset":0 } }