[{"label":"Latest (6.4.0)","version":"latest"}]
vrealize-network-insight-api

Get Tiers Members

Description

Get member details of tiers

Request

Request

URL

URL


post
https://vrni.example.com/api/ni/groups/tiers/members
Copy

Request Body

Request Body

GroupsMembersRequest of type(s) application/json Required
{
    "cursor": "CKWP==",
    "entity_ids": [
        "10000:561:123456789",
        "10000:562:987654321"
    ]
}
string
cursor Optional

array of string
entity_ids Optional
Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

Response Body

Response Body

200 OK

Returns TiersMembersResponse of type(s) application/json
{
	"cursor": "string",
	"results": [
		{
			"entity_id": "string",
			"entity_type": "string",
			"members": [
				{
					"entity_id": "string",
					"entity_type": "string",
					"vendor_infos": [
						{
							"manager": {
								"entity_id": "string",
								"entity_type": "VirtualMachine"
							},
							"vendor_ids": [
								{
									"id_type": "string",
									"id_value": "string"
								}
							]
						}
					]
				}
			],
			"name": "string"
		}
	],
	"total_count": 0
}
string
cursor Optional

results Optional

integer as int32
total_count Optional
Errors

Errors

401

Unauthorized


404

Not Found


500

Internal Error

Code Samples

Code Samples

cURL Command

curl -X POST -H "Content-Type: application/json" -d '{"cursor":"CKWP==","entity_ids":["10000:561:123456789","10000:562:987654321"]}' https://vrni.example.com/api/ni/groups/tiers/members


Feedback

Was this page helpful?