Eaton · Example Payload

Smart Breaker Oauth Token Example

Power ManagementElectricalSmart BreakerEV ChargingDemand ResponseData CenterDCIMPDUUPSUtilityIndustrialBuildingMobilityAI FactoryEnergyIoTSustainability

Smart Breaker Oauth Token Example is an example object payload from Eaton, 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://api.em.eaton.com/oauth2/token",
    "headers": {
      "Authorization": "Basic {BASE64(CLIENT_ID:CLIENT_SECRET)}",
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": "grant_type=client_credentials"
  },
  "response": {
    "status": 200,
    "body": {
      "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhcHAtY2xpZW50LTAxIn0.signature",
      "token_type": "Bearer",
      "expires_in": 3600
    }
  }
}