Vertiv · Example Payload

Vertiv Authenticate Example

Critical InfrastructureData CenterDCIMInfrastructure MonitoringPower ManagementUPS

Vertiv Authenticate Example is an example object payload from Vertiv, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://{environet-host}/api/auth",
    "headers": {
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": "username=admin&password=your_password"
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImFkbWluIn0.abc123",
      "expires": "2026-05-03T23:59:59Z"
    }
  }
}