Vendors

This API is used to fetch a list of available vendors from the Arista Server or the Arista Cloud Services

API Calls

/V5/templates/vendors

Get Vendors

Description This API is used to fetch a list of available vendors from the Arista Server or the Arista Cloud Services.
Who Can Execute? Superuser, Administrator, Operator, and Viewer.
Syntax
GET <Base_URL>/templates/vendors
Sample code
GET https://training.mojonetworks.com/new/webservice/v5/templates/vendors
Request Body This API call does not require any request body parameters.
Response Body If the API call is successful, the HTTP response status is 200.
The response body contains the vendor information. The response is in the application/json format.
JSON Table

Attribute Data Type Description
vendorId int System-generated ID for the vendor.
vendorShortName String A short name for the vendor.
macPrefixList String A list of MAC address prefix associated with the vendor.

Sample JSON
[
[
  {
    "vendorId": 358,
    "vendorShortName": "11wave",
    "macPrefixList": null
  },
  {
    "vendorId": 4269,
    "vendorShortName": "1394_Printer",
    "macPrefixList": null
  },
  {
    "vendorId": 314,
    "vendorShortName": "1net-Corp",
    "macPrefixList": null
  },
  {
    "vendorId": 6221,
    "vendorShortName": "1verge-Internet",
    "macPrefixList": null
  },
  {
    "vendorId": 523,
    "vendorShortName": "2001-Tech",
    "macPrefixList": null
  },
  {
    "vendorId": 3243,
    "vendorShortName": "2Gig-Tech",
    "macPrefixList": null
  },

  ...
  ...
  ...

]]