Vertiv website screenshot

Vertiv

Vertiv is a global provider of critical digital infrastructure and continuity solutions for data centers and communication networks. The company delivers power management, thermal management, IT management software (DCIM), and infrastructure monitoring solutions through brands including Geist (DCIM and PDU monitoring), Avocent (IT management and KVM), and Liebert (UPS and thermal). Vertiv's software platforms expose REST APIs for integrating with third-party systems, automation workflows, and data center management platforms.

5 APIs 0 Features
Critical InfrastructureData CenterDCIMInfrastructure MonitoringPower ManagementUPS

APIs

Vertiv Environet Alert REST API

The Vertiv Environet Alert Public REST API provides programmatic access to Vertiv's DCIM monitoring platform for data centers. The API enables retrieval of device data, sensor r...

Vertiv Avocent ADX Ecosystem API

The Vertiv Avocent ADX Ecosystem API provides REST API access for managing IT infrastructure through the Avocent ADX Management Platform. The API supports device management, KVM...

Vertiv Avocent DSView API

The Vertiv Avocent DSView Solution REST API enables launching of KVM, serial, and virtual viewer sessions to managed devices. The API provides programmatic control of session ma...

Vertiv Geist PDU REST API

The Vertiv Geist Power Distribution Unit (PDU) REST API provides programmatic control of Geist intelligent rack PDUs. The API supports outlet power control (on/off with delay), ...

Vertiv Avocent ACS800/8000 REST API

The Vertiv Avocent ACS800/8000 Advanced Console System native RESTful API provides programmatic access to serial console server management. The API supports device configuration...

Collections

Pricing Plans

Vertiv Plans Pricing

1 plans

PLANS

Rate Limits

Vertiv Rate Limits

1 limits

RATE LIMITS

FinOps

Vertiv Finops

FINOPS

Semantic Vocabularies

Vertiv Context

7 classes · 27 properties

JSON-LD

API Governance Rules

Vertiv API Rules

10 rules · 1 errors 6 warnings 3 info

SPECTRAL

JSON Structure

Vertiv Alarm Structure

0 properties

JSON STRUCTURE

Vertiv Device Structure

0 properties

JSON STRUCTURE

Vertiv Structure

0 properties

JSON STRUCTURE

Example Payloads

Vertiv Authenticate Example

2 fields

EXAMPLE

Vertiv List Alarms Example

2 fields

EXAMPLE

Vertiv List Devices Example

2 fields

EXAMPLE

Vertiv List Sensors Example

2 fields

EXAMPLE

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Downloads
Downloads
💬
Support
Support
👥
GitHubOrganization
GitHubOrganization

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Vertiv Environet Alert REST API
  version: 2.0.0
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Authenticate and Get Session Token
      type: http
    http:
      method: POST
      url: https://{environet-host}/api/auth
      body:
        type: form-urlencoded
        data:
        - name: username
          value: ''
        - name: password
          value: ''
    docs: Authenticate with the Environet Alert API using username and password credentials. Returns a session token for use
      in subsequent API requests.
- info:
    name: Data Sets
    type: folder
  items:
  - info:
      name: List All Data Sets
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/datasets
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns the top-level list of data set entities available in the Environet Alert system. Each data set entity represents
      a category of infrastructure data such as groups, locations, racks, assets, devices, circuits, and points.
  - info:
      name: Get Data Set by Category
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/datasets/:category
      params:
      - name: category
        value: ''
        type: path
        description: The data set category to retrieve
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns entities for a specific data category. Supported categories include GROUP, LOCATION, RACK, ASSET, DEVICE,
      CIRCUIT, POINT, Tenant, Maintenance, and ALARM.
- info:
    name: Devices
    type: folder
  items:
  - info:
      name: List All Devices
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/devices
      params:
      - name: siteName
        value: ''
        type: query
        description: Filter by site name
      - name: groupPath
        value: ''
        type: query
        description: Filter by group path
      - name: status
        value: ''
        type: query
        description: Filter by device status
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns a list of all monitored devices in the Environet Alert system including device name, status, sensor readings,
      and metadata.
  - info:
      name: Get Device by ID
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/devices/:deviceId
      params:
      - name: deviceId
        value: ''
        type: path
        description: Unique device identifier
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns detailed information about a specific monitored device.
- info:
    name: Alarms
    type: folder
  items:
  - info:
      name: List Active Alarms
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/alarms
      params:
      - name: severity
        value: ''
        type: query
        description: Filter alarms by severity level
      - name: alarmSource
        value: ''
        type: query
        description: Filter by alarm source device or asset name
      - name: siteName
        value: ''
        type: query
        description: Filter by site name
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns all active alarms in the Environet Alert system. Includes alarm severity, source device, timestamp, and
      alarm details.
- info:
    name: Racks
    type: folder
  items:
  - info:
      name: List All Racks
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/racks
      params:
      - name: rackName
        value: ''
        type: query
        description: Filter by rack name
      - name: siteName
        value: ''
        type: query
        description: Filter by site name
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns all racks monitored by the Environet Alert system with rack-level status, location, and capacity information.
- info:
    name: Circuits
    type: folder
  items:
  - info:
      name: List All Circuits
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/circuits
      params:
      - name: circuitName
        value: ''
        type: query
        description: Filter by circuit name
      - name: siteName
        value: ''
        type: query
        description: Filter by site name
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns all electrical circuits monitored by the Environet Alert system including current, voltage, and power readings.
- info:
    name: Assets
    type: folder
  items:
  - info:
      name: List All Assets
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/assets
      params:
      - name: assetName
        value: ''
        type: query
        description: Filter by asset name
      - name: rackName
        value: ''
        type: query
        description: Filter by rack name
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns all IT assets tracked in the Environet Alert system including servers, networking equipment, and other data
      center assets.
- info:
    name: Sensors
    type: folder
  items:
  - info:
      name: List All Sensor Points
      type: http
    http:
      method: GET
      url: https://{environet-host}/api/sensors
      params:
      - name: deviceName
        value: ''
        type: query
        description: Filter by parent device name
      - name: siteName
        value: ''
        type: query
        description: Filter by site name
      auth:
        type: apikey
        key: X-Auth-Token
        value: '{{X-Auth-Token}}'
        placement: header
    docs: Returns all sensor data points (POINT entities) in the Environet Alert system, including temperature, humidity,
      airflow, door position, and leak detection sensor readings.
bundled: true