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

Bulk Fetch Vendor Info

Description

Bulk fetch of vendor info. Max batch size is 1000.

Request

Request

URL

URL


post
https://vrni.example.com/api/ni/entities/vendor-infos/fetch
Copy

Request Body

Request Body

FetchRequest of type(s) application/json Optional
{
	"entity_ids": [
		{
			"entity_id": "string",
			"entity_type": "VirtualMachine",
			"time": 0
		}
	]
}
entity_ids Optional
Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

Response Body

Response Body

200 OK

Returns DetailedVendorInfoResponse of type(s) application/json
{
	"results": [
		{
			"entity_id": "string",
			"entity_name": "string",
			"entity_type": "string",
			"manager": {
				"entity_id": "string",
				"entity_name": "string",
				"entity_type": "string",
				"vendor_ids": [
					{
						"id_type": "string",
						"id_value": "string"
					}
				]
			},
			"vendor_ids": [
				{
					"id_type": "string",
					"id_value": "string"
				}
			]
		}
	]
}
results Optional
Errors

Errors

ApiError
400

Bad Request


401

Unauthorized


500

Internal Error

Code Samples

Code Samples

cURL Command

curl -X POST -H "Content-Type: application/json" -d '{"entity_ids":[{"entity_id":"string","entity_type":"VirtualMachine","time":0}]}' https://vrni.example.com/api/ni/entities/vendor-infos/fetch


Feedback

Was this page helpful?