{"info":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","description":"<html><head></head><body><p>The Envo Public API is the single entry point for integrating with the Envo platform. It<br>exposes a curated, read-oriented slice of the platform — sites and their building metadata,<br>parameters and measurement data, energy consumption and production, and deviations — behind<br>one address and one login.</p>\n<p>Behind it sit several Envo services, but that is an implementation detail: everything is<br>served under <code>api/v1</code>, documented here, and reachable with the same credentials.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Every request needs an OAuth2 <strong>client credentials</strong> token, sent as<br><code>Authorization: Bearer</code> . Envo issues you a client id and secret; exchange them at the<br>token endpoint for an access token and reuse it until it expires.</p>\n<p>Most endpoints are <strong>site-scoped</strong> — the route contains <code>{siteId}</code> and your client must hold<br>the relevant permission for <em>that</em> site. A <code>403</code> means the token is valid but the client<br>lacks the permission on that site, which is different from a <code>401</code> (missing, expired or<br>invalid token).</p>\n<p>Errors come back as RFC 9457 problem documents (<code>application/problem+json</code>), with <code>title</code>,<br><code>status</code> and — where there is something specific to say — <code>detail</code>.</p>\n<h2 id=\"what-changed-in-300\">What changed in 3.0.0</h2>\n<p><strong>Parameter logs became measurements.</strong> The biggest change. The old per-parameter log routes<br>are gone:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>1.x</th>\n<th>2.0.0</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GET /api/v1/sites/{siteId}/parameters/{parameterId}/logs</code></td>\n<td><code>GET /api/v1/sites/{siteId}/measurements?parameterIds=…</code></td>\n</tr>\n<tr>\n<td><code>GET …/logs/aggregated</code></td>\n<td><code>GET /api/v1/sites/{siteId}/measurements/aggregated?parameterIds=…</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The parameter moves out of the path into a required <code>parameterIds</code> query parameter, which<br>takes a comma-separated list — so one request can now cover several parameters instead of one<br>per call. <code>startTime</code> and <code>endTime</code> are required. The response payloads change name to match<br>(<code>MeasurementResponse</code>, <code>AggregatedMeasurementResponse</code>).</p>\n<p><strong>Nine write endpoints were withdrawn.</strong> <code>POST</code>, <code>PUT</code> and <code>DELETE</code> on<br><code>/api/v1/building-types</code>, <code>/api/v1/building-categories</code> and<br><code>/api/v1/sites/{siteId}/site-information</code> are no longer part of the public API. The building<br>taxonomy is managed internally; these are read-only now.</p>\n<p><strong><code>GET /api/v1/sites</code></strong> <strong>returns more.</strong> Each item is now a full site — timezone, address,<br>coordinates, a new <code>state</code> field — rather than just id and name. Existing code reading <code>id</code><br>and <code>name</code> keeps working.</p>\n<p><strong><code>GET /api/v1/sites/{id}</code></strong> <strong>is now site-scoped.</strong> Previously any authenticated client could<br>read any site. It now requires access to that specific site, so an integration that reads<br>sites it is not granted will start getting <code>403</code>. Worth checking before you upgrade.</p>\n<p><strong>A lot was added</strong> — 42 new endpoints, taking the API from 23 to 56. Chiefly energy data<br>(consumption by category or tenant, energy flow, solar production, grid export, indoor and<br>outdoor temperature, meter structure and distributions), building tenants, and deviations:<br>reading active deviations, fetching the acknowledge form for a category, and acknowledging<br>them.</p>\n<h2 id=\"using-the-collection\">Using the collection</h2>\n<p><strong>Set the collection variables first.</strong> <code>baseUrl</code> is the API address for your environment;<br><code>clientId</code> and <code>clientSecret</code> are the credentials Envo issued you; <code>tokenUrl</code> is the token<br>endpoint for the same environment. Everything else inherits from these.</p>\n<p><strong>Set authorization once, on the collection</strong>, so individual requests do not each carry their<br>own. On the collection's <strong>Authorization</strong> tab choose OAuth 2.0 with the client credentials<br>grant, point it at <code>tokenUrl</code>, then <strong>Get New Access Token</strong>. Requests inherit it and run<br>without further setup until the token expires; repeat the same step to refresh.</p>\n<p><strong>Start with</strong> <strong><code>GET /api/v1/sites</code>****.</strong> It confirms the credentials work and returns the sites<br>your client can reach. Take a <code>siteId</code> from the response and use it in the site-scoped<br>requests, most of which take <code>siteId</code> as a path variable.</p>\n<p>Requests are grouped by area — Sites, Parameters, Measurements, Consumption, Deviations and<br>so on — mirroring the sections in this documentation.</p>\n<p><strong>A couple of practical notes.</strong> List endpoints are paginated with <code>pageNumber</code> and<br><code>pageSize</code>. If you need to report a problem, include the <code>X-Correlation-Id</code> from the response<br>headers: it is how Envo traces a single request through the platform.</p>\n<p>Contact Support:<br>Name: Envo Platform Team</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"52168095","collectionId":"d0b2736d-c190-48f7-b263-ea397f8f6fad","publishedId":"2sBXitBmYZ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-05-28T16:40:39.000Z"},"item":[{"name":"AcknowledgeSchemaForms","item":[{"name":"Acknowledge Schema Forms Get Acknowledge Form","id":"20b47ac0-f8a1-4986-8e84-5c9a017f82fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"siteId"},{"type":"any","value":"1","key":"categoryId"}]}},"response":[{"id":"9969c878-66f2-45cf-9863-13ec91c2c275","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"schemaId\": 9246,\n  \"categoryId\": 2813,\n  \"siteId\": 2667,\n  \"siteCategoryId\": 1476,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"commentRequired\": true,\n  \"minimumOneObjectItemRequired\": false,\n  \"minimumOneOperationItemRequired\": false,\n  \"minimumOneMeasureItemRequired\": false,\n  \"minimumOneSeverityItemRequired\": true,\n  \"objectEnabled\": false,\n  \"operationEnabled\": false,\n  \"measureEnabled\": false,\n  \"severityEnabled\": true,\n  \"objectItems\": [\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": false,\n      \"enabled\": true,\n      \"required\": true,\n      \"errorMessage\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": true,\n      \"enabled\": true,\n      \"required\": false,\n      \"errorMessage\": \"string\"\n    }\n  ],\n  \"operationItems\": [\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": true,\n      \"enabled\": false,\n      \"required\": false,\n      \"errorMessage\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": true,\n      \"enabled\": true,\n      \"required\": false,\n      \"errorMessage\": \"string\"\n    }\n  ],\n  \"measureItems\": [\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": false,\n      \"enabled\": false,\n      \"required\": false,\n      \"errorMessage\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": false,\n      \"enabled\": true,\n      \"required\": true,\n      \"errorMessage\": \"string\"\n    }\n  ],\n  \"severityItems\": [\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": false,\n      \"enabled\": false,\n      \"required\": true,\n      \"errorMessage\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"displayName\": \"string\",\n      \"checked\": false,\n      \"enabled\": true,\n      \"required\": true,\n      \"errorMessage\": \"string\"\n    }\n  ]\n}"},{"id":"c6382ff6-ef0f-4321-ad92-2da89e3a985f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"66bb3eb4-6f5a-48df-9130-d7cac72e69f3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"be0d2419-39a9-4fd9-9ab3-8bd1fece1a24","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"30be28a2-72d7-4ba4-8b9c-dda76ac8f7f4","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"39c423c4-114f-4d1a-8226-a85a18624a99","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/acknowledge-forms/:categoryId","host":["/"],"path":["api","v1","sites",":siteId","acknowledge-forms",":categoryId"],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"20b47ac0-f8a1-4986-8e84-5c9a017f82fe"}],"id":"a0eff4c0-8641-48a3-94b9-77520bae14ba","_postman_id":"a0eff4c0-8641-48a3-94b9-77520bae14ba","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"BuildingCategories","item":[{"name":"Building Categories Get All","id":"63a0cd6a-9573-4d9f-b3af-b82ca1c1016e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/building-categories","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","building-categories"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"25316e54-d836-4eb9-b1e1-ed5446ca0c65","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8747,\n    \"name\": \"string\",\n    \"description\": \"string\"\n  },\n  {\n    \"id\": 2759,\n    \"name\": \"string\",\n    \"description\": \"string\"\n  }\n]"},{"id":"bf9424f0-1e84-4d71-99ae-452bad629c73","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-categories"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c2558bfe-022d-45ed-b842-c77ce1f0107f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-categories"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"fdc65184-c051-4e96-94a0-60b5ead48dfd","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-categories"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"63a0cd6a-9573-4d9f-b3af-b82ca1c1016e"},{"name":"Building Categories Get By Id","id":"10c00d70-6e07-4302-b417-5c7684e6280d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/building-categories/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","building-categories",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1","key":"id"}]}},"response":[{"id":"af0dd569-c62c-4a2d-a351-06b06440ee34","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-categories/:id","host":["/"],"path":["api","v1","building-categories",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5498,\n  \"name\": \"string\",\n  \"description\": \"string\"\n}"},{"id":"27411f73-1ec3-48f2-94f2-15d79a0d8a3c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-categories/:id","host":["/"],"path":["api","v1","building-categories",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c10df7f2-603d-42c2-ba3b-f7ef603e9588","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-categories/:id","host":["/"],"path":["api","v1","building-categories",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d143a7e7-4732-4262-bfeb-90f866238249","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-categories/:id","host":["/"],"path":["api","v1","building-categories",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"eded1e38-c76d-4c44-be28-6420a04d4c30","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-categories/:id","host":["/"],"path":["api","v1","building-categories",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"10c00d70-6e07-4302-b417-5c7684e6280d"}],"id":"b35ecec0-fe00-4343-8116-65136f8ee022","_postman_id":"b35ecec0-fe00-4343-8116-65136f8ee022","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"BuildingTenant","item":[{"name":"Building Tenant Get Building Tenants","id":"f4890254-d77d-4447-a3e0-f53909885b80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/building-tenants","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","building-tenants"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"aff7a273-9091-4ea0-ba91-82231688e495","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants","host":["/"],"path":["api","v1","sites",":siteId","building-tenants"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5535,\n    \"siteId\": 469,\n    \"name\": \"string\",\n    \"shortname\": \"string\",\n    \"description\": \"string\",\n    \"isArchived\": false,\n    \"isDefault\": true,\n    \"createdAt\": \"2011-04-29T12:23:42.351Z\",\n    \"lastUpdatedAt\": \"1992-04-11T05:28:24.965Z\",\n    \"notes\": \"string\",\n    \"contactPerson\": \"string\",\n    \"contactPhone\": \"string\",\n    \"contactEmail\": \"string\",\n    \"invoiceEmail\": \"string\",\n    \"invoicePoReference\": \"string\",\n    \"otherInvoiceInformation\": \"string\",\n    \"configuration\": {\n      \"organizationNumber\": \"string\"\n    }\n  },\n  {\n    \"id\": 7011,\n    \"siteId\": 9815,\n    \"name\": \"string\",\n    \"shortname\": \"string\",\n    \"description\": \"string\",\n    \"isArchived\": false,\n    \"isDefault\": true,\n    \"createdAt\": \"1986-07-01T03:48:37.557Z\",\n    \"lastUpdatedAt\": \"2014-03-19T07:10:06.527Z\",\n    \"notes\": \"string\",\n    \"contactPerson\": \"string\",\n    \"contactPhone\": \"string\",\n    \"contactEmail\": \"string\",\n    \"invoiceEmail\": \"string\",\n    \"invoicePoReference\": \"string\",\n    \"otherInvoiceInformation\": \"string\",\n    \"configuration\": {\n      \"organizationNumber\": \"string\"\n    }\n  }\n]"},{"id":"84f0cae1-7ef3-43c9-9800-7ea943f3fef6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants","host":["/"],"path":["api","v1","sites",":siteId","building-tenants"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"273328af-5c60-40d2-b01f-5ea47fa44f60","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants","host":["/"],"path":["api","v1","sites",":siteId","building-tenants"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d68caa79-5f27-422a-bd98-f264c2fb604e","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"<token>","description":"Added as a part of security scheme: oauth2"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants","host":["/"],"path":["api","v1","sites",":siteId","building-tenants"],"variable":[{"key":"siteId","value":"1171"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f4890254-d77d-4447-a3e0-f53909885b80"},{"name":"Building Tenant Get Building Tenant By Id","id":"26319c59-efc7-479b-936d-13fbe2024296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/building-tenants/:tenantId","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"siteId"},{"type":"any","value":"114","key":"tenantId"}]}},"response":[{"id":"0e34a0bc-e4ca-400c-8320-9e4db8b8c1a0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6666,\n  \"siteId\": 8884,\n  \"name\": \"string\",\n  \"shortname\": \"string\",\n  \"description\": \"string\",\n  \"isArchived\": false,\n  \"isDefault\": false,\n  \"createdAt\": \"1954-06-30T10:29:54.491Z\",\n  \"lastUpdatedAt\": \"1982-03-27T01:00:29.432Z\",\n  \"notes\": \"string\",\n  \"contactPerson\": \"string\",\n  \"contactPhone\": \"string\",\n  \"contactEmail\": \"string\",\n  \"invoiceEmail\": \"string\",\n  \"invoicePoReference\": \"string\",\n  \"otherInvoiceInformation\": \"string\",\n  \"configuration\": {\n    \"organizationNumber\": \"string\"\n  }\n}"},{"id":"1ab52adb-d267-44c3-ba24-a0d5d6724c61","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8c9d0f02-1d1b-4524-b3f2-e854a315d030","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"41a9ff18-3dbd-4ecc-a292-d79a0dd8e5bc","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7501b8c5-8807-406f-9d66-d28237775b3a","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","building-tenants",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"26319c59-efc7-479b-936d-13fbe2024296"},{"name":"Building Tenant Get Building Tenant By Organization Number","id":"94b1347c-2b12-4a30-97e8-59936017e643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"siteId"},{"type":"any","value":"12332112366","key":"organizationNumber"}]}},"response":[{"id":"b1d59424-3201-4715-9ce7-464fc1af64a9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","host":["/"],"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"variable":[{"key":"siteId","value":"2339"},{"key":"organizationNumber","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6666,\n  \"siteId\": 8884,\n  \"name\": \"string\",\n  \"shortname\": \"string\",\n  \"description\": \"string\",\n  \"isArchived\": false,\n  \"isDefault\": false,\n  \"createdAt\": \"1954-06-30T10:29:54.491Z\",\n  \"lastUpdatedAt\": \"1982-03-27T01:00:29.432Z\",\n  \"notes\": \"string\",\n  \"contactPerson\": \"string\",\n  \"contactPhone\": \"string\",\n  \"contactEmail\": \"string\",\n  \"invoiceEmail\": \"string\",\n  \"invoicePoReference\": \"string\",\n  \"otherInvoiceInformation\": \"string\",\n  \"configuration\": {\n    \"organizationNumber\": \"string\"\n  }\n}"},{"id":"f58b5182-9a54-449f-a154-2436581e2c81","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","host":["/"],"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"variable":[{"key":"siteId","value":"2339"},{"key":"organizationNumber","value":"string"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dc7f673b-ffb2-47d1-97f3-9dd6f4c05b5e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","host":["/"],"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"variable":[{"key":"siteId","value":"2339"},{"key":"organizationNumber","value":"string"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"65f5b0c4-4763-44cf-abd7-527412c5a653","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","host":["/"],"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"variable":[{"key":"siteId","value":"2339"},{"key":"organizationNumber","value":"string"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"68753f7e-dccb-4ae8-84aa-73bd66df455e","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/building-tenants/by-organization-number/:organizationNumber","host":["/"],"path":["api","v1","sites",":siteId","building-tenants","by-organization-number",":organizationNumber"],"variable":[{"key":"siteId","value":"2339"},{"key":"organizationNumber","value":"string"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"94b1347c-2b12-4a30-97e8-59936017e643"}],"id":"8ec3eb36-2e0f-47a9-8c81-7c6ec942492f","_postman_id":"8ec3eb36-2e0f-47a9-8c81-7c6ec942492f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"BuildingTypes","item":[{"name":"Building Types Get All","id":"46eaffa4-9f53-405f-94df-43e2f0771162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/building-types","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","building-types"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"56cc0a27-b6eb-4b60-9094-18b39e06cfe4","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 1460,\n    \"buildingCategoryId\": 588,\n    \"name\": \"string\",\n    \"description\": \"string\"\n  },\n  {\n    \"id\": 1919,\n    \"buildingCategoryId\": 2004,\n    \"name\": \"string\",\n    \"description\": \"string\"\n  }\n]"},{"id":"2f10b5f2-4779-4091-91f6-51285824e349","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-types"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"638d80dc-7104-4a51-8bdc-d2be30c642ed","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-types"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2422bda1-6762-4044-a2ed-70550f9e12f5","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/building-types"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"46eaffa4-9f53-405f-94df-43e2f0771162"},{"name":"Building Types Get By Id","id":"42b0ff94-e00c-4165-b3b3-ce189e36d8ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/building-types/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","building-types",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1","key":"id"}]}},"response":[{"id":"1494aa2d-8805-4d73-a5a0-fc0e6f8ea246","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-types/:id","host":["/"],"path":["api","v1","building-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9969,\n  \"buildingCategoryId\": 345,\n  \"name\": \"string\",\n  \"description\": \"string\"\n}"},{"id":"a9643917-b753-45c1-ab1c-42340b0dadf1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-types/:id","host":["/"],"path":["api","v1","building-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"292d7edc-548e-4b03-b917-7ca73726f753","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-types/:id","host":["/"],"path":["api","v1","building-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"43aa022b-8096-4071-a535-2683a94a8c9b","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-types/:id","host":["/"],"path":["api","v1","building-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"6bd08e8a-554c-43fb-b25f-7c574e865b48","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/building-types/:id","host":["/"],"path":["api","v1","building-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"42b0ff94-e00c-4165-b3b3-ce189e36d8ee"}],"id":"44a19332-ce3b-4f37-ab58-fe40ed2601b1","_postman_id":"44a19332-ce3b-4f37-ab58-fe40ed2601b1","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"Consumption","item":[{"name":"Consumption Get Periodic Consumption By Tenants","id":"39f7c249-382b-49be-a9e5-8e2ca46fea44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=2026-01-01T08:45:00Z&ToDate=2026-09-14T08:45:00Z","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-01T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"disabled":true,"key":"Resolution","value":"1"},{"disabled":true,"key":"ExcludeMeterCategories","value":"1"},{"disabled":true,"key":"ExcludeMeterCategories","value":"1"},{"disabled":true,"key":"DegreeDayCorrection","value":"false"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"68683476-daee-4aae-ad9b-a71335e79773","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": {\n    \"logDate\": \"1961-10-28T12:43:21.910Z\",\n    \"consumption\": 5119.275759524687\n  },\n  \"key_1\": {\n    \"logDate\": \"1990-10-03T20:03:08.559Z\",\n    \"consumption\": 6160.394278903036\n  },\n  \"key_2\": {\n    \"logDate\": \"1960-04-07T15:24:40.571Z\",\n    \"consumption\": 6381.5535133054755\n  }\n}"},{"id":"b5886f65-e384-461b-b511-46829712f9d1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"b9af1339-a534-4309-b00c-4b04ae598926","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c5f2de77-ee1d-4fef-89c5-f8a14ad89e0f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f2c1d5cc-3d36-4dec-bae6-075c8ee52205","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bdcf5790-0d64-4aac-af00-de42745dc173","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=false","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"false"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"39f7c249-382b-49be-a9e5-8e2ca46fea44"},{"name":"Consumption Get Periodic Consumption By Tenants As Series","id":"e9b4250c-01fd-4664-8161-bb94202df8b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=2025-09-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2025-09-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"e6cd52cc-3a4a-4118-94e3-2f715c195d32","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_0\": [\n    {\n      \"logDate\": \"1962-02-25T22:09:05.743Z\",\n      \"consumption\": 5743.999496661924\n    },\n    {\n      \"logDate\": \"1959-10-03T08:36:06.429Z\",\n      \"consumption\": 5659.39857078305\n    }\n  ]\n}"},{"id":"6f023b67-adae-45bb-b7f1-91f9b7fb119e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"95f8d539-14bf-4224-9cd2-06d9699ff0d2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"36aec53f-bd05-48cc-ab88-97490f998ec6","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"da7f2de0-0f5e-479d-823c-988bf03f0859","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ab77e3cf-ff4a-4def-9c76-8576a8e8245c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e9b4250c-01fd-4664-8161-bb94202df8b8"},{"name":"Consumption Get Periodic Consumption By Tenant Id","id":"5e2bf536-5058-451d-b508-6c34e1b0fc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=2025-09-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2025-09-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"disabled":true,"key":"Resolution","value":"3"},{"disabled":true,"key":"ExcludeMeterCategories","value":"8"},{"disabled":true,"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"16","key":"tenantId"}]}},"response":[{"id":"88e95550-37b1-4745-845d-bd46f85788bb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1985-09-14T15:47:40.971Z\",\n    \"consumption\": 5486.976454903672\n  },\n  {\n    \"logDate\": \"1976-10-19T17:17:34.207Z\",\n    \"consumption\": 14.868504385463499\n  }\n]"},{"id":"a8ccdcfc-380c-403c-bb52-fd09153982e1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"c6024647-9ad9-465e-9627-2eee8d19dbc3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"679fd1cc-77c5-4cc0-86f1-d08494d7e8e2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1dbe86b4-b87f-4687-9929-cbfe8abcd045","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3e8dc58e-0aba-4e95-aeab-1d14ca86b975","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5e2bf536-5058-451d-b508-6c34e1b0fc35"},{"name":"Consumption Get Periodic Consumption Sum By Tenant Id","id":"484f01cc-3ec0-4a8f-acbc-19149c4a83e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=2025-09-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2025-09-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"16","key":"tenantId"}]}},"response":[{"id":"e21e61ef-3cf8-4e5e-b43b-77c666a9ccac","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1947-02-23T05:46:31.095Z\",\n  \"consumption\": 434.8942119940702\n}"},{"id":"5ab2accb-76e3-4f4d-9f13-584a96a6cbf7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"f84238a1-45b6-4176-ac11-6b2a3ec04583","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c758cb95-39f0-4106-b27b-9d59a83ea787","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"cb300895-26f4-473a-962f-731baf5dfae0","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1e840056-9c0c-4e5f-a960-4ff970d8954f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"484f01cc-3ec0-4a8f-acbc-19149c4a83e4"},{"name":"Consumption Get Periodic Consumption By Categories","id":"51698293-eaa9-4208-9ea5-617b6cf6649f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=2026-08-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-08-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"e96dbeb9-911f-4fd8-accd-218e65268011","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"HVAC\": {\n    \"logDate\": \"1999-04-11T01:09:43.981Z\",\n    \"consumption\": 2297.762794692375\n  },\n  \"Lighting\": {\n    \"logDate\": \"1954-01-23T12:06:18.874Z\",\n    \"consumption\": 8386.249045314515\n  },\n  \"Dhw\": {\n    \"logDate\": \"1961-03-12T11:29:11.021Z\",\n    \"consumption\": 1483.5560508161461\n  },\n  \"PlugLoads\": {\n    \"logDate\": \"2024-12-21T21:32:46.020Z\",\n    \"consumption\": 691.2285455623368\n  },\n  \"ProcessLoads\": {\n    \"logDate\": \"1990-11-28T12:08:41.766Z\",\n    \"consumption\": 8190.779662629235\n  },\n  \"Refrigeration\": {\n    \"logDate\": \"1968-04-25T06:13:31.540Z\",\n    \"consumption\": 8622.282889105534\n  },\n  \"Transport\": {\n    \"logDate\": \"2012-04-08T04:16:10.533Z\",\n    \"consumption\": 1449.7507205224335\n  },\n  \"EvCharging\": {\n    \"logDate\": \"1949-07-07T00:27:30.745Z\",\n    \"consumption\": 1066.4749988570632\n  },\n  \"OutdoorSystems\": {\n    \"logDate\": \"1975-04-10T03:06:01.431Z\",\n    \"consumption\": 53.30220970610977\n  },\n  \"Other\": {\n    \"logDate\": \"1967-07-12T04:02:37.188Z\",\n    \"consumption\": 4022.3264547716253\n  },\n  \"Unallocated\": {\n    \"logDate\": \"2017-09-05T15:43:29.025Z\",\n    \"consumption\": 3374.398045577056\n  }\n}"},{"id":"a9e6f93c-486f-42f3-99d9-3ad1078877b1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"ba0461fa-3d47-4f0e-b12d-b41584f15a60","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"533f497c-b0bb-43b5-bb56-e28cf88bea21","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"e835fd5b-a1d8-48e2-8749-d7b927a86920","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"6b26e05a-e123-4909-9462-12554db7b788","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"51698293-eaa9-4208-9ea5-617b6cf6649f"},{"name":"Consumption Get Periodic Consumption By Categories As Series","id":"6314addc-ac94-4138-badc-2826b11130ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"73d1eb37-21c3-4777-830a-31d7babd89e9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"HVAC\": [\n    {\n      \"logDate\": \"1994-02-03T12:18:37.835Z\",\n      \"consumption\": 5211.469457961351\n    },\n    {\n      \"logDate\": \"2010-12-07T20:51:25.598Z\",\n      \"consumption\": 5053.571077294084\n    }\n  ],\n  \"Lighting\": [\n    {\n      \"logDate\": \"1947-08-05T19:28:19.140Z\",\n      \"consumption\": 2670.0551712263755\n    },\n    {\n      \"logDate\": \"2024-10-23T15:23:34.963Z\",\n      \"consumption\": 2289.20500444441\n    }\n  ],\n  \"Dhw\": [\n    {\n      \"logDate\": \"2005-08-20T12:32:45.560Z\",\n      \"consumption\": 755.0637988709674\n    },\n    {\n      \"logDate\": \"2005-01-22T17:52:52.489Z\",\n      \"consumption\": 2782.7853128495094\n    }\n  ],\n  \"PlugLoads\": [\n    {\n      \"logDate\": \"1992-12-27T01:26:36.589Z\",\n      \"consumption\": 3137.047911585138\n    },\n    {\n      \"logDate\": \"2018-10-19T09:23:04.776Z\",\n      \"consumption\": 2748.619770313374\n    }\n  ],\n  \"ProcessLoads\": [\n    {\n      \"logDate\": \"1948-12-06T16:05:49.379Z\",\n      \"consumption\": 6847.674754696504\n    },\n    {\n      \"logDate\": \"2025-10-05T14:41:44.593Z\",\n      \"consumption\": 9842.110059381495\n    }\n  ],\n  \"Refrigeration\": [\n    {\n      \"logDate\": \"2022-04-25T00:12:45.836Z\",\n      \"consumption\": 8088.50091972805\n    },\n    {\n      \"logDate\": \"2019-03-23T21:54:20.093Z\",\n      \"consumption\": 2910.7709899912115\n    }\n  ],\n  \"Transport\": [\n    {\n      \"logDate\": \"2018-05-01T08:22:13.000Z\",\n      \"consumption\": 4084.642217591339\n    },\n    {\n      \"logDate\": \"1980-04-22T04:38:49.020Z\",\n      \"consumption\": 6845.108839213165\n    }\n  ],\n  \"EvCharging\": [\n    {\n      \"logDate\": \"2003-04-21T10:14:20.412Z\",\n      \"consumption\": 1539.7326499772769\n    },\n    {\n      \"logDate\": \"1978-11-29T04:34:41.029Z\",\n      \"consumption\": 4197.157179453801\n    }\n  ],\n  \"OutdoorSystems\": [\n    {\n      \"logDate\": \"1998-09-20T14:11:56.745Z\",\n      \"consumption\": 5197.524581663553\n    },\n    {\n      \"logDate\": \"2025-04-02T23:54:06.844Z\",\n      \"consumption\": 1472.4082287297024\n    }\n  ],\n  \"Other\": [\n    {\n      \"logDate\": \"1971-11-18T00:07:35.254Z\",\n      \"consumption\": 4966.292511887636\n    },\n    {\n      \"logDate\": \"1979-10-15T16:20:34.097Z\",\n      \"consumption\": 6445.2504682323215\n    }\n  ],\n  \"Unallocated\": [\n    {\n      \"logDate\": \"1951-10-09T20:38:57.516Z\",\n      \"consumption\": 6721.652051335918\n    },\n    {\n      \"logDate\": \"2004-02-11T13:04:27.917Z\",\n      \"consumption\": 7346.309358904239\n    }\n  ]\n}"},{"id":"acd80cd0-4314-4a0e-9bf9-78ed3cb16cdb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"2db40916-8c6b-4de0-85c7-46cb8c2e9b85","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"6a5f80a9-9573-4aab-8cb7-b24512d2af94","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bea75baf-b02c-4baf-bb9d-2001f034a118","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"19c4bb4c-07cc-41ab-976b-be88005917ef","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/all/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"6314addc-ac94-4138-badc-2826b11130ef"},{"name":"Consumption Get Periodic Consumption By Category","id":"80d52fe1-6052-494c-86f7-f06eba7ced73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"categoryType"}]}},"response":[{"id":"215c1c94-8ded-42d1-ac7c-a54fafa67431","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1985-09-14T15:47:40.971Z\",\n    \"consumption\": 5486.976454903672\n  },\n  {\n    \"logDate\": \"1976-10-19T17:17:34.207Z\",\n    \"consumption\": 14.868504385463499\n  }\n]"},{"id":"6853772f-4d1b-4c54-8cb2-04145ecbd8a9","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"2ba010c2-8589-4d22-bb0a-fcbc3c627f34","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ee4f91c8-40b3-4dbe-80aa-3a16681837d9","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dfe418ef-19a8-4e4a-8d7d-9fba688a0e71","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"daaef3fe-1294-4a9f-8ab4-1f0026380230","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"80d52fe1-6052-494c-86f7-f06eba7ced73"},{"name":"Consumption Get Periodic Consumption Sum By Category","id":"b76f1acf-4361-4e55-a086-94b51b49b666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"categoryType"}]}},"response":[{"id":"ed3e9d34-93a5-4d8b-bb91-4cf52237dec3","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1947-02-23T05:46:31.095Z\",\n  \"consumption\": 434.8942119940702\n}"},{"id":"9479817a-8e3b-4eb7-883f-555d79ac5307","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"7b252747-0acb-493d-9011-6211d94a06bb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8aa745aa-c92b-49c0-9ad1-a42d7c4aa3d6","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7c58488d-7ad8-488c-b7b5-a64ad37cf427","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1ac2496c-d82e-43ac-8868-e2dcb6850d6a","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"categoryType","value":"9"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b76f1acf-4361-4e55-a086-94b51b49b666"}],"id":"5f909085-d0c8-4727-8a83-534c21a10a3d","_postman_id":"5f909085-d0c8-4727-8a83-534c21a10a3d","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"EnergyFlow","item":[{"name":"Energy Flow Get Energy Flow As Series","id":"0b787e85-f7a6-4bac-88b2-fd40065585e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=2025-09-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2025-09-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"node"}]}},"response":[{"id":"514b2ce4-cd08-4f44-86ec-70e7079af7d3","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1985-09-14T15:47:40.971Z\",\n    \"consumption\": 5486.976454903672\n  },\n  {\n    \"logDate\": \"1976-10-19T17:17:34.207Z\",\n    \"consumption\": 14.868504385463499\n  }\n]"},{"id":"e8a9fa99-0711-4e23-a805-6d69a3db5a18","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"51805815-b0b6-4170-a544-793ada98482c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2b9fc9de-f707-4bdc-b449-d48b1deed2d8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d75eba2e-ba52-4176-9392-3542ed8cfaf1","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"03e5f66a-231d-4395-9a6e-930fb2aa7d4f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0b787e85-f7a6-4bac-88b2-fd40065585e5"},{"name":"Energy Flow Get Energy Flow As Sum As Dictionary","id":"5c8091ef-f792-46d3-a8d5-a231f5cf28e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"f15b6a02-a6f0-4c7b-bae6-0449d3cd88a9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Building\": {\n    \"logDate\": \"1989-07-04T22:46:27.524Z\",\n    \"consumption\": 122.82357466404159\n  },\n  \"Grid\": {\n    \"logDate\": \"1951-02-04T12:26:02.209Z\",\n    \"consumption\": 7426.987094232542\n  },\n  \"DistrictHeating\": {\n    \"logDate\": \"2026-01-23T00:28:06.703Z\",\n    \"consumption\": 7487.347033262153\n  },\n  \"OtherExternalPowerSource\": {\n    \"logDate\": \"1998-11-22T13:49:57.081Z\",\n    \"consumption\": 8200.403755982583\n  },\n  \"SolarPowerPlant\": {\n    \"logDate\": \"2006-02-21T02:52:07.736Z\",\n    \"consumption\": 8727.50906921608\n  },\n  \"OtherPowerPlant\": {\n    \"logDate\": \"1970-11-05T23:50:03.736Z\",\n    \"consumption\": 4136.339189839575\n  }\n}"},{"id":"9f8ae960-c88c-4943-885e-56ca5620958d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"2bb8fd5e-06c7-49af-a464-643e8b5b2103","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"45a66410-dbd2-44e6-b565-a3d40c0f9139","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f906a7e5-c57b-4caf-ab35-bf13a3058cc8","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"fccb0d95-479c-4049-b2cd-794a6eca4583","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5c8091ef-f792-46d3-a8d5-a231f5cf28e1"},{"name":"Energy Flow Get Energy Flow As Sum","id":"c4af9e83-e149-4078-8ade-4a76b251d3ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"node"}]}},"response":[{"id":"277a11f8-b045-490d-979f-aa9eb68588b2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1947-02-23T05:46:31.095Z\",\n  \"consumption\": 434.8942119940702\n}"},{"id":"a3f48cfb-09da-4770-9358-1c273c2222ec","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"240579c6-e1b2-46f9-af51-07c1985d1282","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"e2a91d1a-497a-492f-8196-93b20957a356","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"eefab333-7dcd-4359-b8db-5b70a9aeca15","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ee561dc9-27b4-4cbb-a025-6585bfe1aa5b","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"node","value":"6"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c4af9e83-e149-4078-8ade-4a76b251d3ca"},{"name":"Energy Flow Get Periodic Consumption By Meter","id":"494c3b3a-6582-4ed3-b273-4a6816055044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"90","key":"meterId"}]}},"response":[{"id":"e5b9c056-8455-44e6-af66-c3496b891512","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1985-09-14T15:47:40.971Z\",\n    \"consumption\": 5486.976454903672\n  },\n  {\n    \"logDate\": \"1976-10-19T17:17:34.207Z\",\n    \"consumption\": 14.868504385463499\n  }\n]"},{"id":"49b56252-654b-4e67-8ecd-b40a4dabe615","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"e8dce62b-c2af-497f-bebe-01b750f2f4bb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a7fcf624-c259-42b1-a169-059d6d6f2fe6","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"317a5f35-1895-49f6-a5e7-dd33f22bd3db","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"b6222327-b344-48ae-b789-e753d318f51b","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/:meterId?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"494c3b3a-6582-4ed3-b273-4a6816055044"},{"name":"Energy Flow Get Momentary Consumption By Meter","id":"b731495b-c11a-465d-8f63-28782a3f3a2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"87","key":"meterId"}]}},"response":[{"id":"adc05960-9255-4215-8d50-860793157673","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1947-02-23T05:46:31.095Z\",\n  \"consumption\": 434.8942119940702\n}"},{"id":"40208a64-a81c-47d7-9390-8d93fe471fa8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"4627a067-332b-4cab-80e8-147a8c84f396","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"841acdf9-76c1-4c8a-8a89-69ff40cbf5b9","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bcd88ca0-b7da-4aa4-9dd1-5dd6f1b24c52","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"97859876-0860-41df-90db-1661fc925f16","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v1","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b731495b-c11a-465d-8f63-28782a3f3a2e"}],"id":"36e03f7d-1391-4aa6-bf11-afe16c824907","_postman_id":"36e03f7d-1391-4aa6-bf11-afe16c824907","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"GridExport","item":[{"name":"Grid Export Get Grid Export As Sum","id":"fff331c8-4394-497c-97ad-f6314c2f50bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","grid-export","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"665d4d17-056e-40b7-a009-6b2175c2a06e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1974-11-05T01:10:45.337Z\",\n  \"production\": 5178.157244176054\n}"},{"id":"52682404-413d-46b5-9ca6-5326de4f2628","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"74ac0363-8a94-49b6-b412-bec96a38368a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a9812a28-6956-41da-81c9-87f5ec33cd48","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"afed886f-c43c-43f1-b2b5-11ceada8391a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"fd15f09e-9158-4371-8b55-9a591f454fe7","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"fff331c8-4394-497c-97ad-f6314c2f50bb"},{"name":"Grid Export Get Grid Export As Series","id":"e878f514-1800-4e02-adbe-352278736b83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","grid-export","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"a6da2d5f-3745-4c40-ba63-91247d57cd1c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1996-09-06T07:49:42.028Z\",\n    \"production\": 3608.1181018440357\n  },\n  {\n    \"logDate\": \"2002-12-07T18:15:43.825Z\",\n    \"production\": 147.23849042451943\n  }\n]"},{"id":"2690e1ab-7fb4-49d4-b73b-3ee14e9a18c8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"e79665a6-cdaa-4b95-ba5c-f3d36c496e9b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"139d28d7-976f-4f52-857b-bf331111fef8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"84cfb667-9127-4975-b892-255a8d1daa9e","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"6a92ab7a-8347-4ad5-998c-d43eef3680dc","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/grid-export/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e878f514-1800-4e02-adbe-352278736b83"}],"id":"95fe6393-c828-40f8-a397-56154687f1b6","_postman_id":"95fe6393-c828-40f8-a397-56154687f1b6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"Measurement","item":[{"name":"Measurement Get Measurements","id":"b4a8fcef-b68c-45d8-b8d7-8054f8df9ce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/measurements?parameterIds=1&startTime=2026-01-14T08:45:00Z&endTime=2026-09-14T08:45:00Z","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","measurements"],"host":["/"],"query":[{"key":"parameterIds","value":"1"},{"disabled":true,"key":"parameterIds","value":"4857"},{"key":"startTime","value":"2026-01-14T08:45:00Z"},{"key":"endTime","value":"2026-09-14T08:45:00Z"},{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"}],"variable":[{"type":"any","value":"15","key":"siteId"}]}},"response":[{"id":"dab439bb-9e90-4e85-84d2-6cca75bebfe0","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements?parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements"],"query":[{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"parameterId\": 2553,\n      \"lowerLimit\": 8338.873373393624,\n      \"upperLimit\": 7443.60315114557,\n      \"logTime\": \"1949-04-05T03:32:31.024Z\",\n      \"name\": \"string\",\n      \"paramType\": \"string\",\n      \"numericReadValue\": 8458.332958357936,\n      \"stringReadValue\": \"string\",\n      \"numericWriteValue\": 2124.298582572117,\n      \"stringWriteValue\": \"string\"\n    },\n    {\n      \"parameterId\": 564,\n      \"lowerLimit\": 7543.347127694337,\n      \"upperLimit\": 7645.740981701088,\n      \"logTime\": \"2000-02-11T01:24:55.496Z\",\n      \"name\": \"string\",\n      \"paramType\": \"string\",\n      \"numericReadValue\": 6513.241070729688,\n      \"stringReadValue\": \"string\",\n      \"numericWriteValue\": 7205.581460015802,\n      \"stringWriteValue\": \"string\"\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 5771,\n    \"pageSize\": 6388,\n    \"currentPage\": 9379,\n    \"hasPrevious\": true,\n    \"hasNext\": true,\n    \"totalPages\": 4303\n  }\n}"},{"id":"2866c706-1713-4989-8599-8e0eace5f1ae","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements?parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements"],"query":[{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"c89f5c16-3949-4c4d-94f1-6235e5f92683","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements?parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements"],"query":[{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3474a774-e8d5-427b-b600-4f9ae51d345b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements?parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements"],"query":[{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bbdeba5c-8738-40bf-a249-829f57ab00c0","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements?parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements"],"query":[{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b4a8fcef-b68c-45d8-b8d7-8054f8df9ce9"},{"name":"Measurement Get Aggregated Measurements","id":"a08ec57d-4bdc-4a94-b8a7-c871b346fdc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=1&startTime=2026-01-14T08:45:00Z&endTime=2026-09-14T08:45:00Z","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","measurements","aggregated"],"host":["/"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"1"},{"disabled":true,"key":"parameterIds","value":"4857"},{"key":"startTime","value":"2026-01-14T08:45:00Z"},{"key":"endTime","value":"2026-09-14T08:45:00Z"},{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"}],"variable":[{"type":"any","value":"15","key":"siteId"}]}},"response":[{"id":"783c8c91-7c4c-45ae-a555-5e69a499255b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements","aggregated"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"parameterId\": 3135,\n      \"lowerLimit\": 7840.527617059139,\n      \"upperLimit\": 7055.193169376966,\n      \"id\": 6450,\n      \"startTime\": \"2008-11-15T05:48:37.550Z\",\n      \"endTime\": \"1987-12-10T12:33:35.228Z\",\n      \"week\": 9896,\n      \"year\": 8694,\n      \"value\": 4744.783366624341,\n      \"min\": 3343.0600691383816,\n      \"max\": 2408.628019757697,\n      \"sum\": 670.4383745258813,\n      \"average\": 1458.1739848921327,\n      \"diff\": 5786.459226357659\n    },\n    {\n      \"parameterId\": 337,\n      \"lowerLimit\": 9409.612443695667,\n      \"upperLimit\": 7982.733353071531,\n      \"id\": 3848,\n      \"startTime\": \"1974-05-04T11:37:17.894Z\",\n      \"endTime\": \"2004-03-13T01:19:36.689Z\",\n      \"week\": 3789,\n      \"year\": 9265,\n      \"value\": 4541.367033502861,\n      \"min\": 2268.888766381587,\n      \"max\": 6467.727356137363,\n      \"sum\": 2223.631328621194,\n      \"average\": 6064.852531442742,\n      \"diff\": 9823.571359688245\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 6588,\n    \"pageSize\": 7940,\n    \"currentPage\": 6285,\n    \"hasPrevious\": false,\n    \"hasNext\": false,\n    \"totalPages\": 2637\n  }\n}"},{"id":"3ef719f1-00c5-4cbc-8396-c7a2b535be5a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements","aggregated"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"d5023b91-0528-42eb-9f0b-28b1eb84fabc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements","aggregated"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"5a440bfd-c7bb-4b1a-9ba5-11af13fa3078","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements","aggregated"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"58160311-cc27-4a07-9f64-28bdf4861f3c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/measurements/aggregated?resolution=Hourly&parameterIds=4857&startTime=1974-10-01T10:48:35.907Z&endTime=1974-10-01T10:48:35.907Z&PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","measurements","aggregated"],"query":[{"key":"resolution","value":"Hourly"},{"key":"parameterIds","value":"4857"},{"key":"startTime","value":"1974-10-01T10:48:35.907Z"},{"key":"endTime","value":"1974-10-01T10:48:35.907Z"},{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a08ec57d-4bdc-4a94-b8a7-c871b346fdc4"}],"id":"3ae7b676-181c-4140-bd81-e71ea87742f8","_postman_id":"3ae7b676-181c-4140-bd81-e71ea87742f8","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"MeasurementType","item":[{"name":"Measurement Type Get Measurement Types","id":"4907ba5e-89f1-4b95-ab23-061547b883fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/measurement-types","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","measurement-types"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"8d56bc19-94c4-4580-87eb-34b074c56058","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/measurement-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"measurementTypeId\": 107,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"scale\": 3251.9520299398887,\n    \"symbol\": \"string\",\n    \"label\": \"string\",\n    \"isNumeric\": true,\n    \"hourlyGrouping\": \"string\",\n    \"grouping\": \"string\"\n  },\n  {\n    \"measurementTypeId\": 519,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"scale\": 6728.425997207661,\n    \"symbol\": \"string\",\n    \"label\": \"string\",\n    \"isNumeric\": true,\n    \"hourlyGrouping\": \"string\",\n    \"grouping\": \"string\"\n  }\n]"},{"id":"30644f27-70f4-4587-b36b-f279e4da4c3d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/measurement-types"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8ab1cb82-2e25-45f8-8316-557546a15843","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/measurement-types"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a51350cf-a17f-4125-b263-728c0243b266","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/measurement-types"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4907ba5e-89f1-4b95-ab23-061547b883fd"},{"name":"Measurement Type Get Measurement Type By Id","id":"c82be060-d7d2-487f-9c1c-37e5fcddea2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/measurement-types/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","measurement-types",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1","key":"id"}]}},"response":[{"id":"a5529156-ef46-4130-94ba-cf06ea394da6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/measurement-types/:id","host":["/"],"path":["api","v1","measurement-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"measurementTypeId\": 8361,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"scale\": 1937.6175855872634,\n  \"symbol\": \"string\",\n  \"label\": \"string\",\n  \"isNumeric\": false,\n  \"hourlyGrouping\": \"string\",\n  \"grouping\": \"string\"\n}"},{"id":"e10f6850-0691-417a-a71a-290087d9c01e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/measurement-types/:id","host":["/"],"path":["api","v1","measurement-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2a78355c-51ac-4e86-b3bf-76300e7d2fbf","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/measurement-types/:id","host":["/"],"path":["api","v1","measurement-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"33e08665-f7d6-4d05-ab5a-cebd8ed91b71","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/measurement-types/:id","host":["/"],"path":["api","v1","measurement-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8c0bd7e9-d935-4a94-9c94-de238048d160","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/measurement-types/:id","host":["/"],"path":["api","v1","measurement-types",":id"],"variable":[{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c82be060-d7d2-487f-9c1c-37e5fcddea2d"}],"id":"99235bfa-400d-4992-9fd3-bcab4c96bf1f","_postman_id":"99235bfa-400d-4992-9fd3-bcab4c96bf1f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"MeterCategory","item":[{"name":"Meter Category Get All Categories","id":"a3240dbd-42fa-4b1c-b9cd-e2bf94cbfeba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/meter-categories","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","meter-categories"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"34bc2164-05ff-44df-865f-c26bc84d65fc","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/meter-categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"value\": 2622,\n    \"name\": \"string\",\n    \"displayName\": \"string\",\n    \"description\": \"string\",\n    \"subCategories\": [\n      {\n        \"value\": 7675,\n        \"name\": \"string\",\n        \"displayName\": \"string\",\n        \"description\": \"string\"\n      },\n      {\n        \"value\": 3772,\n        \"name\": \"string\",\n        \"displayName\": \"string\",\n        \"description\": \"string\"\n      }\n    ]\n  },\n  {\n    \"value\": 5660,\n    \"name\": \"string\",\n    \"displayName\": \"string\",\n    \"description\": \"string\",\n    \"subCategories\": [\n      {\n        \"value\": 4889,\n        \"name\": \"string\",\n        \"displayName\": \"string\",\n        \"description\": \"string\"\n      },\n      {\n        \"value\": 489,\n        \"name\": \"string\",\n        \"displayName\": \"string\",\n        \"description\": \"string\"\n      }\n    ]\n  }\n]"},{"id":"d80a1689-4346-442c-8c8c-4357683db652","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/meter-categories"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"00d74f4b-a5a5-4cbf-b6d1-d846ba135576","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/meter-categories"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"65f565ab-aa83-4d97-a50e-e4f3f111bc74","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/meter-categories"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a3240dbd-42fa-4b1c-b9cd-e2bf94cbfeba"}],"id":"6a2a7d52-78ca-42d5-acfb-78b6e267f139","_postman_id":"6a2a7d52-78ca-42d5-acfb-78b6e267f139","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"MeterStructure","item":[{"name":"Meter Structure Get Meter Structure","id":"8690ec2c-943b-4ba3-bf0b-d5d99fdcb834","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meter-structure/structure","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meter-structure","structure"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"ed5bc1ec-39f9-45fb-904f-123b2ac810de","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/structure","host":["/"],"path":["api","v1","sites",":siteId","meter-structure","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"siteId\": 8924,\n  \"building\": {\n    \"grid\": [\n      {\n        \"id\": 35,\n        \"parentId\": 566,\n        \"name\": \"string\",\n        \"type\": \"string\",\n        \"description\": \"string\",\n        \"notes\": \"string\",\n        \"config\": {\n          \"symbol\": \"string\"\n        },\n        \"meters\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/MeterStructureNode detected>\"\n          }\n        ],\n        \"meterCategoryDistribution\": {\n          \"fromDate\": \"2005-06-06\",\n          \"distributions\": {\n            \"HVAC\": {\n              \"HvacGeneral\": 2963.1453919358287,\n              \"HeatExchangers\": 2410.7965025545686,\n              \"SpaceCooling\": 9678.413081664936,\n              \"Ventilation\": 6755.676187679829,\n              \"PumpsAndCirculation\": 7375.4473723183555,\n              \"HeatRecovery\": 1577.778217190966,\n              \"HeatPumps\": 2059.872930223643,\n              \"AuxiliaryVentilation\": 5476.118777057719,\n              \"SpaceHeating\": 3084.94311893623,\n              \"UnderFloorSpaceHeating\": 4112.8449493665075,\n              \"HotAirPort\": 2824.7856225144187,\n              \"LightingGeneral\": 467.1626554738517,\n              \"IndoorLighting\": 2699.0347691056418,\n              \"OutdoorLighting\": 3129.785873433173,\n              \"EmergencyLighting\": 4889.625465424303,\n              \"DhwGeneral\": 546.9115725545848,\n              \"WaterHeating\": 2155.438138772532,\n              \"DhwCirculation\": 6796.7984097781155,\n              \"PlugLoadsGeneral\": 4210.274039408592,\n              \"OfficeEquipment\": 9056.68906205057,\n              \"ItServers\": 5786.158033810562,\n              \"ProcessLoadsGeneral\": 9996.16647069566,\n              \"KitchenCatering\": 7413.791762588579,\n              \"LabMedical\": 4814.065796056965,\n              \"Datacenter\": 4177.093048618368,\n              \"RetailEquipment\": 1387.4773712922183,\n              \"RefrigerationGeneral\": 1653.833911636573,\n              \"ColdStorage\": 1840.6727754924357,\n              \"ProcessCooling\": 7327.047259958042,\n              \"PlugIn\": 5157.717944187075,\n              \"TransportGeneral\": 9271.398163953712,\n              \"Elevators\": 7986.682990930612,\n              \"Escalators\": 6328.832690405022,\n              \"EvChargingGeneral\": 5019.46143556838,\n              \"AcCharging\": 6517.8575819658645,\n              \"DcFastCharging\": 5406.137490234686,\n              \"OutdoorSystemsGeneral\": 8908.036332755071,\n              \"SnowMelting\": 3678.5194654801057,\n              \"Irrigation\": 2063.181124274891,\n              \"SiteEquipment\": 3180.482773055051,\n              \"OtherGeneral\": 7518.385764060383,\n              \"EmergencySystems\": 9215.715394217897,\n              \"Unclassified\": 4692.606394342751\n            },\n            \"Lighting\": {\n              \"HvacGeneral\": 6629.671521944,\n              \"HeatExchangers\": 9150.345574314966,\n              \"SpaceCooling\": 2700.8463021489447,\n              \"Ventilation\": 3855.300648311861,\n              \"PumpsAndCirculation\": 1149.1829741524896,\n              \"HeatRecovery\": 3066.9969115836348,\n              \"HeatPumps\": 4551.1938990857325,\n              \"AuxiliaryVentilation\": 8338.01271949119,\n              \"SpaceHeating\": 8384.224882593879,\n              \"UnderFloorSpaceHeating\": 7438.894040586055,\n              \"HotAirPort\": 9061.562174080913,\n              \"LightingGeneral\": 7724.993160357861,\n              \"IndoorLighting\": 1092.404508753142,\n              \"OutdoorLighting\": 296.1437450793536,\n              \"EmergencyLighting\": 2564.701903871782,\n              \"DhwGeneral\": 5866.077854585341,\n              \"WaterHeating\": 2359.6764171445116,\n              \"DhwCirculation\": 3372.874131563233,\n              \"PlugLoadsGeneral\": 9462.879624184876,\n              \"OfficeEquipment\": 6075.117554880756,\n              \"ItServers\": 3106.4622568595255,\n              \"ProcessLoadsGeneral\": 9757.220029161548,\n              \"KitchenCatering\": 5443.460737671433,\n              \"LabMedical\": 4868.296131141569,\n              \"Datacenter\": 7962.424207535055,\n              \"RetailEquipment\": 3327.557319480261,\n              \"RefrigerationGeneral\": 5550.960663344126,\n              \"ColdStorage\": 6637.004244011455,\n              \"ProcessCooling\": 8680.37758245771,\n              \"PlugIn\": 3650.946341439052,\n              \"TransportGeneral\": 4090.4542937911083,\n              \"Elevators\": 1394.8854167467227,\n              \"Escalators\": 5084.6726923842,\n              \"EvChargingGeneral\": 5351.252863164628,\n              \"AcCharging\": 1159.3088651907647,\n              \"DcFastCharging\": 2537.629115775133,\n              \"OutdoorSystemsGeneral\": 8943.293149220677,\n              \"SnowMelting\": 3184.6450250237244,\n              \"Irrigation\": 3908.357571705874,\n              \"SiteEquipment\": 7374.0445811976915,\n              \"OtherGeneral\": 7829.530521837873,\n              \"EmergencySystems\": 3013.1831513109473,\n              \"Unclassified\": 7980.412638311432\n            },\n            \"Dhw\": {\n              \"HvacGeneral\": 4463.615629256319,\n              \"HeatExchangers\": 8951.35612268268,\n              \"SpaceCooling\": 2715.927501823623,\n              \"Ventilation\": 7250.358304899704,\n              \"PumpsAndCirculation\": 502.7084612964727,\n              \"HeatRecovery\": 491.2163982468054,\n              \"HeatPumps\": 6305.723749296357,\n              \"AuxiliaryVentilation\": 8473.983868664103,\n              \"SpaceHeating\": 2404.250397291523,\n              \"UnderFloorSpaceHeating\": 6758.4858002265255,\n              \"HotAirPort\": 437.80286709450775,\n              \"LightingGeneral\": 9291.559495334972,\n              \"IndoorLighting\": 4598.8835234778635,\n              \"OutdoorLighting\": 945.0224206235314,\n              \"EmergencyLighting\": 1792.0787344516987,\n              \"DhwGeneral\": 6932.664130509156,\n              \"WaterHeating\": 2838.854291999653,\n              \"DhwCirculation\": 4960.074714001014,\n              \"PlugLoadsGeneral\": 1674.0015067779557,\n              \"OfficeEquipment\": 9737.97872504649,\n              \"ItServers\": 6373.208814572055,\n              \"ProcessLoadsGeneral\": 2123.549042296551,\n              \"KitchenCatering\": 5844.292030325173,\n              \"LabMedical\": 7766.3288539846635,\n              \"Datacenter\": 1271.3661536936515,\n              \"RetailEquipment\": 2056.931073336834,\n              \"RefrigerationGeneral\": 5744.642319148065,\n              \"ColdStorage\": 2010.2153677708402,\n              \"ProcessCooling\": 4025.2079707774715,\n              \"PlugIn\": 5131.345360658242,\n              \"TransportGeneral\": 3559.1561857100087,\n              \"Elevators\": 9148.797738427736,\n              \"Escalators\": 8284.990305022493,\n              \"EvChargingGeneral\": 5724.485564245269,\n              \"AcCharging\": 6118.223541753545,\n              \"DcFastCharging\": 9120.719859965237,\n              \"OutdoorSystemsGeneral\": 4358.756226081082,\n              \"SnowMelting\": 865.2907386502684,\n              \"Irrigation\": 9920.170991982164,\n              \"SiteEquipment\": 3816.9517125729512,\n              \"OtherGeneral\": 4776.817101995761,\n              \"EmergencySystems\": 652.7237977050726,\n              \"Unclassified\": 639.4627505168282\n            },\n            \"PlugLoads\": {\n              \"HvacGeneral\": 5735.019846364229,\n              \"HeatExchangers\": 5015.061735364517,\n              \"SpaceCooling\": 4904.092705171943,\n              \"Ventilation\": 3135.2640658854257,\n              \"PumpsAndCirculation\": 203.53598813013463,\n              \"HeatRecovery\": 2793.2013774723296,\n              \"HeatPumps\": 2765.660609816203,\n              \"AuxiliaryVentilation\": 968.3718827184417,\n              \"SpaceHeating\": 5811.66814755621,\n              \"UnderFloorSpaceHeating\": 506.941953612221,\n              \"HotAirPort\": 4711.754662241603,\n              \"LightingGeneral\": 8225.91015977465,\n              \"IndoorLighting\": 6503.240416196796,\n              \"OutdoorLighting\": 3664.627033708228,\n              \"EmergencyLighting\": 5020.208420547201,\n              \"DhwGeneral\": 4405.894016203471,\n              \"WaterHeating\": 2810.047060889016,\n              \"DhwCirculation\": 9758.393634229305,\n              \"PlugLoadsGeneral\": 6781.937258718984,\n              \"OfficeEquipment\": 7048.049489205859,\n              \"ItServers\": 3391.5578976217107,\n              \"ProcessLoadsGeneral\": 4197.536254282985,\n              \"KitchenCatering\": 9870.681919778914,\n              \"LabMedical\": 6287.393075752503,\n              \"Datacenter\": 4722.704102773736,\n              \"RetailEquipment\": 3847.2633680874633,\n              \"RefrigerationGeneral\": 1680.0874742916405,\n              \"ColdStorage\": 969.3560878789898,\n              \"ProcessCooling\": 840.5530239814851,\n              \"PlugIn\": 6280.855426132998,\n              \"TransportGeneral\": 4840.243256488037,\n              \"Elevators\": 4026.1806030951066,\n              \"Escalators\": 2050.108076627657,\n              \"EvChargingGeneral\": 9788.804429449587,\n              \"AcCharging\": 9990.786812810631,\n              \"DcFastCharging\": 6859.104135021137,\n              \"OutdoorSystemsGeneral\": 5335.447052864027,\n              \"SnowMelting\": 581.6335595416988,\n              \"Irrigation\": 945.9269652755343,\n              \"SiteEquipment\": 9669.652416140792,\n              \"OtherGeneral\": 2226.130628336016,\n              \"EmergencySystems\": 2071.3321236409943,\n              \"Unclassified\": 5808.883111176606\n            },\n            \"ProcessLoads\": {\n              \"HvacGeneral\": 9448.679075407234,\n              \"HeatExchangers\": 5461.207885241642,\n              \"SpaceCooling\": 9518.562136084705,\n              \"Ventilation\": 2772.133773981285,\n              \"PumpsAndCirculation\": 8326.532274324412,\n              \"HeatRecovery\": 2715.454170141389,\n              \"HeatPumps\": 1443.3078404239752,\n              \"AuxiliaryVentilation\": 1816.3897605422253,\n              \"SpaceHeating\": 4761.971530474918,\n              \"UnderFloorSpaceHeating\": 1196.9074053511952,\n              \"HotAirPort\": 7003.646686262128,\n              \"LightingGeneral\": 4092.320243466474,\n              \"IndoorLighting\": 2358.8228598607875,\n              \"OutdoorLighting\": 8743.488155014853,\n              \"EmergencyLighting\": 8772.41679675843,\n              \"DhwGeneral\": 2788.4364246074365,\n              \"WaterHeating\": 9065.66990404964,\n              \"DhwCirculation\": 5385.110244369791,\n              \"PlugLoadsGeneral\": 1680.5141444047945,\n              \"OfficeEquipment\": 4507.78295698693,\n              \"ItServers\": 9578.980749159442,\n              \"ProcessLoadsGeneral\": 8893.1335030645,\n              \"KitchenCatering\": 3707.0017020045907,\n              \"LabMedical\": 7094.884276189116,\n              \"Datacenter\": 939.5181550137211,\n              \"RetailEquipment\": 3342.2504957058586,\n              \"RefrigerationGeneral\": 8209.093377967602,\n              \"ColdStorage\": 2424.0387202281945,\n              \"ProcessCooling\": 2180.5363127951337,\n              \"PlugIn\": 254.82851316199762,\n              \"TransportGeneral\": 1644.9778180064388,\n              \"Elevators\": 876.5862560723269,\n              \"Escalators\": 5505.613673973356,\n              \"EvChargingGeneral\": 346.17471855924674,\n              \"AcCharging\": 2225.2658064049856,\n              \"DcFastCharging\": 3202.5309677131218,\n              \"OutdoorSystemsGeneral\": 6879.404747717044,\n              \"SnowMelting\": 28.096992211759098,\n              \"Irrigation\": 6534.238249429767,\n              \"SiteEquipment\": 5513.326434659895,\n              \"OtherGeneral\": 3342.585766899464,\n              \"EmergencySystems\": 1993.36032472071,\n              \"Unclassified\": 4415.3791899711405\n            },\n            \"Refrigeration\": {\n              \"HvacGeneral\": 775.7317176164946,\n              \"HeatExchangers\": 8188.415009184213,\n              \"SpaceCooling\": 6483.365084647743,\n              \"Ventilation\": 7983.106856836642,\n              \"PumpsAndCirculation\": 3919.498177269687,\n              \"HeatRecovery\": 4997.859210889206,\n              \"HeatPumps\": 6935.417232319407,\n              \"AuxiliaryVentilation\": 8393.869670354541,\n              \"SpaceHeating\": 4789.663933397861,\n              \"UnderFloorSpaceHeating\": 9510.569083809523,\n              \"HotAirPort\": 6699.948840817414,\n              \"LightingGeneral\": 9949.168122775567,\n              \"IndoorLighting\": 6978.517058425599,\n              \"OutdoorLighting\": 2650.659590893674,\n              \"EmergencyLighting\": 527.9518326916333,\n              \"DhwGeneral\": 7218.100135686655,\n              \"WaterHeating\": 200.44813797434725,\n              \"DhwCirculation\": 1872.8308353398004,\n              \"PlugLoadsGeneral\": 8129.8703287635335,\n              \"OfficeEquipment\": 146.02251128223554,\n              \"ItServers\": 8195.93120014441,\n              \"ProcessLoadsGeneral\": 6836.452536838265,\n              \"KitchenCatering\": 1731.3859503642193,\n              \"LabMedical\": 9486.960559591618,\n              \"Datacenter\": 1094.843394105991,\n              \"RetailEquipment\": 9885.73489364634,\n              \"RefrigerationGeneral\": 1333.581955523233,\n              \"ColdStorage\": 4027.8043679845155,\n              \"ProcessCooling\": 5878.394921938663,\n              \"PlugIn\": 3243.281077782063,\n              \"TransportGeneral\": 8441.826161685241,\n              \"Elevators\": 7905.035038308708,\n              \"Escalators\": 3360.911141427929,\n              \"EvChargingGeneral\": 6788.366681164224,\n              \"AcCharging\": 4512.971123992342,\n              \"DcFastCharging\": 4851.930870710617,\n              \"OutdoorSystemsGeneral\": 2718.353046436568,\n              \"SnowMelting\": 2887.0965550586902,\n              \"Irrigation\": 1730.732737843601,\n              \"SiteEquipment\": 3122.5282121612217,\n              \"OtherGeneral\": 8409.885677075004,\n              \"EmergencySystems\": 5586.065774276445,\n              \"Unclassified\": 9666.382277057806\n            },\n            \"Transport\": {\n              \"HvacGeneral\": 7373.166717224109,\n              \"HeatExchangers\": 5544.9330139164485,\n              \"SpaceCooling\": 7110.516017315956,\n              \"Ventilation\": 1801.1839441830423,\n              \"PumpsAndCirculation\": 5789.4144533082235,\n              \"HeatRecovery\": 3261.0181243707825,\n              \"HeatPumps\": 9848.657447967591,\n              \"AuxiliaryVentilation\": 5673.285993957215,\n              \"SpaceHeating\": 5289.473426768072,\n              \"UnderFloorSpaceHeating\": 9877.66844588641,\n              \"HotAirPort\": 9575.68275982076,\n              \"LightingGeneral\": 9054.186433925479,\n              \"IndoorLighting\": 9847.755895379922,\n              \"OutdoorLighting\": 2760.4561509677405,\n              \"EmergencyLighting\": 3411.8655435043843,\n              \"DhwGeneral\": 3986.8612290018036,\n              \"WaterHeating\": 44.22665829350025,\n              \"DhwCirculation\": 6296.077391129637,\n              \"PlugLoadsGeneral\": 6109.184780199721,\n              \"OfficeEquipment\": 6272.319299614093,\n              \"ItServers\": 6293.604563276312,\n              \"ProcessLoadsGeneral\": 9873.742633547601,\n              \"KitchenCatering\": 9009.692523839052,\n              \"LabMedical\": 6124.1253614722345,\n              \"Datacenter\": 8120.586701146457,\n              \"RetailEquipment\": 8317.48710176629,\n              \"RefrigerationGeneral\": 8055.131388524505,\n              \"ColdStorage\": 3862.472789986415,\n              \"ProcessCooling\": 6785.597965199448,\n              \"PlugIn\": 2989.821289618022,\n              \"TransportGeneral\": 8209.087309472094,\n              \"Elevators\": 2570.8802299659706,\n              \"Escalators\": 7199.98583659546,\n              \"EvChargingGeneral\": 883.7051948805441,\n              \"AcCharging\": 5570.60569935284,\n              \"DcFastCharging\": 6941.94061571006,\n              \"OutdoorSystemsGeneral\": 7594.149670799846,\n              \"SnowMelting\": 2434.81158730978,\n              \"Irrigation\": 7554.57146076745,\n              \"SiteEquipment\": 6760.688253246023,\n              \"OtherGeneral\": 2821.1235164048753,\n              \"EmergencySystems\": 3950.744687633907,\n              \"Unclassified\": 4062.0970890221497\n            },\n            \"EvCharging\": {\n              \"HvacGeneral\": 3723.640581103902,\n              \"HeatExchangers\": 9243.615698196661,\n              \"SpaceCooling\": 6172.872965880354,\n              \"Ventilation\": 6077.6923395655995,\n              \"PumpsAndCirculation\": 7772.201981506865,\n              \"HeatRecovery\": 616.9684895684546,\n              \"HeatPumps\": 256.0973643360676,\n              \"AuxiliaryVentilation\": 447.63656604301264,\n              \"SpaceHeating\": 5175.097015495986,\n              \"UnderFloorSpaceHeating\": 8549.945114741158,\n              \"HotAirPort\": 1339.4140919557774,\n              \"LightingGeneral\": 3429.774796827598,\n              \"IndoorLighting\": 9088.076671940073,\n              \"OutdoorLighting\": 5358.253817115348,\n              \"EmergencyLighting\": 8093.7251355172175,\n              \"DhwGeneral\": 7727.384539347697,\n              \"WaterHeating\": 8877.454067218494,\n              \"DhwCirculation\": 176.59555677566053,\n              \"PlugLoadsGeneral\": 879.1523509279631,\n              \"OfficeEquipment\": 3749.5134694259777,\n              \"ItServers\": 3464.5510616340293,\n              \"ProcessLoadsGeneral\": 833.8949019437769,\n              \"KitchenCatering\": 4220.02773920428,\n              \"LabMedical\": 728.3879863138809,\n              \"Datacenter\": 9903.307441266548,\n              \"RetailEquipment\": 8349.272324138166,\n              \"RefrigerationGeneral\": 8937.543870005291,\n              \"ColdStorage\": 9693.145998908229,\n              \"ProcessCooling\": 3937.135761243875,\n              \"PlugIn\": 6393.992980073697,\n              \"TransportGeneral\": 788.6818150096908,\n              \"Elevators\": 7022.111131727977,\n              \"Escalators\": 7690.302344287552,\n              \"EvChargingGeneral\": 226.96092062200134,\n              \"AcCharging\": 1747.2378899249795,\n              \"DcFastCharging\": 1223.0757095036538,\n              \"OutdoorSystemsGeneral\": 7506.393648857926,\n              \"SnowMelting\": 7094.4921543504715,\n              \"Irrigation\": 1441.8582936407277,\n              \"SiteEquipment\": 7238.1665002679665,\n              \"OtherGeneral\": 1542.0381325760445,\n              \"EmergencySystems\": 2730.745454898038,\n              \"Unclassified\": 9398.44485519354\n            },\n            \"OutdoorSystems\": {\n              \"HvacGeneral\": 4320.752595972135,\n              \"HeatExchangers\": 2056.4227386301613,\n              \"SpaceCooling\": 8685.914420035142,\n              \"Ventilation\": 7688.98085647485,\n              \"PumpsAndCirculation\": 8206.309564462124,\n              \"HeatRecovery\": 2688.5123487622022,\n              \"HeatPumps\": 4349.050594107919,\n              \"AuxiliaryVentilation\": 9671.56181406409,\n              \"SpaceHeating\": 1779.301424334123,\n              \"UnderFloorSpaceHeating\": 3120.978373502792,\n              \"HotAirPort\": 8657.06790429013,\n              \"LightingGeneral\": 2663.9505643554485,\n              \"IndoorLighting\": 1768.434915975714,\n              \"OutdoorLighting\": 7550.757884504095,\n              \"EmergencyLighting\": 5154.931538887719,\n              \"DhwGeneral\": 8650.81254642717,\n              \"WaterHeating\": 4149.814105591925,\n              \"DhwCirculation\": 7177.855651115839,\n              \"PlugLoadsGeneral\": 305.16051833326287,\n              \"OfficeEquipment\": 9193.654896947894,\n              \"ItServers\": 7511.910565703141,\n              \"ProcessLoadsGeneral\": 23.988591502137613,\n              \"KitchenCatering\": 3010.0136402271137,\n              \"LabMedical\": 8894.515059768139,\n              \"Datacenter\": 3024.810309364947,\n              \"RetailEquipment\": 1836.5009855930991,\n              \"RefrigerationGeneral\": 204.03914645500177,\n              \"ColdStorage\": 5807.607670583384,\n              \"ProcessCooling\": 3549.259543002663,\n              \"PlugIn\": 984.5063735396286,\n              \"TransportGeneral\": 3314.156727807687,\n              \"Elevators\": 5764.670392687099,\n              \"Escalators\": 5421.819860729993,\n              \"EvChargingGeneral\": 9768.740487774623,\n              \"AcCharging\": 1295.7515800089282,\n              \"DcFastCharging\": 8967.541937422338,\n              \"OutdoorSystemsGeneral\": 9316.38138564106,\n              \"SnowMelting\": 1712.8464550825129,\n              \"Irrigation\": 3813.141074919952,\n              \"SiteEquipment\": 4816.515115085563,\n              \"OtherGeneral\": 5465.605711818022,\n              \"EmergencySystems\": 3533.40422196319,\n              \"Unclassified\": 151.93098703903507\n            },\n            \"Other\": {\n              \"HvacGeneral\": 9696.394586490573,\n              \"HeatExchangers\": 5710.656071822453,\n              \"SpaceCooling\": 7045.3306433883345,\n              \"Ventilation\": 175.0686620944575,\n              \"PumpsAndCirculation\": 927.0225702962964,\n              \"HeatRecovery\": 3948.9968174971145,\n              \"HeatPumps\": 3341.7946953487053,\n              \"AuxiliaryVentilation\": 5331.612301374867,\n              \"SpaceHeating\": 3688.464503839446,\n              \"UnderFloorSpaceHeating\": 1786.659784606044,\n              \"HotAirPort\": 2006.7202738632961,\n              \"LightingGeneral\": 4045.847381757115,\n              \"IndoorLighting\": 3784.9911869305774,\n              \"OutdoorLighting\": 8455.072110574984,\n              \"EmergencyLighting\": 1843.7702756554074,\n              \"DhwGeneral\": 6175.2482216913895,\n              \"WaterHeating\": 8843.074114984365,\n              \"DhwCirculation\": 4502.266233833472,\n              \"PlugLoadsGeneral\": 6719.702831819903,\n              \"OfficeEquipment\": 2370.135160795479,\n              \"ItServers\": 5070.248127132384,\n              \"ProcessLoadsGeneral\": 9636.920533816123,\n              \"KitchenCatering\": 2169.549256649279,\n              \"LabMedical\": 3803.9550314322823,\n              \"Datacenter\": 6588.0531056123455,\n              \"RetailEquipment\": 5048.8385451573085,\n              \"RefrigerationGeneral\": 1728.6089334911715,\n              \"ColdStorage\": 7260.788720085471,\n              \"ProcessCooling\": 4996.208976311307,\n              \"PlugIn\": 4171.810449003048,\n              \"TransportGeneral\": 1262.6487135180175,\n              \"Elevators\": 8602.217312472783,\n              \"Escalators\": 3090.0135976574084,\n              \"EvChargingGeneral\": 2408.2166439729135,\n              \"AcCharging\": 2332.691238900666,\n              \"DcFastCharging\": 4949.037077843621,\n              \"OutdoorSystemsGeneral\": 1296.0346176226544,\n              \"SnowMelting\": 8188.2646358064485,\n              \"Irrigation\": 8181.715033504888,\n              \"SiteEquipment\": 308.4685606260051,\n              \"OtherGeneral\": 6101.490104143163,\n              \"EmergencySystems\": 5222.215946231428,\n              \"Unclassified\": 7825.7166774464995\n            },\n            \"Unallocated\": {\n              \"HvacGeneral\": 4113.9310359484525,\n              \"HeatExchangers\": 3057.3102374833215,\n              \"SpaceCooling\": 4503.112574328141,\n              \"Ventilation\": 3339.673476710585,\n              \"PumpsAndCirculation\": 7641.960319348671,\n              \"HeatRecovery\": 2371.541152550467,\n              \"HeatPumps\": 8947.361367610101,\n              \"AuxiliaryVentilation\": 4143.217792146074,\n              \"SpaceHeating\": 4657.566553346782,\n              \"UnderFloorSpaceHeating\": 5998.8176608613085,\n              \"HotAirPort\": 9455.042031089284,\n              \"LightingGeneral\": 1800.109113949293,\n              \"IndoorLighting\": 1551.6496292328252,\n              \"OutdoorLighting\": 6839.201179916339,\n              \"EmergencyLighting\": 2454.7899357144165,\n              \"DhwGeneral\": 692.199079161342,\n              \"WaterHeating\": 1465.569232596584,\n              \"DhwCirculation\": 2035.5249446703795,\n              \"PlugLoadsGeneral\": 80.10992752764511,\n              \"OfficeEquipment\": 1189.3490886375346,\n              \"ItServers\": 1116.4846098731384,\n              \"ProcessLoadsGeneral\": 3833.78140562777,\n              \"KitchenCatering\": 4866.8535651259745,\n              \"LabMedical\": 5510.849441836041,\n              \"Datacenter\": 7780.750586410037,\n              \"RetailEquipment\": 3429.8136982025285,\n              \"RefrigerationGeneral\": 1044.4252572453872,\n              \"ColdStorage\": 3612.3354784380026,\n              \"ProcessCooling\": 5996.481501974374,\n              \"PlugIn\": 3365.0569653901007,\n              \"TransportGeneral\": 3246.4769616421863,\n              \"Elevators\": 884.7673754582353,\n              \"Escalators\": 9067.457980679337,\n              \"EvChargingGeneral\": 7509.81438780554,\n              \"AcCharging\": 7289.3847118864,\n              \"DcFastCharging\": 5527.50057559706,\n              \"OutdoorSystemsGeneral\": 8577.905289356751,\n              \"SnowMelting\": 960.6025146565345,\n              \"Irrigation\": 9414.16361695301,\n              \"SiteEquipment\": 2302.732006519128,\n              \"OtherGeneral\": 2493.049404290517,\n              \"EmergencySystems\": 2272.957392624517,\n              \"Unclassified\": 630.7557812612008\n            }\n          },\n          \"comment\": \"string\"\n        },\n        \"meterTenantDistribution\": {\n          \"fromDate\": \"1952-04-03\",\n          \"distributions\": [\n            {\n              \"tenant\": {\n                \"id\": 8816,\n                \"siteId\": 1465,\n                \"name\": \"string\",\n                \"shortname\": \"string\",\n                \"description\": \"string\",\n                \"isArchived\": false,\n                \"isDefault\": false,\n                \"createdAt\": \"2005-10-15T11:20:27.641Z\",\n                \"lastUpdatedAt\": \"1987-05-30T06:42:39.163Z\",\n                \"notes\": \"string\",\n                \"contactPerson\": \"string\",\n                \"contactPhone\": \"string\",\n                \"contactEmail\": \"string\",\n                \"invoiceEmail\": \"string\",\n                \"invoicePoReference\": \"string\",\n                \"otherInvoiceInformation\": \"string\",\n                \"configuration\": {\n                  \"organizationNumber\": \"string\"\n                }\n              },\n              \"value\": 1131.5298542401586\n            }\n          ],\n          \"comment\": \"string\"\n        }\n      }\n    ],\n    \"districtHeating\": [\n      {\n        \"id\": 5118,\n        \"parentId\": 6609,\n        \"name\": \"string\",\n        \"type\": \"string\",\n        \"description\": \"string\",\n        \"notes\": \"string\",\n        \"config\": {\n          \"symbol\": \"string\"\n        },\n        \"meters\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/MeterStructureNode detected>\"\n          }\n        ],\n        \"meterCategoryDistribution\": {\n          \"fromDate\": \"1965-03-26\",\n          \"distributions\": {\n            \"HVAC\": {\n              \"HvacGeneral\": 542.0577706579221,\n              \"HeatExchangers\": 9523.711421298953,\n              \"SpaceCooling\": 2195.8646095848567,\n              \"Ventilation\": 4131.011928016604,\n              \"PumpsAndCirculation\": 4428.419507998114,\n              \"HeatRecovery\": 1731.279150140288,\n              \"HeatPumps\": 1949.6701160719488,\n              \"AuxiliaryVentilation\": 6685.032106533926,\n              \"SpaceHeating\": 216.90495372471918,\n              \"UnderFloorSpaceHeating\": 1400.5410831880206,\n              \"HotAirPort\": 8504.968515945246,\n              \"LightingGeneral\": 3783.3076856700254,\n              \"IndoorLighting\": 7699.774192035489,\n              \"OutdoorLighting\": 2528.194047066512,\n              \"EmergencyLighting\": 5606.449325082941,\n              \"DhwGeneral\": 9445.606538956914,\n              \"WaterHeating\": 3502.4930998459267,\n              \"DhwCirculation\": 7039.828387695852,\n              \"PlugLoadsGeneral\": 5409.447273300277,\n              \"OfficeEquipment\": 2137.8346569853447,\n              \"ItServers\": 3893.187386232804,\n              \"ProcessLoadsGeneral\": 2289.5262424381644,\n              \"KitchenCatering\": 6168.719808212338,\n              \"LabMedical\": 9890.220356324215,\n              \"Datacenter\": 2465.7929414797786,\n              \"RetailEquipment\": 7698.3452364582035,\n              \"RefrigerationGeneral\": 6891.909791885067,\n              \"ColdStorage\": 6007.686357869051,\n              \"ProcessCooling\": 4179.519536772944,\n              \"PlugIn\": 7619.193015238559,\n              \"TransportGeneral\": 7968.704496391659,\n              \"Elevators\": 9869.382211045817,\n              \"Escalators\": 9016.071749182138,\n              \"EvChargingGeneral\": 2930.242639507732,\n              \"AcCharging\": 5451.209731467066,\n              \"DcFastCharging\": 5617.927963988529,\n              \"OutdoorSystemsGeneral\": 154.88776018083738,\n              \"SnowMelting\": 9827.466801578723,\n              \"Irrigation\": 190.41428157779984,\n              \"SiteEquipment\": 9042.355183617845,\n              \"OtherGeneral\": 54.33952560879529,\n              \"EmergencySystems\": 1042.1972891928544,\n              \"Unclassified\": 8615.134457490787\n            },\n            \"Lighting\": {\n              \"HvacGeneral\": 709.1315862863157,\n              \"HeatExchangers\": 2332.99935733714,\n              \"SpaceCooling\": 1708.0222176611492,\n              \"Ventilation\": 589.2436957134106,\n              \"PumpsAndCirculation\": 6000.604256822317,\n              \"HeatRecovery\": 3698.7063337956206,\n              \"HeatPumps\": 8516.394627852775,\n              \"AuxiliaryVentilation\": 5423.5707049100365,\n              \"SpaceHeating\": 7507.534256613119,\n              \"UnderFloorSpaceHeating\": 7078.528527437573,\n              \"HotAirPort\": 7506.033681249058,\n              \"LightingGeneral\": 3084.669514166918,\n              \"IndoorLighting\": 6030.4132911333545,\n              \"OutdoorLighting\": 1538.9965007968476,\n              \"EmergencyLighting\": 716.1651749949538,\n              \"DhwGeneral\": 2460.2694366064147,\n              \"WaterHeating\": 9038.378390811766,\n              \"DhwCirculation\": 1730.0511563048503,\n              \"PlugLoadsGeneral\": 4369.797807686553,\n              \"OfficeEquipment\": 1230.5716529664612,\n              \"ItServers\": 2271.3085161317713,\n              \"ProcessLoadsGeneral\": 5032.8912150542,\n              \"KitchenCatering\": 9913.834527053828,\n              \"LabMedical\": 1139.7350240992089,\n              \"Datacenter\": 890.3598672984336,\n              \"RetailEquipment\": 7101.251918848368,\n              \"RefrigerationGeneral\": 1349.3887093353196,\n              \"ColdStorage\": 1813.488699423118,\n              \"ProcessCooling\": 3434.0094981471702,\n              \"PlugIn\": 2025.7538785849638,\n              \"TransportGeneral\": 6204.109556620206,\n              \"Elevators\": 1546.3920780584183,\n              \"Escalators\": 9543.192313672405,\n              \"EvChargingGeneral\": 5554.562073201521,\n              \"AcCharging\": 5387.632408751968,\n              \"DcFastCharging\": 1845.2453422266158,\n              \"OutdoorSystemsGeneral\": 6335.318950642623,\n              \"SnowMelting\": 1178.2805886341553,\n              \"Irrigation\": 6321.228445092599,\n              \"SiteEquipment\": 3749.4850735147756,\n              \"OtherGeneral\": 1769.719763172446,\n              \"EmergencySystems\": 5169.0299628321945,\n              \"Unclassified\": 8810.803047908836\n            },\n            \"Dhw\": {\n              \"HvacGeneral\": 3941.811673189213,\n              \"HeatExchangers\": 1697.1227674760892,\n              \"SpaceCooling\": 4606.760147313258,\n              \"Ventilation\": 6908.255910006562,\n              \"PumpsAndCirculation\": 4584.68898647423,\n              \"HeatRecovery\": 6438.259752558913,\n              \"HeatPumps\": 1821.8856357089019,\n              \"AuxiliaryVentilation\": 472.77314486442236,\n              \"SpaceHeating\": 7222.456599776952,\n              \"UnderFloorSpaceHeating\": 983.3878577270339,\n              \"HotAirPort\": 8324.687733132754,\n              \"LightingGeneral\": 6435.573392507614,\n              \"IndoorLighting\": 4621.869049879823,\n              \"OutdoorLighting\": 8721.473677533068,\n              \"EmergencyLighting\": 5946.771444061183,\n              \"DhwGeneral\": 1098.5686323100285,\n              \"WaterHeating\": 3712.9928939993138,\n              \"DhwCirculation\": 366.9789246101907,\n              \"PlugLoadsGeneral\": 2816.0013550172657,\n              \"OfficeEquipment\": 4592.4608119321665,\n              \"ItServers\": 4955.086281943577,\n              \"ProcessLoadsGeneral\": 8047.35157839052,\n              \"KitchenCatering\": 2196.677593798293,\n              \"LabMedical\": 7189.975067206469,\n              \"Datacenter\": 4429.221541234003,\n              \"RetailEquipment\": 590.0107169678726,\n              \"RefrigerationGeneral\": 7461.230059286903,\n              \"ColdStorage\": 2216.82088545899,\n              \"ProcessCooling\": 8180.7778040578705,\n              \"PlugIn\": 6995.700197709453,\n              \"TransportGeneral\": 2384.9631539193197,\n              \"Elevators\": 6779.746354555771,\n              \"Escalators\": 5325.636582013251,\n              \"EvChargingGeneral\": 1844.138999129743,\n              \"AcCharging\": 6445.373224283957,\n              \"DcFastCharging\": 7407.654677929343,\n              \"OutdoorSystemsGeneral\": 994.5135641888769,\n              \"SnowMelting\": 7689.3176990310285,\n              \"Irrigation\": 2261.168069830277,\n              \"SiteEquipment\": 6058.870531143501,\n              \"OtherGeneral\": 3841.4103571501037,\n              \"EmergencySystems\": 4249.965277954974,\n              \"Unclassified\": 3816.2144017760656\n            },\n            \"PlugLoads\": {\n              \"HvacGeneral\": 8020.2894734059855,\n              \"HeatExchangers\": 280.9806667388459,\n              \"SpaceCooling\": 526.1434245927421,\n              \"Ventilation\": 2610.0143918539743,\n              \"PumpsAndCirculation\": 7857.578777489452,\n              \"HeatRecovery\": 3775.437714243157,\n              \"HeatPumps\": 5238.199446728778,\n              \"AuxiliaryVentilation\": 581.9550507981796,\n              \"SpaceHeating\": 2607.238888927481,\n              \"UnderFloorSpaceHeating\": 6143.817841752692,\n              \"HotAirPort\": 614.8615439387406,\n              \"LightingGeneral\": 87.83245151801067,\n              \"IndoorLighting\": 6201.7005381597355,\n              \"OutdoorLighting\": 2288.195159500097,\n              \"EmergencyLighting\": 2738.244729419379,\n              \"DhwGeneral\": 4462.474532398582,\n              \"WaterHeating\": 5457.497365338581,\n              \"DhwCirculation\": 8153.088732711675,\n              \"PlugLoadsGeneral\": 2483.4299888666765,\n              \"OfficeEquipment\": 1919.6828788139842,\n              \"ItServers\": 633.0196393827237,\n              \"ProcessLoadsGeneral\": 6517.074564629675,\n              \"KitchenCatering\": 6091.628308812212,\n              \"LabMedical\": 6971.345942460716,\n              \"Datacenter\": 2443.1055391608393,\n              \"RetailEquipment\": 1358.610073106934,\n              \"RefrigerationGeneral\": 672.8492608091562,\n              \"ColdStorage\": 7972.533553803063,\n              \"ProcessCooling\": 9304.772344593577,\n              \"PlugIn\": 3749.861665046086,\n              \"TransportGeneral\": 1910.2239691845236,\n              \"Elevators\": 9080.794754639028,\n              \"Escalators\": 9250.658622461287,\n              \"EvChargingGeneral\": 8607.418258260379,\n              \"AcCharging\": 4078.6944770693844,\n              \"DcFastCharging\": 1451.8044274284803,\n              \"OutdoorSystemsGeneral\": 9244.736366471767,\n              \"SnowMelting\": 8673.256089744425,\n              \"Irrigation\": 8254.482942651824,\n              \"SiteEquipment\": 4320.362123462407,\n              \"OtherGeneral\": 1608.9625076188163,\n              \"EmergencySystems\": 9942.180827687647,\n              \"Unclassified\": 936.3603540199273\n            },\n            \"ProcessLoads\": {\n              \"HvacGeneral\": 4723.943442718559,\n              \"HeatExchangers\": 5966.0937323933495,\n              \"SpaceCooling\": 865.0610243366574,\n              \"Ventilation\": 2715.496289644128,\n              \"PumpsAndCirculation\": 1275.43848315802,\n              \"HeatRecovery\": 9406.651648463405,\n              \"HeatPumps\": 8806.150838100042,\n              \"AuxiliaryVentilation\": 3708.2924616392797,\n              \"SpaceHeating\": 9988.735494354847,\n              \"UnderFloorSpaceHeating\": 4210.991835559596,\n              \"HotAirPort\": 6115.506897038003,\n              \"LightingGeneral\": 9236.705094390181,\n              \"IndoorLighting\": 4910.811496843448,\n              \"OutdoorLighting\": 9330.085090752063,\n              \"EmergencyLighting\": 1043.7054749417273,\n              \"DhwGeneral\": 3142.9457742659174,\n              \"WaterHeating\": 2238.3032773702084,\n              \"DhwCirculation\": 7921.238721725059,\n              \"PlugLoadsGeneral\": 8351.590101212332,\n              \"OfficeEquipment\": 6493.416024532541,\n              \"ItServers\": 3536.7431358137715,\n              \"ProcessLoadsGeneral\": 3119.3107850739634,\n              \"KitchenCatering\": 3975.073280808168,\n              \"LabMedical\": 8203.980972964595,\n              \"Datacenter\": 6124.119734348843,\n              \"RetailEquipment\": 7822.077313304814,\n              \"RefrigerationGeneral\": 7098.978480649765,\n              \"ColdStorage\": 8028.804267998477,\n              \"ProcessCooling\": 8867.973768637285,\n              \"PlugIn\": 4424.802249365596,\n              \"TransportGeneral\": 3249.7299084705755,\n              \"Elevators\": 4942.614301983755,\n              \"Escalators\": 232.33217396213757,\n              \"EvChargingGeneral\": 3130.8091671357906,\n              \"AcCharging\": 4478.651806966314,\n              \"DcFastCharging\": 8903.923173115692,\n              \"OutdoorSystemsGeneral\": 6473.909744762194,\n              \"SnowMelting\": 6277.1203283532295,\n              \"Irrigation\": 8636.903531743636,\n              \"SiteEquipment\": 4538.06067558294,\n              \"OtherGeneral\": 4442.627517601778,\n              \"EmergencySystems\": 5373.098496602735,\n              \"Unclassified\": 2214.6828184427527\n            },\n            \"Refrigeration\": {\n              \"HvacGeneral\": 2203.9259823695943,\n              \"HeatExchangers\": 3861.683969483911,\n              \"SpaceCooling\": 4674.704577642814,\n              \"Ventilation\": 3270.5325364455275,\n              \"PumpsAndCirculation\": 382.3337897094725,\n              \"HeatRecovery\": 505.9496830751642,\n              \"HeatPumps\": 9616.360178929926,\n              \"AuxiliaryVentilation\": 76.81539709561092,\n              \"SpaceHeating\": 5010.24246114747,\n              \"UnderFloorSpaceHeating\": 4004.0515832340516,\n              \"HotAirPort\": 7570.602638012376,\n              \"LightingGeneral\": 1463.870539454315,\n              \"IndoorLighting\": 4446.780660317014,\n              \"OutdoorLighting\": 3218.3667787919435,\n              \"EmergencyLighting\": 9442.794539108263,\n              \"DhwGeneral\": 9173.55622637404,\n              \"WaterHeating\": 9781.995339430347,\n              \"DhwCirculation\": 5476.712953602363,\n              \"PlugLoadsGeneral\": 7850.779888630987,\n              \"OfficeEquipment\": 7678.745860186063,\n              \"ItServers\": 8011.041212797028,\n              \"ProcessLoadsGeneral\": 6729.575357305226,\n              \"KitchenCatering\": 9195.932455100743,\n              \"LabMedical\": 3052.5645082441088,\n              \"Datacenter\": 1529.8925218847637,\n              \"RetailEquipment\": 6666.682847972454,\n              \"RefrigerationGeneral\": 7342.8792819959845,\n              \"ColdStorage\": 4447.933599489,\n              \"ProcessCooling\": 6443.359809799163,\n              \"PlugIn\": 8705.728347140639,\n              \"TransportGeneral\": 336.56878095496,\n              \"Elevators\": 8007.347054759563,\n              \"Escalators\": 2633.9760723523177,\n              \"EvChargingGeneral\": 7227.603328802199,\n              \"AcCharging\": 177.04281472482597,\n              \"DcFastCharging\": 6165.570921865571,\n              \"OutdoorSystemsGeneral\": 1256.5761929531204,\n              \"SnowMelting\": 6409.131021864129,\n              \"Irrigation\": 5969.429422907088,\n              \"SiteEquipment\": 2859.3857618209186,\n              \"OtherGeneral\": 3756.8890028249966,\n              \"EmergencySystems\": 2652.741643048706,\n              \"Unclassified\": 7133.319885285958\n            },\n            \"Transport\": {\n              \"HvacGeneral\": 2074.374955193483,\n              \"HeatExchangers\": 4723.167764514864,\n              \"SpaceCooling\": 4519.5626202756985,\n              \"Ventilation\": 4570.640102510044,\n              \"PumpsAndCirculation\": 7016.948191955925,\n              \"HeatRecovery\": 5516.162133998184,\n              \"HeatPumps\": 3462.4414998905872,\n              \"AuxiliaryVentilation\": 1996.6578018864834,\n              \"SpaceHeating\": 6233.645702344477,\n              \"UnderFloorSpaceHeating\": 6002.027365835652,\n              \"HotAirPort\": 9547.141351430726,\n              \"LightingGeneral\": 493.07175974856676,\n              \"IndoorLighting\": 8338.199018479638,\n              \"OutdoorLighting\": 2876.1304965537215,\n              \"EmergencyLighting\": 3760.6579464990177,\n              \"DhwGeneral\": 2333.7506612933344,\n              \"WaterHeating\": 3688.859908928184,\n              \"DhwCirculation\": 8010.267551019366,\n              \"PlugLoadsGeneral\": 3898.7925897166465,\n              \"OfficeEquipment\": 8610.375717144201,\n              \"ItServers\": 1506.914038528362,\n              \"ProcessLoadsGeneral\": 308.39025688121467,\n              \"KitchenCatering\": 6629.40194264128,\n              \"LabMedical\": 5870.678286368207,\n              \"Datacenter\": 4087.0968591502387,\n              \"RetailEquipment\": 5838.053432473931,\n              \"RefrigerationGeneral\": 9911.625327730118,\n              \"ColdStorage\": 1322.290749125048,\n              \"ProcessCooling\": 3251.8669791893262,\n              \"PlugIn\": 3550.379289037584,\n              \"TransportGeneral\": 6279.571899921428,\n              \"Elevators\": 2145.34328887533,\n              \"Escalators\": 4945.8565157625235,\n              \"EvChargingGeneral\": 560.7146036837007,\n              \"AcCharging\": 8033.939414294738,\n              \"DcFastCharging\": 621.6092571885446,\n              \"OutdoorSystemsGeneral\": 1134.9605636973736,\n              \"SnowMelting\": 6925.644378984482,\n              \"Irrigation\": 8206.231020564703,\n              \"SiteEquipment\": 1507.685916856294,\n              \"OtherGeneral\": 6590.141853966967,\n              \"EmergencySystems\": 5083.449162898622,\n              \"Unclassified\": 3700.9213461317427\n            },\n            \"EvCharging\": {\n              \"HvacGeneral\": 4003.805930875468,\n              \"HeatExchangers\": 1228.8209622837787,\n              \"SpaceCooling\": 4878.9948443560215,\n              \"Ventilation\": 444.1245811220895,\n              \"PumpsAndCirculation\": 1783.7268041878417,\n              \"HeatRecovery\": 6566.941500992096,\n              \"HeatPumps\": 4356.206360798629,\n              \"AuxiliaryVentilation\": 3659.830152946135,\n              \"SpaceHeating\": 5381.051302750541,\n              \"UnderFloorSpaceHeating\": 5971.457282381145,\n              \"HotAirPort\": 310.7980435157875,\n              \"LightingGeneral\": 7186.050628568479,\n              \"IndoorLighting\": 8009.02301506784,\n              \"OutdoorLighting\": 2767.7856176703663,\n              \"EmergencyLighting\": 3423.9656625079706,\n              \"DhwGeneral\": 109.38308987139544,\n              \"WaterHeating\": 5265.50529276899,\n              \"DhwCirculation\": 7227.260832337101,\n              \"PlugLoadsGeneral\": 6553.765326651262,\n              \"OfficeEquipment\": 6449.746437149848,\n              \"ItServers\": 1827.6636907264865,\n              \"ProcessLoadsGeneral\": 1878.93623482301,\n              \"KitchenCatering\": 2732.7666920049396,\n              \"LabMedical\": 3788.541141356345,\n              \"Datacenter\": 1205.1257523024628,\n              \"RetailEquipment\": 3849.2431993160058,\n              \"RefrigerationGeneral\": 6272.599696826713,\n              \"ColdStorage\": 1026.35534317425,\n              \"ProcessCooling\": 873.7520896426298,\n              \"PlugIn\": 8337.668001172438,\n              \"TransportGeneral\": 1505.2970410874566,\n              \"Elevators\": 200.10774807336372,\n              \"Escalators\": 4208.455169434846,\n              \"EvChargingGeneral\": 7159.035687499051,\n              \"AcCharging\": 7980.280855114758,\n              \"DcFastCharging\": 6620.798416455347,\n              \"OutdoorSystemsGeneral\": 6312.781842666075,\n              \"SnowMelting\": 3318.6907910895893,\n              \"Irrigation\": 9256.229006986838,\n              \"SiteEquipment\": 4382.32906006707,\n              \"OtherGeneral\": 8689.775395786792,\n              \"EmergencySystems\": 1509.5247707330639,\n              \"Unclassified\": 79.21727681482471\n            },\n            \"OutdoorSystems\": {\n              \"HvacGeneral\": 3531.8293688819467,\n              \"HeatExchangers\": 2002.994685035724,\n              \"SpaceCooling\": 331.5991470182378,\n              \"Ventilation\": 3124.9972491141543,\n              \"PumpsAndCirculation\": 4103.582548351878,\n              \"HeatRecovery\": 9937.565603844363,\n              \"HeatPumps\": 1185.457561085481,\n              \"AuxiliaryVentilation\": 751.2165186603426,\n              \"SpaceHeating\": 7682.326596211262,\n              \"UnderFloorSpaceHeating\": 8673.727917681226,\n              \"HotAirPort\": 9429.618786970963,\n              \"LightingGeneral\": 3249.1997805400306,\n              \"IndoorLighting\": 2131.895645427,\n              \"OutdoorLighting\": 4977.035578422116,\n              \"EmergencyLighting\": 3839.4158423890844,\n              \"DhwGeneral\": 8646.134432264646,\n              \"WaterHeating\": 1102.1582958091303,\n              \"DhwCirculation\": 7429.5535274079575,\n              \"PlugLoadsGeneral\": 1564.6404544063298,\n              \"OfficeEquipment\": 8830.34552225277,\n              \"ItServers\": 5568.852306069844,\n              \"ProcessLoadsGeneral\": 3295.5859068290815,\n              \"KitchenCatering\": 1958.2086048530666,\n              \"LabMedical\": 8671.308889944758,\n              \"Datacenter\": 6362.91025724919,\n              \"RetailEquipment\": 4908.3764732741365,\n              \"RefrigerationGeneral\": 4330.683952296579,\n              \"ColdStorage\": 317.9156123618254,\n              \"ProcessCooling\": 6478.639604244725,\n              \"PlugIn\": 6202.445382723365,\n              \"TransportGeneral\": 2896.230920248042,\n              \"Elevators\": 9525.61136201527,\n              \"Escalators\": 3273.653907619398,\n              \"EvChargingGeneral\": 3728.736335795382,\n              \"AcCharging\": 7829.137299049753,\n              \"DcFastCharging\": 490.79774800415476,\n              \"OutdoorSystemsGeneral\": 1342.979932456867,\n              \"SnowMelting\": 3620.370173626235,\n              \"Irrigation\": 1384.588013239696,\n              \"SiteEquipment\": 2007.6144906547922,\n              \"OtherGeneral\": 2405.1093881768206,\n              \"EmergencySystems\": 6084.925348276242,\n              \"Unclassified\": 6799.921383689449\n            },\n            \"Other\": {\n              \"HvacGeneral\": 4550.417569833336,\n              \"HeatExchangers\": 8261.547476667998,\n              \"SpaceCooling\": 4389.466205821764,\n              \"Ventilation\": 4414.377606675784,\n              \"PumpsAndCirculation\": 4828.52698841673,\n              \"HeatRecovery\": 5139.71122851786,\n              \"HeatPumps\": 6687.247798796095,\n              \"AuxiliaryVentilation\": 7594.771749949825,\n              \"SpaceHeating\": 5439.4601160965485,\n              \"UnderFloorSpaceHeating\": 9947.403254219536,\n              \"HotAirPort\": 7745.037110237055,\n              \"LightingGeneral\": 7020.7092390449,\n              \"IndoorLighting\": 3588.191210714926,\n              \"OutdoorLighting\": 4071.1666990964536,\n              \"EmergencyLighting\": 4724.69121327797,\n              \"DhwGeneral\": 571.7186898108317,\n              \"WaterHeating\": 9645.219504604798,\n              \"DhwCirculation\": 7321.551459085414,\n              \"PlugLoadsGeneral\": 1112.8162775507255,\n              \"OfficeEquipment\": 8900.41843065982,\n              \"ItServers\": 8157.554558694999,\n              \"ProcessLoadsGeneral\": 371.5505992164947,\n              \"KitchenCatering\": 7332.568626719929,\n              \"LabMedical\": 5875.770055191711,\n              \"Datacenter\": 4696.565383225013,\n              \"RetailEquipment\": 1353.2206157938576,\n              \"RefrigerationGeneral\": 65.55960121665372,\n              \"ColdStorage\": 3359.6776144076434,\n              \"ProcessCooling\": 2165.759893366235,\n              \"PlugIn\": 1675.685187629996,\n              \"TransportGeneral\": 1983.1785312087113,\n              \"Elevators\": 4764.375033936819,\n              \"Escalators\": 5272.5222118450765,\n              \"EvChargingGeneral\": 2178.664552105778,\n              \"AcCharging\": 9157.277964227857,\n              \"DcFastCharging\": 8714.023615436066,\n              \"OutdoorSystemsGeneral\": 7400.926154031799,\n              \"SnowMelting\": 1574.8071344159232,\n              \"Irrigation\": 7077.538550803948,\n              \"SiteEquipment\": 7678.754780320858,\n              \"OtherGeneral\": 1804.047443904362,\n              \"EmergencySystems\": 7612.294333634489,\n              \"Unclassified\": 2343.9236256144613\n            },\n            \"Unallocated\": {\n              \"HvacGeneral\": 1263.1204081127212,\n              \"HeatExchangers\": 2654.1102361326916,\n              \"SpaceCooling\": 7270.85539593288,\n              \"Ventilation\": 6679.6829432545765,\n              \"PumpsAndCirculation\": 3184.3853999982284,\n              \"HeatRecovery\": 5948.945550868845,\n              \"HeatPumps\": 1684.6085324158123,\n              \"AuxiliaryVentilation\": 5679.829099924598,\n              \"SpaceHeating\": 9968.546331577327,\n              \"UnderFloorSpaceHeating\": 1266.944796434837,\n              \"HotAirPort\": 3220.9594453160316,\n              \"LightingGeneral\": 6878.827652911965,\n              \"IndoorLighting\": 4978.080148370159,\n              \"OutdoorLighting\": 8570.075562678954,\n              \"EmergencyLighting\": 6129.406652314328,\n              \"DhwGeneral\": 6677.559127522357,\n              \"WaterHeating\": 623.8309096355232,\n              \"DhwCirculation\": 9468.19226406579,\n              \"PlugLoadsGeneral\": 1584.332893553504,\n              \"OfficeEquipment\": 5521.322454432829,\n              \"ItServers\": 7824.128419250343,\n              \"ProcessLoadsGeneral\": 9702.710624985048,\n              \"KitchenCatering\": 6559.926931430353,\n              \"LabMedical\": 9626.892445795876,\n              \"Datacenter\": 7949.604759561575,\n              \"RetailEquipment\": 8167.0528768243985,\n              \"RefrigerationGeneral\": 5788.9997089457875,\n              \"ColdStorage\": 7997.7536999500235,\n              \"ProcessCooling\": 4318.310668811611,\n              \"PlugIn\": 9106.627851203215,\n              \"TransportGeneral\": 2786.399364088474,\n              \"Elevators\": 6368.381841973934,\n              \"Escalators\": 2093.30047392168,\n              \"EvChargingGeneral\": 7195.020320626071,\n              \"AcCharging\": 910.9154461896107,\n              \"DcFastCharging\": 3338.827584068544,\n              \"OutdoorSystemsGeneral\": 3042.5957222973166,\n              \"SnowMelting\": 702.9184767771168,\n              \"Irrigation\": 4483.679319765203,\n              \"SiteEquipment\": 4954.982538928732,\n              \"OtherGeneral\": 1954.3131740471465,\n              \"EmergencySystems\": 8693.263599586431,\n              \"Unclassified\": 7004.514580491663\n            }\n          },\n          \"comment\": \"string\"\n        },\n        \"meterTenantDistribution\": {\n          \"fromDate\": \"1985-12-24\",\n          \"distributions\": [\n            {\n              \"tenant\": {\n                \"id\": 722,\n                \"siteId\": 8257,\n                \"name\": \"string\",\n                \"shortname\": \"string\",\n                \"description\": \"string\",\n                \"isArchived\": false,\n                \"isDefault\": true,\n                \"createdAt\": \"1959-01-07T13:17:53.028Z\",\n                \"lastUpdatedAt\": \"1975-11-01T16:40:13.468Z\",\n                \"notes\": \"string\",\n                \"contactPerson\": \"string\",\n                \"contactPhone\": \"string\",\n                \"contactEmail\": \"string\",\n                \"invoiceEmail\": \"string\",\n                \"invoicePoReference\": \"string\",\n                \"otherInvoiceInformation\": \"string\",\n                \"configuration\": {\n                  \"organizationNumber\": \"string\"\n                }\n              },\n              \"value\": 619.0223671345674\n            }\n          ],\n          \"comment\": \"string\"\n        }\n      }\n    ],\n    \"otherExternalPowerSource\": [\n      {\n        \"id\": 614,\n        \"parentId\": 2025,\n        \"name\": \"string\",\n        \"type\": \"string\",\n        \"description\": \"string\",\n        \"notes\": \"string\",\n        \"config\": {\n          \"symbol\": \"string\"\n        },\n        \"meters\": [\n          {\n            \"value\": \"<Circular reference to #/components/schemas/MeterStructureNode detected>\"\n          }\n        ],\n        \"meterCategoryDistribution\": {\n          \"fromDate\": \"2026-05-01\",\n          \"distributions\": {\n            \"HVAC\": {\n              \"HvacGeneral\": 2660.203479376382,\n              \"HeatExchangers\": 211.33188107417266,\n              \"SpaceCooling\": 7163.016042915824,\n              \"Ventilation\": 1701.6476044559092,\n              \"PumpsAndCirculation\": 9754.279032783743,\n              \"HeatRecovery\": 6927.771431808116,\n              \"HeatPumps\": 8572.416137091064,\n              \"AuxiliaryVentilation\": 4737.144043143376,\n              \"SpaceHeating\": 9141.894672213602,\n              \"UnderFloorSpaceHeating\": 3726.941254695941,\n              \"HotAirPort\": 4090.8327611244677,\n              \"LightingGeneral\": 1461.7917663973,\n              \"IndoorLighting\": 4648.440454634561,\n              \"OutdoorLighting\": 9415.45961654895,\n              \"EmergencyLighting\": 104.7370865078756,\n              \"DhwGeneral\": 2857.192738557439,\n              \"WaterHeating\": 9711.36568364496,\n              \"DhwCirculation\": 8394.855028460777,\n              \"PlugLoadsGeneral\": 4049.1650462065377,\n              \"OfficeEquipment\": 3207.239542940903,\n              \"ItServers\": 9840.70445955054,\n              \"ProcessLoadsGeneral\": 7403.097795384201,\n              \"KitchenCatering\": 6409.6887761147145,\n              \"LabMedical\": 3090.896281601103,\n              \"Datacenter\": 3574.0478350127214,\n              \"RetailEquipment\": 4751.885400559646,\n              \"RefrigerationGeneral\": 8361.933501828942,\n              \"ColdStorage\": 5083.157895969665,\n              \"ProcessCooling\": 653.162753636598,\n              \"PlugIn\": 1058.604710390787,\n              \"TransportGeneral\": 7501.628973565888,\n              \"Elevators\": 4263.915441899795,\n              \"Escalators\": 7444.261348847243,\n              \"EvChargingGeneral\": 4425.346111541823,\n              \"AcCharging\": 7459.137184697298,\n              \"DcFastCharging\": 8266.508868177089,\n              \"OutdoorSystemsGeneral\": 9271.514024195572,\n              \"SnowMelting\": 3846.090893843721,\n              \"Irrigation\": 7824.476147092203,\n              \"SiteEquipment\": 4386.593605625839,\n              \"OtherGeneral\": 2605.442552590158,\n              \"EmergencySystems\": 5581.115453209453,\n              \"Unclassified\": 3429.713047318508\n            },\n            \"Lighting\": {\n              \"HvacGeneral\": 4600.13647512586,\n              \"HeatExchangers\": 5347.851754414112,\n              \"SpaceCooling\": 6828.680786175285,\n              \"Ventilation\": 5312.282072948245,\n              \"PumpsAndCirculation\": 110.28485324674486,\n              \"HeatRecovery\": 9926.32733482496,\n              \"HeatPumps\": 5210.321837391456,\n              \"AuxiliaryVentilation\": 6725.656807055689,\n              \"SpaceHeating\": 5622.03508297848,\n              \"UnderFloorSpaceHeating\": 9667.123696469353,\n              \"HotAirPort\": 6781.740496424107,\n              \"LightingGeneral\": 3926.964403847677,\n              \"IndoorLighting\": 7565.869953957836,\n              \"OutdoorLighting\": 3026.921036321264,\n              \"EmergencyLighting\": 3787.216422904669,\n              \"DhwGeneral\": 4978.975343485788,\n              \"WaterHeating\": 2813.5387623971274,\n              \"DhwCirculation\": 190.5476801698125,\n              \"PlugLoadsGeneral\": 686.0932169009293,\n              \"OfficeEquipment\": 6184.674378136412,\n              \"ItServers\": 6607.336539535438,\n              \"ProcessLoadsGeneral\": 2719.2553647001973,\n              \"KitchenCatering\": 7378.041330876168,\n              \"LabMedical\": 2967.7644175829187,\n              \"Datacenter\": 1354.7300100330451,\n              \"RetailEquipment\": 7625.001828913285,\n              \"RefrigerationGeneral\": 6702.528183925163,\n              \"ColdStorage\": 2428.012330778935,\n              \"ProcessCooling\": 7801.782758212532,\n              \"PlugIn\": 1095.2016831923927,\n              \"TransportGeneral\": 2360.2391811759294,\n              \"Elevators\": 1104.1949769880466,\n              \"Escalators\": 4467.463349183103,\n              \"EvChargingGeneral\": 9502.211524821003,\n              \"AcCharging\": 6780.710543093149,\n              \"DcFastCharging\": 2239.1664793644804,\n              \"OutdoorSystemsGeneral\": 1958.9447302127082,\n              \"SnowMelting\": 6825.5998022736785,\n              \"Irrigation\": 5345.154573761041,\n              \"SiteEquipment\": 2904.275320346419,\n              \"OtherGeneral\": 6576.646460171558,\n              \"EmergencySystems\": 6494.058949615722,\n              \"Unclassified\": 8474.94401708853\n            },\n            \"Dhw\": {\n              \"HvacGeneral\": 9144.863117989587,\n              \"HeatExchangers\": 5126.522503338866,\n              \"SpaceCooling\": 9256.205934615882,\n              \"Ventilation\": 7774.409601281626,\n              \"PumpsAndCirculation\": 8533.043403472942,\n              \"HeatRecovery\": 5684.569846862244,\n              \"HeatPumps\": 7958.556580866598,\n              \"AuxiliaryVentilation\": 2801.640151139064,\n              \"SpaceHeating\": 8525.271263972205,\n              \"UnderFloorSpaceHeating\": 898.9840522421222,\n              \"HotAirPort\": 8323.823087420462,\n              \"LightingGeneral\": 6420.895136990154,\n              \"IndoorLighting\": 2089.9441476311486,\n              \"OutdoorLighting\": 3167.80621109749,\n              \"EmergencyLighting\": 5398.981807987693,\n              \"DhwGeneral\": 4406.586552643672,\n              \"WaterHeating\": 7439.757462349765,\n              \"DhwCirculation\": 2542.559591620006,\n              \"PlugLoadsGeneral\": 3367.268336283815,\n              \"OfficeEquipment\": 9513.129799212285,\n              \"ItServers\": 7138.776350250036,\n              \"ProcessLoadsGeneral\": 8028.148301174833,\n              \"KitchenCatering\": 7804.154640931484,\n              \"LabMedical\": 9727.23302575988,\n              \"Datacenter\": 9529.95359947041,\n              \"RetailEquipment\": 3226.6252242860505,\n              \"RefrigerationGeneral\": 2054.654944143113,\n              \"ColdStorage\": 9268.372483466152,\n              \"ProcessCooling\": 2548.646619697099,\n              \"PlugIn\": 7331.973621206569,\n              \"TransportGeneral\": 1895.188812245072,\n              \"Elevators\": 5505.606545326534,\n              \"Escalators\": 8829.44360437717,\n              \"EvChargingGeneral\": 1785.3235789877785,\n              \"AcCharging\": 8382.765434791698,\n              \"DcFastCharging\": 244.17177083653206,\n              \"OutdoorSystemsGeneral\": 6309.489200536991,\n              \"SnowMelting\": 7238.098045158028,\n              \"Irrigation\": 3755.2863171671324,\n              \"SiteEquipment\": 6792.0038034676545,\n              \"OtherGeneral\": 1803.069203006056,\n              \"EmergencySystems\": 8701.068397563808,\n              \"Unclassified\": 4369.654618892498\n            },\n            \"PlugLoads\": {\n              \"HvacGeneral\": 3621.215396050712,\n              \"HeatExchangers\": 4203.39751724931,\n              \"SpaceCooling\": 3525.510309545645,\n              \"Ventilation\": 1057.6388168774176,\n              \"PumpsAndCirculation\": 5283.231455583159,\n              \"HeatRecovery\": 92.30954186062678,\n              \"HeatPumps\": 9263.195256904273,\n              \"AuxiliaryVentilation\": 2743.619350395139,\n              \"SpaceHeating\": 2575.1038312339915,\n              \"UnderFloorSpaceHeating\": 2840.7581204014655,\n              \"HotAirPort\": 4175.203562523498,\n              \"LightingGeneral\": 5149.081972096375,\n              \"IndoorLighting\": 7668.4614597424015,\n              \"OutdoorLighting\": 711.4651769171676,\n              \"EmergencyLighting\": 2224.8735002837816,\n              \"DhwGeneral\": 1138.3978910852588,\n              \"WaterHeating\": 3777.3430652611873,\n              \"DhwCirculation\": 4386.474939216085,\n              \"PlugLoadsGeneral\": 4946.280747202869,\n              \"OfficeEquipment\": 1706.0041276108896,\n              \"ItServers\": 2027.460321606851,\n              \"ProcessLoadsGeneral\": 2305.7169410326496,\n              \"KitchenCatering\": 8769.926353513874,\n              \"LabMedical\": 1774.2700785643883,\n              \"Datacenter\": 4509.613028617215,\n              \"RetailEquipment\": 9575.456248421553,\n              \"RefrigerationGeneral\": 6876.048502158931,\n              \"ColdStorage\": 3475.570168192479,\n              \"ProcessCooling\": 9325.7503026734,\n              \"PlugIn\": 8568.388664886017,\n              \"TransportGeneral\": 589.3999259291816,\n              \"Elevators\": 8650.937313518707,\n              \"Escalators\": 7286.365180680025,\n              \"EvChargingGeneral\": 3935.7856591917794,\n              \"AcCharging\": 7709.580948385213,\n              \"DcFastCharging\": 8015.302617050215,\n              \"OutdoorSystemsGeneral\": 2774.642257638842,\n              \"SnowMelting\": 2575.3426686549165,\n              \"Irrigation\": 5465.039433257468,\n              \"SiteEquipment\": 9447.350834113395,\n              \"OtherGeneral\": 3653.0720530376757,\n              \"EmergencySystems\": 3898.6261896050523,\n              \"Unclassified\": 2804.328161390446\n            },\n            \"ProcessLoads\": {\n              \"HvacGeneral\": 1827.5783155598035,\n              \"HeatExchangers\": 4181.461790572256,\n              \"SpaceCooling\": 4589.746722388046,\n              \"Ventilation\": 1620.8309757371487,\n              \"PumpsAndCirculation\": 4081.8882590160533,\n              \"HeatRecovery\": 6993.43856371028,\n              \"HeatPumps\": 1473.2167671414875,\n              \"AuxiliaryVentilation\": 9649.169440176747,\n              \"SpaceHeating\": 1575.2389144079882,\n              \"UnderFloorSpaceHeating\": 3111.373883002535,\n              \"HotAirPort\": 5499.259726741557,\n              \"LightingGeneral\": 1747.7491873704087,\n              \"IndoorLighting\": 37.604541780345,\n              \"OutdoorLighting\": 2036.1070862716347,\n              \"EmergencyLighting\": 1437.996907675938,\n              \"DhwGeneral\": 3724.1109176562713,\n              \"WaterHeating\": 3800.096511222739,\n              \"DhwCirculation\": 7726.54531818413,\n              \"PlugLoadsGeneral\": 1898.803348291016,\n              \"OfficeEquipment\": 4972.642992113881,\n              \"ItServers\": 1661.7346108384834,\n              \"ProcessLoadsGeneral\": 1605.4293133148922,\n              \"KitchenCatering\": 4716.897948664638,\n              \"LabMedical\": 6315.552405182172,\n              \"Datacenter\": 7085.140742885454,\n              \"RetailEquipment\": 6719.387501943037,\n              \"RefrigerationGeneral\": 6820.722192487589,\n              \"ColdStorage\": 6213.4391420273505,\n              \"ProcessCooling\": 715.3311202520296,\n              \"PlugIn\": 7532.029824377276,\n              \"TransportGeneral\": 1811.6347477578688,\n              \"Elevators\": 7729.332522994001,\n              \"Escalators\": 4458.691811830553,\n              \"EvChargingGeneral\": 4983.854532096199,\n              \"AcCharging\": 5855.017684386255,\n              \"DcFastCharging\": 6044.574535346436,\n              \"OutdoorSystemsGeneral\": 9661.280254387639,\n              \"SnowMelting\": 9972.585552556595,\n              \"Irrigation\": 155.2603263298713,\n              \"SiteEquipment\": 4292.597269100879,\n              \"OtherGeneral\": 6404.040267728954,\n              \"EmergencySystems\": 5218.161374685579,\n              \"Unclassified\": 2198.050354802319\n            },\n            \"Refrigeration\": {\n              \"HvacGeneral\": 2068.588539643286,\n              \"HeatExchangers\": 9406.167701013099,\n              \"SpaceCooling\": 6451.074003758102,\n              \"Ventilation\": 9424.84055651952,\n              \"PumpsAndCirculation\": 1010.1510123645063,\n              \"HeatRecovery\": 6263.229438793485,\n              \"HeatPumps\": 4367.145214649681,\n              \"AuxiliaryVentilation\": 487.59826801805906,\n              \"SpaceHeating\": 2730.6837790022078,\n              \"UnderFloorSpaceHeating\": 3020.7207799445746,\n              \"HotAirPort\": 4326.536556128586,\n              \"LightingGeneral\": 1621.644736188832,\n              \"IndoorLighting\": 5967.4781323261495,\n              \"OutdoorLighting\": 7234.710400852189,\n              \"EmergencyLighting\": 877.2495202388009,\n              \"DhwGeneral\": 8399.259443418916,\n              \"WaterHeating\": 3575.7672419938212,\n              \"DhwCirculation\": 6775.403975276126,\n              \"PlugLoadsGeneral\": 1156.3774090131874,\n              \"OfficeEquipment\": 2452.882922144408,\n              \"ItServers\": 8622.378554926807,\n              \"ProcessLoadsGeneral\": 4302.766729846865,\n              \"KitchenCatering\": 769.7761811066473,\n              \"LabMedical\": 9282.622993693192,\n              \"Datacenter\": 3944.88267377644,\n              \"RetailEquipment\": 4525.006251642094,\n              \"RefrigerationGeneral\": 5267.989105270008,\n              \"ColdStorage\": 8547.126446979943,\n              \"ProcessCooling\": 8577.773557001805,\n              \"PlugIn\": 4795.224309333022,\n              \"TransportGeneral\": 8178.471269379168,\n              \"Elevators\": 7649.938260847691,\n              \"Escalators\": 3830.109141393645,\n              \"EvChargingGeneral\": 3770.897088841865,\n              \"AcCharging\": 9242.64606781343,\n              \"DcFastCharging\": 9972.617288834774,\n              \"OutdoorSystemsGeneral\": 7947.688932056787,\n              \"SnowMelting\": 8920.908580092735,\n              \"Irrigation\": 936.5753296923107,\n              \"SiteEquipment\": 6645.042568564137,\n              \"OtherGeneral\": 3004.63077783254,\n              \"EmergencySystems\": 3810.8354264720347,\n              \"Unclassified\": 9517.274028906668\n            },\n            \"Transport\": {\n              \"HvacGeneral\": 3776.229961867492,\n              \"HeatExchangers\": 2539.6027977205836,\n              \"SpaceCooling\": 2645.2047956696156,\n              \"Ventilation\": 222.720617918144,\n              \"PumpsAndCirculation\": 5894.389351477374,\n              \"HeatRecovery\": 9422.82164983161,\n              \"HeatPumps\": 1386.5643214232116,\n              \"AuxiliaryVentilation\": 2881.8174434157263,\n              \"SpaceHeating\": 8128.227072542209,\n              \"UnderFloorSpaceHeating\": 3960.0181306312465,\n              \"HotAirPort\": 3135.6901397444935,\n              \"LightingGeneral\": 983.594926967426,\n              \"IndoorLighting\": 2266.6342279749174,\n              \"OutdoorLighting\": 1312.4797366035311,\n              \"EmergencyLighting\": 4846.00114351625,\n              \"DhwGeneral\": 6893.569671914759,\n              \"WaterHeating\": 8356.218097774845,\n              \"DhwCirculation\": 9666.793756873101,\n              \"PlugLoadsGeneral\": 1403.5657098429044,\n              \"OfficeEquipment\": 8785.15158522351,\n              \"ItServers\": 684.5588906561973,\n              \"ProcessLoadsGeneral\": 2994.966354971398,\n              \"KitchenCatering\": 9145.812636991637,\n              \"LabMedical\": 4748.247531759515,\n              \"Datacenter\": 8684.011899087807,\n              \"RetailEquipment\": 8093.363377351053,\n              \"RefrigerationGeneral\": 5145.9611324029365,\n              \"ColdStorage\": 8992.920575282593,\n              \"ProcessCooling\": 2383.6069528996704,\n              \"PlugIn\": 3302.478945286531,\n              \"TransportGeneral\": 6803.2169284688825,\n              \"Elevators\": 2914.6301416956776,\n              \"Escalators\": 8762.268171034064,\n              \"EvChargingGeneral\": 4633.928045893314,\n              \"AcCharging\": 3258.6152837860836,\n              \"DcFastCharging\": 5572.176756407958,\n              \"OutdoorSystemsGeneral\": 9692.438984458047,\n              \"SnowMelting\": 3240.4293592321665,\n              \"Irrigation\": 9050.396155291824,\n              \"SiteEquipment\": 4602.734198794154,\n              \"OtherGeneral\": 7176.530732984101,\n              \"EmergencySystems\": 2051.4239683836054,\n              \"Unclassified\": 2593.5144241646203\n            },\n            \"EvCharging\": {\n              \"HvacGeneral\": 9731.137917765074,\n              \"HeatExchangers\": 3651.07965835189,\n              \"SpaceCooling\": 1791.0817314504923,\n              \"Ventilation\": 5308.610686019948,\n              \"PumpsAndCirculation\": 6060.90130535915,\n              \"HeatRecovery\": 7031.953009125149,\n              \"HeatPumps\": 7668.595790208801,\n              \"AuxiliaryVentilation\": 6828.6178633209,\n              \"SpaceHeating\": 8415.810807713366,\n              \"UnderFloorSpaceHeating\": 4070.0063835228593,\n              \"HotAirPort\": 2090.408560685821,\n              \"LightingGeneral\": 7123.3410811563,\n              \"IndoorLighting\": 7564.380716264378,\n              \"OutdoorLighting\": 5591.19018876425,\n              \"EmergencyLighting\": 5756.010047120033,\n              \"DhwGeneral\": 8317.966497335909,\n              \"WaterHeating\": 9397.399208104225,\n              \"DhwCirculation\": 6347.669238904017,\n              \"PlugLoadsGeneral\": 5977.245643370204,\n              \"OfficeEquipment\": 6995.920853846189,\n              \"ItServers\": 4596.378080521371,\n              \"ProcessLoadsGeneral\": 7370.051260795576,\n              \"KitchenCatering\": 4780.438004731318,\n              \"LabMedical\": 3083.882811797325,\n              \"Datacenter\": 4368.716477017636,\n              \"RetailEquipment\": 4609.047684413989,\n              \"RefrigerationGeneral\": 3343.5927159811918,\n              \"ColdStorage\": 6020.521112373293,\n              \"ProcessCooling\": 4601.452463197242,\n              \"PlugIn\": 6166.7640000867505,\n              \"TransportGeneral\": 5428.02057581603,\n              \"Elevators\": 457.10872296016447,\n              \"Escalators\": 5218.064846227324,\n              \"EvChargingGeneral\": 6085.310187352615,\n              \"AcCharging\": 1143.3965238890864,\n              \"DcFastCharging\": 5284.901358128575,\n              \"OutdoorSystemsGeneral\": 8548.73730086452,\n              \"SnowMelting\": 2279.9560027469747,\n              \"Irrigation\": 3815.213038725129,\n              \"SiteEquipment\": 7684.6311442197175,\n              \"OtherGeneral\": 747.5466584795964,\n              \"EmergencySystems\": 6393.701167701264,\n              \"Unclassified\": 4218.37723900065\n            },\n            \"OutdoorSystems\": {\n              \"HvacGeneral\": 1571.9039730062746,\n              \"HeatExchangers\": 9394.718471536093,\n              \"SpaceCooling\": 9865.969836499517,\n              \"Ventilation\": 7424.046174259786,\n              \"PumpsAndCirculation\": 80.44169793792966,\n              \"HeatRecovery\": 13.44502821578386,\n              \"HeatPumps\": 9689.946516961858,\n              \"AuxiliaryVentilation\": 8352.693969813121,\n              \"SpaceHeating\": 3607.5353432347247,\n              \"UnderFloorSpaceHeating\": 8583.407615314349,\n              \"HotAirPort\": 1949.6776810965844,\n              \"LightingGeneral\": 7130.951845820148,\n              \"IndoorLighting\": 8135.807966072976,\n              \"OutdoorLighting\": 1298.5990263216718,\n              \"EmergencyLighting\": 2529.039630104366,\n              \"DhwGeneral\": 984.409201598968,\n              \"WaterHeating\": 9916.069750527435,\n              \"DhwCirculation\": 2866.9517179018135,\n              \"PlugLoadsGeneral\": 9636.102188912326,\n              \"OfficeEquipment\": 8773.149460228824,\n              \"ItServers\": 8394.699752145607,\n              \"ProcessLoadsGeneral\": 6165.887963117068,\n              \"KitchenCatering\": 6997.118829692755,\n              \"LabMedical\": 47.649523812673955,\n              \"Datacenter\": 3169.1382618199304,\n              \"RetailEquipment\": 2759.4740312560375,\n              \"RefrigerationGeneral\": 8004.313891566153,\n              \"ColdStorage\": 5975.497909515894,\n              \"ProcessCooling\": 8369.195736159136,\n              \"PlugIn\": 1557.883909979989,\n              \"TransportGeneral\": 1682.6765919560248,\n              \"Elevators\": 4583.482835237027,\n              \"Escalators\": 3266.7705891810006,\n              \"EvChargingGeneral\": 2437.69658516064,\n              \"AcCharging\": 7437.065392343767,\n              \"DcFastCharging\": 6894.732511047732,\n              \"OutdoorSystemsGeneral\": 3009.200944235815,\n              \"SnowMelting\": 1823.2581970801864,\n              \"Irrigation\": 4127.027016440185,\n              \"SiteEquipment\": 6886.599624466911,\n              \"OtherGeneral\": 1733.6313121961177,\n              \"EmergencySystems\": 6717.532282150607,\n              \"Unclassified\": 5876.978619051776\n            },\n            \"Other\": {\n              \"HvacGeneral\": 9894.75732035769,\n              \"HeatExchangers\": 3601.372746643845,\n              \"SpaceCooling\": 8043.7589334393715,\n              \"Ventilation\": 297.17821777189624,\n              \"PumpsAndCirculation\": 6597.950712092289,\n              \"HeatRecovery\": 174.30763665263748,\n              \"HeatPumps\": 4343.920900493225,\n              \"AuxiliaryVentilation\": 3123.8309889799452,\n              \"SpaceHeating\": 3091.710491727975,\n              \"UnderFloorSpaceHeating\": 7815.517486932293,\n              \"HotAirPort\": 7509.021628230766,\n              \"LightingGeneral\": 6858.584703711607,\n              \"IndoorLighting\": 1038.4056987426038,\n              \"OutdoorLighting\": 6654.094180937822,\n              \"EmergencyLighting\": 4590.9529694023995,\n              \"DhwGeneral\": 9202.415410510795,\n              \"WaterHeating\": 3262.127737219973,\n              \"DhwCirculation\": 1079.6349715373842,\n              \"PlugLoadsGeneral\": 8019.5510959198455,\n              \"OfficeEquipment\": 6289.785947011617,\n              \"ItServers\": 3307.3585700890076,\n              \"ProcessLoadsGeneral\": 827.1369550994634,\n              \"KitchenCatering\": 4735.52394904748,\n              \"LabMedical\": 6599.427157937934,\n              \"Datacenter\": 7591.513745512699,\n              \"RetailEquipment\": 5690.313424508171,\n              \"RefrigerationGeneral\": 1288.8558023869168,\n              \"ColdStorage\": 9904.24442007257,\n              \"ProcessCooling\": 9078.129759449705,\n              \"PlugIn\": 9299.639396226527,\n              \"TransportGeneral\": 5892.622425126281,\n              \"Elevators\": 8879.221280724038,\n              \"Escalators\": 967.7200471242209,\n              \"EvChargingGeneral\": 3661.7804266787557,\n              \"AcCharging\": 9307.554854390413,\n              \"DcFastCharging\": 5524.546448779606,\n              \"OutdoorSystemsGeneral\": 5771.847728002266,\n              \"SnowMelting\": 4110.571724126135,\n              \"Irrigation\": 7575.265631998675,\n              \"SiteEquipment\": 3720.5740392765542,\n              \"OtherGeneral\": 6341.474138557979,\n              \"EmergencySystems\": 8028.512503723088,\n              \"Unclassified\": 2828.800913774152\n            },\n            \"Unallocated\": {\n              \"HvacGeneral\": 9650.40499153613,\n              \"HeatExchangers\": 5321.657945181999,\n              \"SpaceCooling\": 1375.9863128177851,\n              \"Ventilation\": 6430.052739070351,\n              \"PumpsAndCirculation\": 6577.342354965763,\n              \"HeatRecovery\": 8835.668405715884,\n              \"HeatPumps\": 6491.3932031013455,\n              \"AuxiliaryVentilation\": 2726.5647863143604,\n              \"SpaceHeating\": 3332.036054943965,\n              \"UnderFloorSpaceHeating\": 5882.7761695483405,\n              \"HotAirPort\": 1859.1670857955412,\n              \"LightingGeneral\": 1711.8021212685485,\n              \"IndoorLighting\": 1524.0261296907188,\n              \"OutdoorLighting\": 7639.508945228544,\n              \"EmergencyLighting\": 9205.481080662807,\n              \"DhwGeneral\": 6686.899719008082,\n              \"WaterHeating\": 1748.4094917672066,\n              \"DhwCirculation\": 433.30793400229385,\n              \"PlugLoadsGeneral\": 3014.790736295647,\n              \"OfficeEquipment\": 8656.31091514295,\n              \"ItServers\": 5521.02973356847,\n              \"ProcessLoadsGeneral\": 3531.1626065128276,\n              \"KitchenCatering\": 6503.567000122434,\n              \"LabMedical\": 4509.355859368764,\n              \"Datacenter\": 2678.579621772428,\n              \"RetailEquipment\": 3414.1545549464427,\n              \"RefrigerationGeneral\": 7563.402609909251,\n              \"ColdStorage\": 4505.023563139876,\n              \"ProcessCooling\": 5965.27448325122,\n              \"PlugIn\": 6567.661100744606,\n              \"TransportGeneral\": 3254.572756261189,\n              \"Elevators\": 1440.9176005574764,\n              \"Escalators\": 6313.93379373333,\n              \"EvChargingGeneral\": 867.450607040019,\n              \"AcCharging\": 1819.8016862659695,\n              \"DcFastCharging\": 5703.996691943107,\n              \"OutdoorSystemsGeneral\": 505.23389432479917,\n              \"SnowMelting\": 9517.932973266605,\n              \"Irrigation\": 7871.5952755108565,\n              \"SiteEquipment\": 9206.010905832363,\n              \"OtherGeneral\": 7834.297600259252,\n              \"EmergencySystems\": 1210.0931086586675,\n              \"Unclassified\": 6985.194768034302\n            }\n          },\n          \"comment\": \"string\"\n        },\n        \"meterTenantDistribution\": {\n          \"fromDate\": \"2020-03-14\",\n          \"distributions\": [\n            {\n              \"tenant\": {\n                \"id\": 4613,\n                \"siteId\": 5727,\n                \"name\": \"string\",\n                \"shortname\": \"string\",\n                \"description\": \"string\",\n                \"isArchived\": false,\n                \"isDefault\": false,\n                \"createdAt\": \"1965-04-27T21:07:17.516Z\",\n                \"lastUpdatedAt\": \"2003-10-22T00:34:27.343Z\",\n                \"notes\": \"string\",\n                \"contactPerson\": \"string\",\n                \"contactPhone\": \"string\",\n                \"contactEmail\": \"string\",\n                \"invoiceEmail\": \"string\",\n                \"invoicePoReference\": \"string\",\n                \"otherInvoiceInformation\": \"string\",\n                \"configuration\": {\n                  \"organizationNumber\": \"string\"\n                }\n              },\n              \"value\": 2452.4176247341065\n            }\n          ],\n          \"comment\": \"string\"\n        }\n      }\n    ]\n  },\n  \"solarPowerPlant\": [\n    {\n      \"id\": 482,\n      \"parentId\": 4974,\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"description\": \"string\",\n      \"notes\": \"string\",\n      \"config\": {\n        \"symbol\": \"string\"\n      },\n      \"meters\": [\n        {\n          \"value\": \"<Circular reference to #/components/schemas/MeterStructureNode detected>\"\n        }\n      ],\n      \"meterCategoryDistribution\": {\n        \"fromDate\": \"1981-12-17\",\n        \"distributions\": {\n          \"HVAC\": {\n            \"HvacGeneral\": 1550.9365404901841,\n            \"HeatExchangers\": 4074.507588017111,\n            \"SpaceCooling\": 5765.9921883672305,\n            \"Ventilation\": 2767.1967902808037,\n            \"PumpsAndCirculation\": 2163.7137924197127,\n            \"HeatRecovery\": 1270.4652615355249,\n            \"HeatPumps\": 1781.6912804684648,\n            \"AuxiliaryVentilation\": 8179.403717068083,\n            \"SpaceHeating\": 4277.742381342149,\n            \"UnderFloorSpaceHeating\": 3671.679985245173,\n            \"HotAirPort\": 8870.167314989678,\n            \"LightingGeneral\": 8269.7760844977,\n            \"IndoorLighting\": 3415.8329018394993,\n            \"OutdoorLighting\": 9353.072260289646,\n            \"EmergencyLighting\": 2221.1975213082756,\n            \"DhwGeneral\": 2983.6679381964213,\n            \"WaterHeating\": 757.6852073972051,\n            \"DhwCirculation\": 1120.2711989289305,\n            \"PlugLoadsGeneral\": 3689.424511952226,\n            \"OfficeEquipment\": 6644.540384692145,\n            \"ItServers\": 289.00434172388856,\n            \"ProcessLoadsGeneral\": 6321.482108189973,\n            \"KitchenCatering\": 5125.619386635749,\n            \"LabMedical\": 3333.4882955003377,\n            \"Datacenter\": 5201.27571564355,\n            \"RetailEquipment\": 3342.537180723113,\n            \"RefrigerationGeneral\": 7005.22523554961,\n            \"ColdStorage\": 4062.844052630603,\n            \"ProcessCooling\": 6235.42669939245,\n            \"PlugIn\": 7307.629612189144,\n            \"TransportGeneral\": 1883.899418241679,\n            \"Elevators\": 4582.210841809622,\n            \"Escalators\": 4468.204220307237,\n            \"EvChargingGeneral\": 1887.201934056204,\n            \"AcCharging\": 5393.737724753931,\n            \"DcFastCharging\": 3937.62911407912,\n            \"OutdoorSystemsGeneral\": 6144.978979719893,\n            \"SnowMelting\": 1210.628202116326,\n            \"Irrigation\": 165.13381109241277,\n            \"SiteEquipment\": 7850.35645581786,\n            \"OtherGeneral\": 7425.16093450216,\n            \"EmergencySystems\": 5520.051813857734,\n            \"Unclassified\": 2343.5147652365763\n          },\n          \"Lighting\": {\n            \"HvacGeneral\": 6111.517763309335,\n            \"HeatExchangers\": 3306.7104166755844,\n            \"SpaceCooling\": 1846.978476274761,\n            \"Ventilation\": 5165.244779548512,\n            \"PumpsAndCirculation\": 6651.322665915857,\n            \"HeatRecovery\": 4942.467316333743,\n            \"HeatPumps\": 1856.2508323699456,\n            \"AuxiliaryVentilation\": 7867.686114328496,\n            \"SpaceHeating\": 3112.0105023464207,\n            \"UnderFloorSpaceHeating\": 3439.596940068448,\n            \"HotAirPort\": 6902.25375845821,\n            \"LightingGeneral\": 7535.287525789944,\n            \"IndoorLighting\": 4606.975227625476,\n            \"OutdoorLighting\": 4021.8670113710364,\n            \"EmergencyLighting\": 4996.056199519261,\n            \"DhwGeneral\": 4323.90971032236,\n            \"WaterHeating\": 4063.0644333260666,\n            \"DhwCirculation\": 3152.6121371611594,\n            \"PlugLoadsGeneral\": 146.73999282261317,\n            \"OfficeEquipment\": 6220.421117214243,\n            \"ItServers\": 3165.2839483503926,\n            \"ProcessLoadsGeneral\": 2970.87915907722,\n            \"KitchenCatering\": 3344.792325556727,\n            \"LabMedical\": 9123.841730639493,\n            \"Datacenter\": 1990.427805473185,\n            \"RetailEquipment\": 3338.9957905700808,\n            \"RefrigerationGeneral\": 1893.9662049024398,\n            \"ColdStorage\": 4667.431284784953,\n            \"ProcessCooling\": 7561.88648353525,\n            \"PlugIn\": 2067.154489691081,\n            \"TransportGeneral\": 7284.898040161596,\n            \"Elevators\": 8882.291050121868,\n            \"Escalators\": 4528.660199348158,\n            \"EvChargingGeneral\": 3765.0960962880918,\n            \"AcCharging\": 5580.962379851629,\n            \"DcFastCharging\": 6841.259122231647,\n            \"OutdoorSystemsGeneral\": 664.1600695141769,\n            \"SnowMelting\": 8046.549987493008,\n            \"Irrigation\": 4756.755805860437,\n            \"SiteEquipment\": 5317.316352830068,\n            \"OtherGeneral\": 1549.8558894589598,\n            \"EmergencySystems\": 8859.560791800877,\n            \"Unclassified\": 5501.442279715591\n          },\n          \"Dhw\": {\n            \"HvacGeneral\": 16.06628741329663,\n            \"HeatExchangers\": 3813.706311248748,\n            \"SpaceCooling\": 7135.521071046606,\n            \"Ventilation\": 2087.868588653232,\n            \"PumpsAndCirculation\": 8610.473142324441,\n            \"HeatRecovery\": 1235.5179121005856,\n            \"HeatPumps\": 5835.678877764114,\n            \"AuxiliaryVentilation\": 6524.474501677193,\n            \"SpaceHeating\": 132.71653292611597,\n            \"UnderFloorSpaceHeating\": 6905.448003131285,\n            \"HotAirPort\": 8434.243184526835,\n            \"LightingGeneral\": 112.0093351795015,\n            \"IndoorLighting\": 8894.288579794089,\n            \"OutdoorLighting\": 2779.849980089195,\n            \"EmergencyLighting\": 5776.695084191774,\n            \"DhwGeneral\": 6375.580745673137,\n            \"WaterHeating\": 5603.530858701782,\n            \"DhwCirculation\": 2335.0860598179256,\n            \"PlugLoadsGeneral\": 9350.630541038385,\n            \"OfficeEquipment\": 6984.631355491653,\n            \"ItServers\": 782.7356676580832,\n            \"ProcessLoadsGeneral\": 9425.264168801285,\n            \"KitchenCatering\": 2948.684370999046,\n            \"LabMedical\": 2777.6704139428366,\n            \"Datacenter\": 8436.073792612035,\n            \"RetailEquipment\": 469.0406983397288,\n            \"RefrigerationGeneral\": 3055.1821669116384,\n            \"ColdStorage\": 9965.482275354367,\n            \"ProcessCooling\": 4366.552832953241,\n            \"PlugIn\": 3377.0177047171355,\n            \"TransportGeneral\": 5518.178689227884,\n            \"Elevators\": 7935.230714056698,\n            \"Escalators\": 7728.977507630299,\n            \"EvChargingGeneral\": 1730.9355894987211,\n            \"AcCharging\": 2318.109782101665,\n            \"DcFastCharging\": 7542.563682900843,\n            \"OutdoorSystemsGeneral\": 3710.4632485858046,\n            \"SnowMelting\": 4126.740365815483,\n            \"Irrigation\": 554.256277460885,\n            \"SiteEquipment\": 2709.1815730625913,\n            \"OtherGeneral\": 7902.132726668656,\n            \"EmergencySystems\": 7844.262868874157,\n            \"Unclassified\": 1499.4284697544513\n          },\n          \"PlugLoads\": {\n            \"HvacGeneral\": 3548.419237801861,\n            \"HeatExchangers\": 3622.647655582536,\n            \"SpaceCooling\": 1682.0580144457087,\n            \"Ventilation\": 7738.444592385409,\n            \"PumpsAndCirculation\": 2842.8277190644135,\n            \"HeatRecovery\": 3279.784422166374,\n            \"HeatPumps\": 7143.364382630053,\n            \"AuxiliaryVentilation\": 8310.808355779802,\n            \"SpaceHeating\": 9688.849024584802,\n            \"UnderFloorSpaceHeating\": 2595.068286108011,\n            \"HotAirPort\": 3750.038795674742,\n            \"LightingGeneral\": 7601.181180840089,\n            \"IndoorLighting\": 6296.939285405454,\n            \"OutdoorLighting\": 5074.467079090868,\n            \"EmergencyLighting\": 5270.034711584548,\n            \"DhwGeneral\": 1506.6498350012857,\n            \"WaterHeating\": 6941.891122448805,\n            \"DhwCirculation\": 5838.671371435875,\n            \"PlugLoadsGeneral\": 5963.520939653224,\n            \"OfficeEquipment\": 83.97235192856067,\n            \"ItServers\": 1896.8763214048345,\n            \"ProcessLoadsGeneral\": 709.6726148163901,\n            \"KitchenCatering\": 8722.736520023658,\n            \"LabMedical\": 4633.583118196112,\n            \"Datacenter\": 6515.471965664406,\n            \"RetailEquipment\": 6478.580287002515,\n            \"RefrigerationGeneral\": 3138.6689549769976,\n            \"ColdStorage\": 3970.619999411007,\n            \"ProcessCooling\": 7058.361195541296,\n            \"PlugIn\": 1051.1811329469833,\n            \"TransportGeneral\": 8720.754159510148,\n            \"Elevators\": 1005.9308853316674,\n            \"Escalators\": 301.3901689994269,\n            \"EvChargingGeneral\": 6047.457706193633,\n            \"AcCharging\": 4522.030000285768,\n            \"DcFastCharging\": 6067.548961827194,\n            \"OutdoorSystemsGeneral\": 7111.63850721048,\n            \"SnowMelting\": 1981.362995808016,\n            \"Irrigation\": 7258.873980069627,\n            \"SiteEquipment\": 8884.277274257198,\n            \"OtherGeneral\": 5135.7886896007885,\n            \"EmergencySystems\": 9922.700749577596,\n            \"Unclassified\": 2785.3531415538837\n          },\n          \"ProcessLoads\": {\n            \"HvacGeneral\": 5075.533358305808,\n            \"HeatExchangers\": 2047.0889865455865,\n            \"SpaceCooling\": 4588.431444724381,\n            \"Ventilation\": 3214.503388537231,\n            \"PumpsAndCirculation\": 7429.825476953478,\n            \"HeatRecovery\": 6427.895677633304,\n            \"HeatPumps\": 6840.917188803169,\n            \"AuxiliaryVentilation\": 8733.442477661965,\n            \"SpaceHeating\": 1161.1044302789896,\n            \"UnderFloorSpaceHeating\": 4195.92642841901,\n            \"HotAirPort\": 9189.014376772879,\n            \"LightingGeneral\": 3645.337360255476,\n            \"IndoorLighting\": 4564.8085064806955,\n            \"OutdoorLighting\": 2055.349289274426,\n            \"EmergencyLighting\": 6826.699054636827,\n            \"DhwGeneral\": 1329.533150036799,\n            \"WaterHeating\": 8315.30787056471,\n            \"DhwCirculation\": 3565.764833825922,\n            \"PlugLoadsGeneral\": 9592.181642071662,\n            \"OfficeEquipment\": 8533.756204109066,\n            \"ItServers\": 4750.802492264736,\n            \"ProcessLoadsGeneral\": 175.50298103133687,\n            \"KitchenCatering\": 5798.85304482171,\n            \"LabMedical\": 1217.999210805085,\n            \"Datacenter\": 5884.350315660454,\n            \"RetailEquipment\": 6778.160995574445,\n            \"RefrigerationGeneral\": 856.9494060099659,\n            \"ColdStorage\": 1168.0839696880519,\n            \"ProcessCooling\": 1886.1370435183012,\n            \"PlugIn\": 9780.698387249917,\n            \"TransportGeneral\": 6004.565525307279,\n            \"Elevators\": 7388.474773592357,\n            \"Escalators\": 1892.7719960524091,\n            \"EvChargingGeneral\": 1734.0766271258624,\n            \"AcCharging\": 3294.7728674796117,\n            \"DcFastCharging\": 2040.859775943129,\n            \"OutdoorSystemsGeneral\": 3730.952662469218,\n            \"SnowMelting\": 3359.0801322035004,\n            \"Irrigation\": 3604.5736002099925,\n            \"SiteEquipment\": 5797.204810955332,\n            \"OtherGeneral\": 8741.214652984101,\n            \"EmergencySystems\": 2624.2289404204275,\n            \"Unclassified\": 7890.6269446052165\n          },\n          \"Refrigeration\": {\n            \"HvacGeneral\": 842.692075347764,\n            \"HeatExchangers\": 463.1131149593903,\n            \"SpaceCooling\": 4166.828463313465,\n            \"Ventilation\": 2539.1352202504813,\n            \"PumpsAndCirculation\": 9084.221225565814,\n            \"HeatRecovery\": 4815.966369104201,\n            \"HeatPumps\": 7018.718183684027,\n            \"AuxiliaryVentilation\": 6385.751272246314,\n            \"SpaceHeating\": 7921.524577902248,\n            \"UnderFloorSpaceHeating\": 4804.516863960611,\n            \"HotAirPort\": 5809.012597337366,\n            \"LightingGeneral\": 659.5848669873483,\n            \"IndoorLighting\": 464.8162968016711,\n            \"OutdoorLighting\": 2848.8142488942112,\n            \"EmergencyLighting\": 2186.4518123637254,\n            \"DhwGeneral\": 3796.6558605504288,\n            \"WaterHeating\": 7971.96745840927,\n            \"DhwCirculation\": 9906.253444709566,\n            \"PlugLoadsGeneral\": 6514.120696185552,\n            \"OfficeEquipment\": 1473.6750072651027,\n            \"ItServers\": 173.68815994551977,\n            \"ProcessLoadsGeneral\": 851.2781344698128,\n            \"KitchenCatering\": 9916.664250029526,\n            \"LabMedical\": 2095.0217388509286,\n            \"Datacenter\": 2027.6829592712709,\n            \"RetailEquipment\": 7316.565930460437,\n            \"RefrigerationGeneral\": 8168.113226906701,\n            \"ColdStorage\": 8395.922740577633,\n            \"ProcessCooling\": 6023.876102624501,\n            \"PlugIn\": 3182.986339672842,\n            \"TransportGeneral\": 7055.096800128251,\n            \"Elevators\": 1203.7988427468415,\n            \"Escalators\": 894.6435639588768,\n            \"EvChargingGeneral\": 3461.979256977299,\n            \"AcCharging\": 6809.298194868534,\n            \"DcFastCharging\": 9561.598908741122,\n            \"OutdoorSystemsGeneral\": 4022.5600665372463,\n            \"SnowMelting\": 5405.312011920727,\n            \"Irrigation\": 12.956925979388245,\n            \"SiteEquipment\": 2610.2086979261708,\n            \"OtherGeneral\": 6234.628489521794,\n            \"EmergencySystems\": 2033.4340921531368,\n            \"Unclassified\": 3054.718373117642\n          },\n          \"Transport\": {\n            \"HvacGeneral\": 5521.288545538237,\n            \"HeatExchangers\": 2363.7842259951135,\n            \"SpaceCooling\": 459.71519040365337,\n            \"Ventilation\": 3411.165107985554,\n            \"PumpsAndCirculation\": 1671.673351756835,\n            \"HeatRecovery\": 3486.9786503228715,\n            \"HeatPumps\": 757.1245739054743,\n            \"AuxiliaryVentilation\": 7062.763247174828,\n            \"SpaceHeating\": 9371.147706747128,\n            \"UnderFloorSpaceHeating\": 2595.1101706709733,\n            \"HotAirPort\": 3081.449250875847,\n            \"LightingGeneral\": 7441.211432902286,\n            \"IndoorLighting\": 8604.210155470531,\n            \"OutdoorLighting\": 1146.868871114972,\n            \"EmergencyLighting\": 94.56055034074984,\n            \"DhwGeneral\": 2783.522893275845,\n            \"WaterHeating\": 3714.861539910501,\n            \"DhwCirculation\": 3002.1059294656525,\n            \"PlugLoadsGeneral\": 9753.090247815668,\n            \"OfficeEquipment\": 3449.010076109058,\n            \"ItServers\": 4174.271314618161,\n            \"ProcessLoadsGeneral\": 9005.648784678602,\n            \"KitchenCatering\": 6277.557170540334,\n            \"LabMedical\": 9169.881588163127,\n            \"Datacenter\": 6809.961854321922,\n            \"RetailEquipment\": 5193.419727000825,\n            \"RefrigerationGeneral\": 9468.464746105386,\n            \"ColdStorage\": 9841.492288820815,\n            \"ProcessCooling\": 837.2483490035476,\n            \"PlugIn\": 9875.944859633193,\n            \"TransportGeneral\": 2112.4592709962185,\n            \"Elevators\": 4262.495264524932,\n            \"Escalators\": 7.961314414546283,\n            \"EvChargingGeneral\": 2652.5839660131846,\n            \"AcCharging\": 8931.052831698518,\n            \"DcFastCharging\": 7473.923760443364,\n            \"OutdoorSystemsGeneral\": 2002.9974604760503,\n            \"SnowMelting\": 9442.280541094518,\n            \"Irrigation\": 1541.0610370065947,\n            \"SiteEquipment\": 5080.806628786269,\n            \"OtherGeneral\": 7115.251999274575,\n            \"EmergencySystems\": 693.5928997184404,\n            \"Unclassified\": 8975.11678907814\n          },\n          \"EvCharging\": {\n            \"HvacGeneral\": 384.238149003584,\n            \"HeatExchangers\": 4169.582466013609,\n            \"SpaceCooling\": 6485.806250205413,\n            \"Ventilation\": 5435.518393939736,\n            \"PumpsAndCirculation\": 7995.875481964834,\n            \"HeatRecovery\": 1442.848781437691,\n            \"HeatPumps\": 8720.091718851609,\n            \"AuxiliaryVentilation\": 2689.5522333784847,\n            \"SpaceHeating\": 1400.1496030751402,\n            \"UnderFloorSpaceHeating\": 4833.567429862962,\n            \"HotAirPort\": 8599.912698433318,\n            \"LightingGeneral\": 1043.0148101834202,\n            \"IndoorLighting\": 7641.6224008973495,\n            \"OutdoorLighting\": 3932.715147642276,\n            \"EmergencyLighting\": 3153.650404378976,\n            \"DhwGeneral\": 8623.46942785399,\n            \"WaterHeating\": 7759.117287877985,\n            \"DhwCirculation\": 1348.0456161150967,\n            \"PlugLoadsGeneral\": 9402.526811456835,\n            \"OfficeEquipment\": 4704.537251860294,\n            \"ItServers\": 208.43376048866213,\n            \"ProcessLoadsGeneral\": 1789.3416889781388,\n            \"KitchenCatering\": 192.49503752704067,\n            \"LabMedical\": 831.3141691385662,\n            \"Datacenter\": 456.25041902727315,\n            \"RetailEquipment\": 44.47803669579642,\n            \"RefrigerationGeneral\": 9084.742625723862,\n            \"ColdStorage\": 8060.118508428045,\n            \"ProcessCooling\": 5196.327264881568,\n            \"PlugIn\": 7292.7924338475505,\n            \"TransportGeneral\": 450.06977451817585,\n            \"Elevators\": 839.3168310426291,\n            \"Escalators\": 8981.927294312622,\n            \"EvChargingGeneral\": 6303.45109190936,\n            \"AcCharging\": 342.9465992254044,\n            \"DcFastCharging\": 6951.95294393554,\n            \"OutdoorSystemsGeneral\": 5331.283321771396,\n            \"SnowMelting\": 1751.9725983039214,\n            \"Irrigation\": 3447.589820142822,\n            \"SiteEquipment\": 2607.5219600046553,\n            \"OtherGeneral\": 5873.502823230252,\n            \"EmergencySystems\": 2781.888237332857,\n            \"Unclassified\": 8016.200517013265\n          },\n          \"OutdoorSystems\": {\n            \"HvacGeneral\": 3150.5486519224933,\n            \"HeatExchangers\": 7476.211353513267,\n            \"SpaceCooling\": 8713.245314982065,\n            \"Ventilation\": 9950.638991781792,\n            \"PumpsAndCirculation\": 1134.289507267332,\n            \"HeatRecovery\": 5936.897610127401,\n            \"HeatPumps\": 5378.400677120794,\n            \"AuxiliaryVentilation\": 8017.969595825236,\n            \"SpaceHeating\": 1740.9145860118902,\n            \"UnderFloorSpaceHeating\": 3017.1282605762317,\n            \"HotAirPort\": 1993.272114975373,\n            \"LightingGeneral\": 6657.312420107693,\n            \"IndoorLighting\": 7994.8275617782465,\n            \"OutdoorLighting\": 2573.693232530736,\n            \"EmergencyLighting\": 9640.42356490011,\n            \"DhwGeneral\": 5404.345423373962,\n            \"WaterHeating\": 56.75032066285945,\n            \"DhwCirculation\": 7355.994195776452,\n            \"PlugLoadsGeneral\": 6311.084919783634,\n            \"OfficeEquipment\": 5955.240488563171,\n            \"ItServers\": 7202.755195984898,\n            \"ProcessLoadsGeneral\": 7482.261333676794,\n            \"KitchenCatering\": 5661.970709594965,\n            \"LabMedical\": 6539.769194152063,\n            \"Datacenter\": 234.29971401645267,\n            \"RetailEquipment\": 1023.2085516787404,\n            \"RefrigerationGeneral\": 9343.893973305021,\n            \"ColdStorage\": 401.59621104707276,\n            \"ProcessCooling\": 7353.697676157441,\n            \"PlugIn\": 6462.0941175324,\n            \"TransportGeneral\": 1431.0031806913482,\n            \"Elevators\": 2045.02035516114,\n            \"Escalators\": 9802.475560878915,\n            \"EvChargingGeneral\": 9645.742634092036,\n            \"AcCharging\": 6758.843558042351,\n            \"DcFastCharging\": 212.0855485744011,\n            \"OutdoorSystemsGeneral\": 5498.10070687287,\n            \"SnowMelting\": 5315.2589742646605,\n            \"Irrigation\": 4848.964791175176,\n            \"SiteEquipment\": 8072.438718011074,\n            \"OtherGeneral\": 3649.263806870433,\n            \"EmergencySystems\": 616.5377477923273,\n            \"Unclassified\": 6255.140707111972\n          },\n          \"Other\": {\n            \"HvacGeneral\": 5479.030442392467,\n            \"HeatExchangers\": 8924.070779537586,\n            \"SpaceCooling\": 2449.4563641695468,\n            \"Ventilation\": 9877.991434353833,\n            \"PumpsAndCirculation\": 8340.163371255325,\n            \"HeatRecovery\": 6142.904793062371,\n            \"HeatPumps\": 3574.973489457729,\n            \"AuxiliaryVentilation\": 5411.272246996974,\n            \"SpaceHeating\": 4895.812954811223,\n            \"UnderFloorSpaceHeating\": 8001.066321054999,\n            \"HotAirPort\": 8271.920430371438,\n            \"LightingGeneral\": 1984.8254206713834,\n            \"IndoorLighting\": 7007.192740609605,\n            \"OutdoorLighting\": 8456.754428853526,\n            \"EmergencyLighting\": 6964.754025109667,\n            \"DhwGeneral\": 4657.139510493726,\n            \"WaterHeating\": 1170.0888490366146,\n            \"DhwCirculation\": 3285.901148532424,\n            \"PlugLoadsGeneral\": 2872.0166555850124,\n            \"OfficeEquipment\": 1309.620393684814,\n            \"ItServers\": 1891.902219714625,\n            \"ProcessLoadsGeneral\": 8066.803934305815,\n            \"KitchenCatering\": 337.577640755351,\n            \"LabMedical\": 6729.100587703773,\n            \"Datacenter\": 6723.610050125599,\n            \"RetailEquipment\": 5821.773556788674,\n            \"RefrigerationGeneral\": 7948.720820529571,\n            \"ColdStorage\": 9803.474515949725,\n            \"ProcessCooling\": 6140.979759635812,\n            \"PlugIn\": 6355.5549277375385,\n            \"TransportGeneral\": 4860.443112723931,\n            \"Elevators\": 4731.73884442716,\n            \"Escalators\": 4793.196493540754,\n            \"EvChargingGeneral\": 9825.79787855198,\n            \"AcCharging\": 2204.2935613839277,\n            \"DcFastCharging\": 538.9453473840033,\n            \"OutdoorSystemsGeneral\": 906.5650502143474,\n            \"SnowMelting\": 6605.305185932777,\n            \"Irrigation\": 5043.54599192238,\n            \"SiteEquipment\": 8979.070128456255,\n            \"OtherGeneral\": 4198.575141297208,\n            \"EmergencySystems\": 4400.771115395781,\n            \"Unclassified\": 6703.88217020504\n          },\n          \"Unallocated\": {\n            \"HvacGeneral\": 7542.116755377399,\n            \"HeatExchangers\": 8752.497990537602,\n            \"SpaceCooling\": 4562.29148465759,\n            \"Ventilation\": 9717.16218147115,\n            \"PumpsAndCirculation\": 5429.124864505615,\n            \"HeatRecovery\": 1341.5183026476484,\n            \"HeatPumps\": 8556.29039676506,\n            \"AuxiliaryVentilation\": 3335.147443625042,\n            \"SpaceHeating\": 8616.56217502076,\n            \"UnderFloorSpaceHeating\": 7755.376480301453,\n            \"HotAirPort\": 9917.016162159729,\n            \"LightingGeneral\": 3499.389059918556,\n            \"IndoorLighting\": 2613.791018258169,\n            \"OutdoorLighting\": 7411.999894452152,\n            \"EmergencyLighting\": 3434.8879983065794,\n            \"DhwGeneral\": 8402.180198773027,\n            \"WaterHeating\": 6586.834389227057,\n            \"DhwCirculation\": 2121.9748665706015,\n            \"PlugLoadsGeneral\": 3793.8151297135582,\n            \"OfficeEquipment\": 1973.7491053574163,\n            \"ItServers\": 634.0621397731261,\n            \"ProcessLoadsGeneral\": 9040.785808730921,\n            \"KitchenCatering\": 8828.742729191179,\n            \"LabMedical\": 2177.5205439619817,\n            \"Datacenter\": 5992.402909233103,\n            \"RetailEquipment\": 8487.273820021772,\n            \"RefrigerationGeneral\": 7954.583009705938,\n            \"ColdStorage\": 9351.145895641464,\n            \"ProcessCooling\": 9770.075720537143,\n            \"PlugIn\": 8009.759475814338,\n            \"TransportGeneral\": 8035.807796277024,\n            \"Elevators\": 9893.497200251573,\n            \"Escalators\": 3438.9687094119026,\n            \"EvChargingGeneral\": 4325.259696725354,\n            \"AcCharging\": 8289.589016985186,\n            \"DcFastCharging\": 8954.310675732406,\n            \"OutdoorSystemsGeneral\": 3332.2712095608686,\n            \"SnowMelting\": 3764.316298474688,\n            \"Irrigation\": 5281.603377258551,\n            \"SiteEquipment\": 1593.2037035488222,\n            \"OtherGeneral\": 5984.948462265232,\n            \"EmergencySystems\": 1946.2425946128349,\n            \"Unclassified\": 7842.534145627363\n          }\n        },\n        \"comment\": \"string\"\n      },\n      \"meterTenantDistribution\": {\n        \"fromDate\": \"2015-05-31\",\n        \"distributions\": [\n          {\n            \"tenant\": {\n              \"id\": 3117,\n              \"siteId\": 2661,\n              \"name\": \"string\",\n              \"shortname\": \"string\",\n              \"description\": \"string\",\n              \"isArchived\": false,\n              \"isDefault\": false,\n              \"createdAt\": \"1960-05-04T22:52:44.469Z\",\n              \"lastUpdatedAt\": \"1969-02-02T13:58:37.926Z\",\n              \"notes\": \"string\",\n              \"contactPerson\": \"string\",\n              \"contactPhone\": \"string\",\n              \"contactEmail\": \"string\",\n              \"invoiceEmail\": \"string\",\n              \"invoicePoReference\": \"string\",\n              \"otherInvoiceInformation\": \"string\",\n              \"configuration\": {\n                \"organizationNumber\": \"string\"\n              }\n            },\n            \"value\": 2219.943306969858\n          }\n        ],\n        \"comment\": \"string\"\n      }\n    }\n  ],\n  \"otherPowerPlant\": [\n    {\n      \"id\": 5278,\n      \"parentId\": 944,\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"description\": \"string\",\n      \"notes\": \"string\",\n      \"config\": {\n        \"symbol\": \"string\"\n      },\n      \"meters\": [\n        {\n          \"value\": \"<Circular reference to #/components/schemas/MeterStructureNode detected>\"\n        }\n      ],\n      \"meterCategoryDistribution\": {\n        \"fromDate\": \"2026-08-04\",\n        \"distributions\": {\n          \"HVAC\": {\n            \"HvacGeneral\": 254.9751637434694,\n            \"HeatExchangers\": 3599.836802296743,\n            \"SpaceCooling\": 6326.85830834718,\n            \"Ventilation\": 7550.278290094679,\n            \"PumpsAndCirculation\": 7833.096036098195,\n            \"HeatRecovery\": 2212.547778353877,\n            \"HeatPumps\": 3950.0148873488693,\n            \"AuxiliaryVentilation\": 1590.2250004960172,\n            \"SpaceHeating\": 7971.289336917238,\n            \"UnderFloorSpaceHeating\": 6521.412555332146,\n            \"HotAirPort\": 3682.6301876716648,\n            \"LightingGeneral\": 9632.673504602888,\n            \"IndoorLighting\": 5640.717514420939,\n            \"OutdoorLighting\": 6150.755326162392,\n            \"EmergencyLighting\": 7638.589763766885,\n            \"DhwGeneral\": 4624.626548094279,\n            \"WaterHeating\": 5919.381559580965,\n            \"DhwCirculation\": 661.9705032324097,\n            \"PlugLoadsGeneral\": 3612.9504717046702,\n            \"OfficeEquipment\": 7952.349636560753,\n            \"ItServers\": 3531.532291172177,\n            \"ProcessLoadsGeneral\": 6250.653458727469,\n            \"KitchenCatering\": 3437.828022891569,\n            \"LabMedical\": 992.1032362533277,\n            \"Datacenter\": 4461.015583836143,\n            \"RetailEquipment\": 1170.1759677578073,\n            \"RefrigerationGeneral\": 886.945735699427,\n            \"ColdStorage\": 9694.98468205973,\n            \"ProcessCooling\": 6492.466382345736,\n            \"PlugIn\": 574.5990655524569,\n            \"TransportGeneral\": 2005.311079091796,\n            \"Elevators\": 1961.0654205050837,\n            \"Escalators\": 1690.5754333762313,\n            \"EvChargingGeneral\": 8611.641082707256,\n            \"AcCharging\": 6478.182230967502,\n            \"DcFastCharging\": 108.96642477400408,\n            \"OutdoorSystemsGeneral\": 5891.0407360923255,\n            \"SnowMelting\": 1719.224588340169,\n            \"Irrigation\": 3648.172043934694,\n            \"SiteEquipment\": 9222.490361205262,\n            \"OtherGeneral\": 7463.3960226849385,\n            \"EmergencySystems\": 412.2464509269963,\n            \"Unclassified\": 363.35653503834385\n          },\n          \"Lighting\": {\n            \"HvacGeneral\": 7842.773723775791,\n            \"HeatExchangers\": 6536.005618830225,\n            \"SpaceCooling\": 7730.265679957893,\n            \"Ventilation\": 4286.9384609588915,\n            \"PumpsAndCirculation\": 9490.01544638039,\n            \"HeatRecovery\": 872.6832861930523,\n            \"HeatPumps\": 7635.40231502597,\n            \"AuxiliaryVentilation\": 6809.27570848469,\n            \"SpaceHeating\": 2759.2779269102375,\n            \"UnderFloorSpaceHeating\": 4931.681469234628,\n            \"HotAirPort\": 6587.648850720318,\n            \"LightingGeneral\": 9349.32049147236,\n            \"IndoorLighting\": 905.0563030278291,\n            \"OutdoorLighting\": 6068.167266343742,\n            \"EmergencyLighting\": 5877.8776856337145,\n            \"DhwGeneral\": 6996.7689343504835,\n            \"WaterHeating\": 4518.749317571324,\n            \"DhwCirculation\": 6444.441980949736,\n            \"PlugLoadsGeneral\": 7169.202921209819,\n            \"OfficeEquipment\": 7913.888633824331,\n            \"ItServers\": 8773.123439616129,\n            \"ProcessLoadsGeneral\": 8307.052095889507,\n            \"KitchenCatering\": 6050.584371172494,\n            \"LabMedical\": 2673.9802457797655,\n            \"Datacenter\": 1066.0659840301466,\n            \"RetailEquipment\": 2229.9329542464075,\n            \"RefrigerationGeneral\": 5005.113704430819,\n            \"ColdStorage\": 9038.247518514634,\n            \"ProcessCooling\": 6111.279368043969,\n            \"PlugIn\": 706.2595104058711,\n            \"TransportGeneral\": 1871.6467768317702,\n            \"Elevators\": 1997.4975304599018,\n            \"Escalators\": 3483.7148407620934,\n            \"EvChargingGeneral\": 3246.21414477267,\n            \"AcCharging\": 8250.66349832393,\n            \"DcFastCharging\": 8427.895188186081,\n            \"OutdoorSystemsGeneral\": 3769.5905633498337,\n            \"SnowMelting\": 6025.643495248756,\n            \"Irrigation\": 4746.131825003452,\n            \"SiteEquipment\": 8780.734439220707,\n            \"OtherGeneral\": 6857.931639910608,\n            \"EmergencySystems\": 1728.5624410915545,\n            \"Unclassified\": 8010.606358008816\n          },\n          \"Dhw\": {\n            \"HvacGeneral\": 9719.373498791218,\n            \"HeatExchangers\": 5593.311579180436,\n            \"SpaceCooling\": 9067.078083725928,\n            \"Ventilation\": 9499.11433557786,\n            \"PumpsAndCirculation\": 8609.46532029744,\n            \"HeatRecovery\": 9861.227621048609,\n            \"HeatPumps\": 5747.279578688093,\n            \"AuxiliaryVentilation\": 3343.1111042399484,\n            \"SpaceHeating\": 6365.074176652863,\n            \"UnderFloorSpaceHeating\": 2804.6512896176237,\n            \"HotAirPort\": 3406.0989232913917,\n            \"LightingGeneral\": 1056.8069913194545,\n            \"IndoorLighting\": 3031.405060600678,\n            \"OutdoorLighting\": 3452.3288785220907,\n            \"EmergencyLighting\": 4233.285972365397,\n            \"DhwGeneral\": 9946.515032840724,\n            \"WaterHeating\": 7077.428407752826,\n            \"DhwCirculation\": 1775.1841355866827,\n            \"PlugLoadsGeneral\": 230.88362042302802,\n            \"OfficeEquipment\": 2852.574690983223,\n            \"ItServers\": 1114.6277647729773,\n            \"ProcessLoadsGeneral\": 6452.29085165778,\n            \"KitchenCatering\": 4617.174569752287,\n            \"LabMedical\": 8471.818616592162,\n            \"Datacenter\": 596.6418330255707,\n            \"RetailEquipment\": 2180.841786733634,\n            \"RefrigerationGeneral\": 6349.941671700141,\n            \"ColdStorage\": 6673.611291118755,\n            \"ProcessCooling\": 5279.8733000441025,\n            \"PlugIn\": 9725.56962137456,\n            \"TransportGeneral\": 7742.039326691015,\n            \"Elevators\": 654.6131797555365,\n            \"Escalators\": 275.2425654024115,\n            \"EvChargingGeneral\": 5080.733305936084,\n            \"AcCharging\": 7323.682243691598,\n            \"DcFastCharging\": 3693.98210832693,\n            \"OutdoorSystemsGeneral\": 1344.8256021078287,\n            \"SnowMelting\": 7082.710582039118,\n            \"Irrigation\": 6080.125801774945,\n            \"SiteEquipment\": 5439.031029441084,\n            \"OtherGeneral\": 8097.046709959297,\n            \"EmergencySystems\": 891.2069642592945,\n            \"Unclassified\": 229.55905839733282\n          },\n          \"PlugLoads\": {\n            \"HvacGeneral\": 1330.2632572154428,\n            \"HeatExchangers\": 3358.799640186658,\n            \"SpaceCooling\": 5832.85630934556,\n            \"Ventilation\": 3941.89594687101,\n            \"PumpsAndCirculation\": 4905.2010711823905,\n            \"HeatRecovery\": 2382.6559348844235,\n            \"HeatPumps\": 9931.163786229272,\n            \"AuxiliaryVentilation\": 6391.417474405368,\n            \"SpaceHeating\": 6054.340437228989,\n            \"UnderFloorSpaceHeating\": 7224.8816700274565,\n            \"HotAirPort\": 6883.753138082802,\n            \"LightingGeneral\": 1844.1660307547681,\n            \"IndoorLighting\": 2529.6689826571874,\n            \"OutdoorLighting\": 9985.334525237753,\n            \"EmergencyLighting\": 8896.528571019278,\n            \"DhwGeneral\": 8853.458216964033,\n            \"WaterHeating\": 6862.747039727772,\n            \"DhwCirculation\": 3175.7479387288477,\n            \"PlugLoadsGeneral\": 4175.964168581611,\n            \"OfficeEquipment\": 5310.848925112854,\n            \"ItServers\": 9033.105622278947,\n            \"ProcessLoadsGeneral\": 3405.977182687159,\n            \"KitchenCatering\": 7128.215410366374,\n            \"LabMedical\": 7443.851747366399,\n            \"Datacenter\": 2985.6282145063683,\n            \"RetailEquipment\": 9461.662401386759,\n            \"RefrigerationGeneral\": 6926.030762778119,\n            \"ColdStorage\": 9918.094789099392,\n            \"ProcessCooling\": 9924.827249321126,\n            \"PlugIn\": 8594.04380852175,\n            \"TransportGeneral\": 9675.282356952186,\n            \"Elevators\": 7087.268173456924,\n            \"Escalators\": 3286.3748016300565,\n            \"EvChargingGeneral\": 2137.3057403060993,\n            \"AcCharging\": 8536.024740853443,\n            \"DcFastCharging\": 5712.930659383293,\n            \"OutdoorSystemsGeneral\": 8487.631881353684,\n            \"SnowMelting\": 7237.017470772622,\n            \"Irrigation\": 4258.348867664139,\n            \"SiteEquipment\": 709.6431710350237,\n            \"OtherGeneral\": 8105.48760671822,\n            \"EmergencySystems\": 8008.057583179855,\n            \"Unclassified\": 8249.170826840469\n          },\n          \"ProcessLoads\": {\n            \"HvacGeneral\": 6846.639159605054,\n            \"HeatExchangers\": 8514.270989074506,\n            \"SpaceCooling\": 7080.2365241375,\n            \"Ventilation\": 6472.630871566917,\n            \"PumpsAndCirculation\": 1810.9826107054716,\n            \"HeatRecovery\": 1593.905416991952,\n            \"HeatPumps\": 6560.695079500256,\n            \"AuxiliaryVentilation\": 440.77388973922547,\n            \"SpaceHeating\": 4745.094022314338,\n            \"UnderFloorSpaceHeating\": 9307.286253495859,\n            \"HotAirPort\": 7145.548199188774,\n            \"LightingGeneral\": 8489.72151884165,\n            \"IndoorLighting\": 1568.7619051404322,\n            \"OutdoorLighting\": 7965.489801414192,\n            \"EmergencyLighting\": 429.05225418468086,\n            \"DhwGeneral\": 4958.177609365098,\n            \"WaterHeating\": 9564.17652987584,\n            \"DhwCirculation\": 5663.7298537282295,\n            \"PlugLoadsGeneral\": 8086.391694504584,\n            \"OfficeEquipment\": 4607.6753232267765,\n            \"ItServers\": 5325.479586847233,\n            \"ProcessLoadsGeneral\": 2372.5962706445557,\n            \"KitchenCatering\": 990.8248632771977,\n            \"LabMedical\": 6280.532413166904,\n            \"Datacenter\": 5514.667749092443,\n            \"RetailEquipment\": 6268.769078256167,\n            \"RefrigerationGeneral\": 682.5063571981626,\n            \"ColdStorage\": 3063.9271339244247,\n            \"ProcessCooling\": 7811.254049405945,\n            \"PlugIn\": 1815.1352227758366,\n            \"TransportGeneral\": 2600.431247112398,\n            \"Elevators\": 6468.182668470275,\n            \"Escalators\": 8407.721603706685,\n            \"EvChargingGeneral\": 2803.7465428939677,\n            \"AcCharging\": 7629.859468124855,\n            \"DcFastCharging\": 5258.014436573182,\n            \"OutdoorSystemsGeneral\": 3779.636877160286,\n            \"SnowMelting\": 528.7674150440403,\n            \"Irrigation\": 4102.749990726782,\n            \"SiteEquipment\": 1257.7388530583055,\n            \"OtherGeneral\": 9359.06422429807,\n            \"EmergencySystems\": 2449.6328806288425,\n            \"Unclassified\": 1390.498756472811\n          },\n          \"Refrigeration\": {\n            \"HvacGeneral\": 5023.585339908554,\n            \"HeatExchangers\": 7418.9959385896145,\n            \"SpaceCooling\": 916.7160259949014,\n            \"Ventilation\": 2176.108740045082,\n            \"PumpsAndCirculation\": 6855.038951462556,\n            \"HeatRecovery\": 8789.522620005622,\n            \"HeatPumps\": 2015.5816502995694,\n            \"AuxiliaryVentilation\": 3202.9330974934032,\n            \"SpaceHeating\": 464.15876117581024,\n            \"UnderFloorSpaceHeating\": 8782.346900727234,\n            \"HotAirPort\": 882.5319136887955,\n            \"LightingGeneral\": 2770.8582514528744,\n            \"IndoorLighting\": 171.4827398071228,\n            \"OutdoorLighting\": 3982.624182141157,\n            \"EmergencyLighting\": 5580.346693801011,\n            \"DhwGeneral\": 8567.684926837115,\n            \"WaterHeating\": 5605.974535138514,\n            \"DhwCirculation\": 1356.4326198849196,\n            \"PlugLoadsGeneral\": 465.9153970617358,\n            \"OfficeEquipment\": 846.4096011713074,\n            \"ItServers\": 6658.668244433188,\n            \"ProcessLoadsGeneral\": 2257.6712677209466,\n            \"KitchenCatering\": 3540.128004904153,\n            \"LabMedical\": 5231.267773257062,\n            \"Datacenter\": 5773.373287581747,\n            \"RetailEquipment\": 20.937667576004237,\n            \"RefrigerationGeneral\": 4423.981797210044,\n            \"ColdStorage\": 5672.461051249298,\n            \"ProcessCooling\": 4681.216767724967,\n            \"PlugIn\": 4137.8721008183875,\n            \"TransportGeneral\": 9312.34934691102,\n            \"Elevators\": 9842.044366081096,\n            \"Escalators\": 5050.056542585952,\n            \"EvChargingGeneral\": 9192.935827912039,\n            \"AcCharging\": 3184.4960347246374,\n            \"DcFastCharging\": 6348.8770800879665,\n            \"OutdoorSystemsGeneral\": 5094.018741055102,\n            \"SnowMelting\": 3148.409724263439,\n            \"Irrigation\": 2513.0584124516517,\n            \"SiteEquipment\": 2990.6049387219546,\n            \"OtherGeneral\": 1043.7242806314507,\n            \"EmergencySystems\": 9056.699995590934,\n            \"Unclassified\": 1902.085288928461\n          },\n          \"Transport\": {\n            \"HvacGeneral\": 8554.731227413255,\n            \"HeatExchangers\": 9020.616201179077,\n            \"SpaceCooling\": 7489.416445593342,\n            \"Ventilation\": 3476.3907445245645,\n            \"PumpsAndCirculation\": 6218.747561172901,\n            \"HeatRecovery\": 2479.10078268659,\n            \"HeatPumps\": 8396.475650820583,\n            \"AuxiliaryVentilation\": 3820.1135766678362,\n            \"SpaceHeating\": 2621.2771853003037,\n            \"UnderFloorSpaceHeating\": 1637.4872632272863,\n            \"HotAirPort\": 7637.174556028685,\n            \"LightingGeneral\": 7399.197384076475,\n            \"IndoorLighting\": 6383.652714063779,\n            \"OutdoorLighting\": 8019.78417888833,\n            \"EmergencyLighting\": 3055.9544784478685,\n            \"DhwGeneral\": 5127.857933547695,\n            \"WaterHeating\": 3126.4222606697767,\n            \"DhwCirculation\": 6781.667488396714,\n            \"PlugLoadsGeneral\": 2234.539655481851,\n            \"OfficeEquipment\": 6590.451585162391,\n            \"ItServers\": 1643.7899556054613,\n            \"ProcessLoadsGeneral\": 5295.515376210426,\n            \"KitchenCatering\": 1312.203600477102,\n            \"LabMedical\": 5357.832844235147,\n            \"Datacenter\": 7042.704786758977,\n            \"RetailEquipment\": 5596.5066253929745,\n            \"RefrigerationGeneral\": 3544.734587480298,\n            \"ColdStorage\": 9426.484349723352,\n            \"ProcessCooling\": 2817.644943826556,\n            \"PlugIn\": 3925.92272560812,\n            \"TransportGeneral\": 5687.784189927536,\n            \"Elevators\": 756.0961869857663,\n            \"Escalators\": 5583.539181394725,\n            \"EvChargingGeneral\": 6120.978134810911,\n            \"AcCharging\": 9853.381686097691,\n            \"DcFastCharging\": 3479.4017371821596,\n            \"OutdoorSystemsGeneral\": 6466.799354193533,\n            \"SnowMelting\": 4424.75293810181,\n            \"Irrigation\": 3762.8802602449696,\n            \"SiteEquipment\": 3360.266465839874,\n            \"OtherGeneral\": 9926.415884953702,\n            \"EmergencySystems\": 1665.0579799384534,\n            \"Unclassified\": 2234.276286286134\n          },\n          \"EvCharging\": {\n            \"HvacGeneral\": 8401.378104212425,\n            \"HeatExchangers\": 4253.722235231135,\n            \"SpaceCooling\": 8346.710708502782,\n            \"Ventilation\": 2295.188469522114,\n            \"PumpsAndCirculation\": 9100.471813951019,\n            \"HeatRecovery\": 95.19997726380237,\n            \"HeatPumps\": 4109.647475034854,\n            \"AuxiliaryVentilation\": 5908.161974735844,\n            \"SpaceHeating\": 4339.4267407415255,\n            \"UnderFloorSpaceHeating\": 991.4899157938684,\n            \"HotAirPort\": 2469.1423451144788,\n            \"LightingGeneral\": 6742.084465368541,\n            \"IndoorLighting\": 3141.1295893372594,\n            \"OutdoorLighting\": 7725.613663714057,\n            \"EmergencyLighting\": 434.0463357612334,\n            \"DhwGeneral\": 7838.41765834361,\n            \"WaterHeating\": 3639.103935595669,\n            \"DhwCirculation\": 5857.778965845588,\n            \"PlugLoadsGeneral\": 7713.771018838349,\n            \"OfficeEquipment\": 182.6071100077331,\n            \"ItServers\": 2073.3016969789464,\n            \"ProcessLoadsGeneral\": 7801.844180650477,\n            \"KitchenCatering\": 51.79896337496048,\n            \"LabMedical\": 4572.538077772372,\n            \"Datacenter\": 785.4715143624968,\n            \"RetailEquipment\": 453.67916923360286,\n            \"RefrigerationGeneral\": 8827.126662218725,\n            \"ColdStorage\": 5461.278771836355,\n            \"ProcessCooling\": 3926.1638399727917,\n            \"PlugIn\": 5207.378256332966,\n            \"TransportGeneral\": 3681.42041887195,\n            \"Elevators\": 2806.3379158703315,\n            \"Escalators\": 3059.2038921661824,\n            \"EvChargingGeneral\": 2067.3985080855095,\n            \"AcCharging\": 8344.768091522257,\n            \"DcFastCharging\": 3764.0973001220755,\n            \"OutdoorSystemsGeneral\": 6134.965230991822,\n            \"SnowMelting\": 1304.6723217382005,\n            \"Irrigation\": 346.8821474640893,\n            \"SiteEquipment\": 6075.704306978549,\n            \"OtherGeneral\": 8076.550700858566,\n            \"EmergencySystems\": 6849.019760866877,\n            \"Unclassified\": 2720.7507285229094\n          },\n          \"OutdoorSystems\": {\n            \"HvacGeneral\": 412.5242234603244,\n            \"HeatExchangers\": 909.4652065993314,\n            \"SpaceCooling\": 3146.2344489701954,\n            \"Ventilation\": 2781.7671793028608,\n            \"PumpsAndCirculation\": 1034.7941204748845,\n            \"HeatRecovery\": 6798.892711464712,\n            \"HeatPumps\": 4693.47194539703,\n            \"AuxiliaryVentilation\": 2379.212356670877,\n            \"SpaceHeating\": 5039.940133007834,\n            \"UnderFloorSpaceHeating\": 4622.480586062574,\n            \"HotAirPort\": 1426.8806394603882,\n            \"LightingGeneral\": 1478.9713063830457,\n            \"IndoorLighting\": 1873.1372471147133,\n            \"OutdoorLighting\": 8910.497797173512,\n            \"EmergencyLighting\": 3609.899074527807,\n            \"DhwGeneral\": 9186.928017245442,\n            \"WaterHeating\": 9802.813485269646,\n            \"DhwCirculation\": 7261.106076563502,\n            \"PlugLoadsGeneral\": 3327.706994102173,\n            \"OfficeEquipment\": 255.04649745169417,\n            \"ItServers\": 4951.452141068873,\n            \"ProcessLoadsGeneral\": 4351.624402330987,\n            \"KitchenCatering\": 8903.39040119804,\n            \"LabMedical\": 734.267697226858,\n            \"Datacenter\": 4117.83807899506,\n            \"RetailEquipment\": 6606.5734220504655,\n            \"RefrigerationGeneral\": 354.43837306045054,\n            \"ColdStorage\": 724.2859132473623,\n            \"ProcessCooling\": 4014.130156499931,\n            \"PlugIn\": 6698.860847014347,\n            \"TransportGeneral\": 5679.447987021149,\n            \"Elevators\": 4119.40626860358,\n            \"Escalators\": 6575.780549478105,\n            \"EvChargingGeneral\": 7394.128103150588,\n            \"AcCharging\": 5856.660129410693,\n            \"DcFastCharging\": 1336.537141563654,\n            \"OutdoorSystemsGeneral\": 7548.61525453701,\n            \"SnowMelting\": 2364.0052153957126,\n            \"Irrigation\": 6584.314866982153,\n            \"SiteEquipment\": 829.8483257863687,\n            \"OtherGeneral\": 3752.0623889802305,\n            \"EmergencySystems\": 7141.692692032187,\n            \"Unclassified\": 1482.2318694547332\n          },\n          \"Other\": {\n            \"HvacGeneral\": 7550.019968636295,\n            \"HeatExchangers\": 292.61059147756896,\n            \"SpaceCooling\": 8459.010804935151,\n            \"Ventilation\": 334.19755179346475,\n            \"PumpsAndCirculation\": 3618.871192076236,\n            \"HeatRecovery\": 8010.893824064811,\n            \"HeatPumps\": 8558.202527691208,\n            \"AuxiliaryVentilation\": 8232.710419302894,\n            \"SpaceHeating\": 5157.59202099924,\n            \"UnderFloorSpaceHeating\": 9605.010609413874,\n            \"HotAirPort\": 7161.0887624672805,\n            \"LightingGeneral\": 19.82835428177676,\n            \"IndoorLighting\": 8964.37728154562,\n            \"OutdoorLighting\": 6056.558341623444,\n            \"EmergencyLighting\": 6619.035208566888,\n            \"DhwGeneral\": 3807.676785408145,\n            \"WaterHeating\": 2329.605735359781,\n            \"DhwCirculation\": 159.15861940713148,\n            \"PlugLoadsGeneral\": 4700.432150450931,\n            \"OfficeEquipment\": 8238.28839776376,\n            \"ItServers\": 4966.501692654259,\n            \"ProcessLoadsGeneral\": 1298.4921435869867,\n            \"KitchenCatering\": 9343.979292128364,\n            \"LabMedical\": 9286.32178599271,\n            \"Datacenter\": 1620.3785772987223,\n            \"RetailEquipment\": 4762.664935985595,\n            \"RefrigerationGeneral\": 5321.372271321203,\n            \"ColdStorage\": 2933.3640667566806,\n            \"ProcessCooling\": 1892.77906827237,\n            \"PlugIn\": 4597.473080567609,\n            \"TransportGeneral\": 7359.938749964259,\n            \"Elevators\": 7816.390946564488,\n            \"Escalators\": 670.2732528929412,\n            \"EvChargingGeneral\": 5732.26272411693,\n            \"AcCharging\": 6731.199135112702,\n            \"DcFastCharging\": 6094.897194949187,\n            \"OutdoorSystemsGeneral\": 7115.34035278198,\n            \"SnowMelting\": 4449.562085935488,\n            \"Irrigation\": 8856.088275811995,\n            \"SiteEquipment\": 1945.1956936967974,\n            \"OtherGeneral\": 2218.47754478411,\n            \"EmergencySystems\": 6881.152341937722,\n            \"Unclassified\": 4481.425403278663\n          },\n          \"Unallocated\": {\n            \"HvacGeneral\": 2435.7995839498312,\n            \"HeatExchangers\": 8698.37416201687,\n            \"SpaceCooling\": 2575.35934137195,\n            \"Ventilation\": 2247.2837054834736,\n            \"PumpsAndCirculation\": 6181.764305575605,\n            \"HeatRecovery\": 4254.311508169623,\n            \"HeatPumps\": 8432.937988575184,\n            \"AuxiliaryVentilation\": 6300.073451478403,\n            \"SpaceHeating\": 2795.0140250557374,\n            \"UnderFloorSpaceHeating\": 4523.999582085787,\n            \"HotAirPort\": 1478.2026712800823,\n            \"LightingGeneral\": 4893.978790053779,\n            \"IndoorLighting\": 782.4512757946889,\n            \"OutdoorLighting\": 6124.640053957127,\n            \"EmergencyLighting\": 513.4236908667855,\n            \"DhwGeneral\": 9942.878097166806,\n            \"WaterHeating\": 9850.176406695116,\n            \"DhwCirculation\": 4630.591763076888,\n            \"PlugLoadsGeneral\": 2529.064984178375,\n            \"OfficeEquipment\": 9426.193860504227,\n            \"ItServers\": 3938.8466869312897,\n            \"ProcessLoadsGeneral\": 5896.241388974428,\n            \"KitchenCatering\": 201.81309284016402,\n            \"LabMedical\": 5636.58190211835,\n            \"Datacenter\": 7797.871255640969,\n            \"RetailEquipment\": 2436.7305043930055,\n            \"RefrigerationGeneral\": 1204.0573232779695,\n            \"ColdStorage\": 5997.573262978826,\n            \"ProcessCooling\": 1061.0572483574354,\n            \"PlugIn\": 8220.094566560543,\n            \"TransportGeneral\": 8962.112879330565,\n            \"Elevators\": 3807.4705849418724,\n            \"Escalators\": 2179.1900860784576,\n            \"EvChargingGeneral\": 8155.294605891035,\n            \"AcCharging\": 1631.6634983463584,\n            \"DcFastCharging\": 7365.310826587497,\n            \"OutdoorSystemsGeneral\": 547.5206507757946,\n            \"SnowMelting\": 4739.482049828543,\n            \"Irrigation\": 3952.2156940856457,\n            \"SiteEquipment\": 4512.039189124393,\n            \"OtherGeneral\": 7494.569854803368,\n            \"EmergencySystems\": 2865.4979519459102,\n            \"Unclassified\": 6345.236697219132\n          }\n        },\n        \"comment\": \"string\"\n      },\n      \"meterTenantDistribution\": {\n        \"fromDate\": \"1954-01-12\",\n        \"distributions\": [\n          {\n            \"tenant\": {\n              \"id\": 8215,\n              \"siteId\": 8112,\n              \"name\": \"string\",\n              \"shortname\": \"string\",\n              \"description\": \"string\",\n              \"isArchived\": false,\n              \"isDefault\": false,\n              \"createdAt\": \"1984-06-27T08:33:22.675Z\",\n              \"lastUpdatedAt\": \"1996-01-24T13:30:04.100Z\",\n              \"notes\": \"string\",\n              \"contactPerson\": \"string\",\n              \"contactPhone\": \"string\",\n              \"contactEmail\": \"string\",\n              \"invoiceEmail\": \"string\",\n              \"invoicePoReference\": \"string\",\n              \"otherInvoiceInformation\": \"string\",\n              \"configuration\": {\n                \"organizationNumber\": \"string\"\n              }\n            },\n            \"value\": 207.91439367114916\n          }\n        ],\n        \"comment\": \"string\"\n      }\n    }\n  ]\n}"},{"id":"019d848c-2568-4d43-a75d-1c8fd884632d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/structure","host":["/"],"path":["api","v1","sites",":siteId","meter-structure","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0e7d4229-8ddd-42e2-95d0-9a25f04fc162","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/structure","host":["/"],"path":["api","v1","sites",":siteId","meter-structure","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d67a0f89-eeee-4931-ac55-8d0dc4933bbd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/structure","host":["/"],"path":["api","v1","sites",":siteId","meter-structure","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7ec98ded-bd89-4671-81c5-9721d4e652a4","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/structure","host":["/"],"path":["api","v1","sites",":siteId","meter-structure","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"8690ec2c-943b-4ba3-bf0b-d5d99fdcb834"},{"name":"Meter Structure Get All Meters","id":"754ded16-710e-4258-ae88-f332ffe51ce2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meter-structure","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meter-structure"],"host":["/"],"query":[{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"}],"variable":[{"type":"any","value":"1170","key":"siteId"}]}},"response":[{"id":"a46ad6ee-ae1b-4ca2-81c1-5f799af48c63","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","meter-structure"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"meterId\": 6400,\n      \"name\": \"string\"\n    },\n    {\n      \"meterId\": 3854,\n      \"name\": \"string\"\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 7820,\n    \"pageSize\": 628,\n    \"currentPage\": 5492,\n    \"hasPrevious\": true,\n    \"hasNext\": true,\n    \"totalPages\": 6861\n  }\n}"},{"id":"7c4a5dd5-8a35-4dca-8c19-15d2a92589e0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","meter-structure"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f604c3e0-2a07-4b24-8738-6e7eb646b60e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","meter-structure"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2bae5681-3940-4a61-90d1-9eefa567ce52","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","meter-structure"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"754ded16-710e-4258-ae88-f332ffe51ce2"},{"name":"Meter Structure Get By Id","id":"3ba4ef7a-9c5b-436d-a73d-786018593039","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meter-structure/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meter-structure",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1170","key":"siteId"},{"type":"any","value":"2","key":"id"}]}},"response":[{"id":"0ca9e023-98d5-49f4-94ea-961df893045f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/:id","host":["/"],"path":["api","v1","sites",":siteId","meter-structure",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4367,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"notes\": \"string\",\n  \"sourceType\": 1,\n  \"type\": \"string\",\n  \"parentId\": 9543,\n  \"config\": {\n    \"symbol\": \"string\"\n  }\n}"},{"id":"e916e235-b0d5-4d00-b3df-390338f1dcb9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/:id","host":["/"],"path":["api","v1","sites",":siteId","meter-structure",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3d0ea513-e5c3-48ea-9450-69273b2199e8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/:id","host":["/"],"path":["api","v1","sites",":siteId","meter-structure",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f34dad92-cfcb-4e4e-85a9-ccfdf36699c5","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/:id","host":["/"],"path":["api","v1","sites",":siteId","meter-structure",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bf6fcba8-b1b5-4391-a494-caaaa5d96a08","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meter-structure/:id","host":["/"],"path":["api","v1","sites",":siteId","meter-structure",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3ba4ef7a-9c5b-436d-a73d-786018593039"}],"id":"48cb4805-f0d5-44a0-8b98-94563b20f2e9","_postman_id":"48cb4805-f0d5-44a0-8b98-94563b20f2e9","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"Parameter","item":[{"name":"Parameter Get Parameters","id":"2076a89d-c0b8-40a3-be33-caa09019101e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/parameters","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","parameters"],"host":["/"],"query":[{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"},{"disabled":true,"key":"Name","value":"string"}],"variable":[{"type":"any","value":"15","key":"siteId"}]}},"response":[{"id":"9083ca10-4aa1-46c2-8296-473cbb3ad121","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"parameterId\": 8339,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"parameterPath\": \"string\",\n      \"lastLogDate\": \"1995-12-11T06:08:16.407Z\",\n      \"lastStringValue\": \"string\",\n      \"lastFloatValue\": 8108.454430810517,\n      \"isOnline\": false,\n      \"isAlertingActive\": true,\n      \"measurementTypeId\": 6878\n    },\n    {\n      \"parameterId\": 8147,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"parameterPath\": \"string\",\n      \"lastLogDate\": \"2011-02-28T18:53:03.189Z\",\n      \"lastStringValue\": \"string\",\n      \"lastFloatValue\": 2515.163814942223,\n      \"isOnline\": false,\n      \"isAlertingActive\": false,\n      \"measurementTypeId\": 5518\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 6045,\n    \"pageSize\": 6386,\n    \"currentPage\": 6001,\n    \"hasPrevious\": false,\n    \"hasNext\": true,\n    \"totalPages\": 282\n  }\n}"},{"id":"307a4bc1-ea0f-4263-a762-fe0a4ceeb431","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"4e0f5562-93e7-4088-82fe-a6e4d614adda","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9d38f88b-45c9-4a38-b858-e573705cb206","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a49d56b2-2b45-4570-9e52-857989734b24","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"40391ea5-5680-49f2-bf05-149f5298aeea","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters?PageNumber=2339&PageSize=2339&Offset=2339&Name=string","host":["/"],"path":["api","v1","sites",":siteId","parameters"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"},{"key":"Name","value":"string"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2076a89d-c0b8-40a3-be33-caa09019101e"},{"name":"Parameter Get Parameter","id":"d73d094c-0e64-4724-9028-43e382fde229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/parameters/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","parameters",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"siteId"},{"type":"any","value":"1076","key":"id"}]}},"response":[{"id":"eb8b7ab4-00f3-4e3f-9c1a-c23d73c217a3","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"parameterId\": 8749,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"parameterPath\": \"string\",\n  \"lastLogDate\": \"1994-06-25T10:27:10.765Z\",\n  \"lastStringValue\": \"string\",\n  \"lastFloatValue\": 4011.173156900707,\n  \"isOnline\": true,\n  \"isAlertingActive\": false,\n  \"measurementTypeId\": 3107\n}"},{"id":"1c3f35fc-0b84-4438-ac61-70a520c6350a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"485e46f5-eb4c-4c69-9b38-d82b8a90649e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1d165925-b82d-4cd3-b799-e5db3bf51fde","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"49c86fdf-ddab-4730-b3db-a4e3e99e4e88","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1ff21db5-b7b9-4a97-8017-b245b39a8c7a","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"d73d094c-0e64-4724-9028-43e382fde229"},{"name":"Parameter Get Parameter Details","id":"2b2028ac-f99d-4577-9a8b-56805c3f199f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/parameters/:id/details","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","parameters",":id","details"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"siteId"},{"type":"any","value":"1076","key":"id"}]}},"response":[{"id":"38e4dfa0-7a28-480c-a624-11f888d806d3","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"parameterId\": 5549,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"friendlyName\": \"string\",\n  \"infrastructurePath\": \"string\",\n  \"parameterPath\": \"string\",\n  \"radioAddress\": \"string\",\n  \"pollingInterval\": 9630\n}"},{"id":"43047fa1-03d8-4737-9fb5-788514add038","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"593e17c0-8f0d-44de-9d3f-55c848b1a2dc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3013647b-70cc-4b03-bf17-fc72ea4b9c2f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"fc12667c-5175-4721-8ac9-8b892b171ad5","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bd715b76-923c-46d7-ac86-04dc49635373","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/parameters/:id/details","host":["/"],"path":["api","v1","sites",":siteId","parameters",":id","details"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2b2028ac-f99d-4577-9a8b-56805c3f199f"}],"id":"adcb028e-c50a-4feb-8d5a-a920365ee934","_postman_id":"adcb028e-c50a-4feb-8d5a-a920365ee934","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"ParameterDeviations","item":[{"name":"Parameter Deviations List Active Deviations","id":"92fa06d8-3595-4dc2-9544-fa1579e2667c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/deviations/active","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","deviations","active"],"host":["/"],"query":[{"disabled":true,"key":"State","value":"OutOfLimit"},{"disabled":true,"key":"SourceType","value":"Manual"},{"disabled":true,"key":"ParameterIds","value":"4857"},{"disabled":true,"key":"ParameterIds","value":"4857"}],"variable":[{"type":"any","value":"15","key":"siteId"}]}},"response":[{"id":"e6f0626d-05c7-4580-8f66-eddea960e04c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/deviations/active?State=OutOfLimit&SourceType=Manual&ParameterIds=4857","host":["/"],"path":["api","v1","sites",":siteId","deviations","active"],"query":[{"key":"State","value":"OutOfLimit"},{"key":"SourceType","value":"Manual"},{"key":"ParameterIds","value":"4857"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 3421,\n    \"parameterId\": 9950,\n    \"deviationSourceType\": \"Manual\",\n    \"state\": \"Ok\",\n    \"acknowledgeSchemaCategory\": {\n      \"id\": 3737,\n      \"name\": \"string\"\n    },\n    \"createdDate\": \"1977-11-03T02:44:44.987Z\",\n    \"isFollowUp\": false,\n    \"displayName\": \"string\",\n    \"description\": \"string\",\n    \"reportedBy\": \"string\",\n    \"acknowledgedBy\": \"string\",\n    \"acknowledgedTime\": \"2006-08-01T18:38:59.324Z\",\n    \"firstTimeOutOfLimit\": \"1973-05-05T00:31:08.638Z\",\n    \"lastTimeOutOfLimit\": \"2017-12-03T22:08:07.317Z\",\n    \"alertedTime\": \"1967-03-31T19:18:05.037Z\"\n  },\n  {\n    \"id\": 9770,\n    \"parameterId\": 3806,\n    \"deviationSourceType\": \"Automatic\",\n    \"state\": \"Deviation\",\n    \"acknowledgeSchemaCategory\": {\n      \"id\": 4962,\n      \"name\": \"string\"\n    },\n    \"createdDate\": \"1951-10-06T21:46:04.657Z\",\n    \"isFollowUp\": true,\n    \"displayName\": \"string\",\n    \"description\": \"string\",\n    \"reportedBy\": \"string\",\n    \"acknowledgedBy\": \"string\",\n    \"acknowledgedTime\": \"2025-12-18T17:51:12.748Z\",\n    \"firstTimeOutOfLimit\": \"1976-03-03T16:33:05.294Z\",\n    \"lastTimeOutOfLimit\": \"1976-05-02T18:54:56.111Z\",\n    \"alertedTime\": \"1988-01-29T08:02:52.110Z\"\n  }\n]"},{"id":"9ee0ceff-36e0-468f-bbcd-83f95979f81b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/deviations/active?State=OutOfLimit&SourceType=Manual&ParameterIds=4857","host":["/"],"path":["api","v1","sites",":siteId","deviations","active"],"query":[{"key":"State","value":"OutOfLimit"},{"key":"SourceType","value":"Manual"},{"key":"ParameterIds","value":"4857"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"656d33d4-347c-40d7-9435-46043cc37c88","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/deviations/active?State=OutOfLimit&SourceType=Manual&ParameterIds=4857","host":["/"],"path":["api","v1","sites",":siteId","deviations","active"],"query":[{"key":"State","value":"OutOfLimit"},{"key":"SourceType","value":"Manual"},{"key":"ParameterIds","value":"4857"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"4baabbf1-3ca8-49ae-8976-a6868017e535","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/deviations/active?State=OutOfLimit&SourceType=Manual&ParameterIds=4857","host":["/"],"path":["api","v1","sites",":siteId","deviations","active"],"query":[{"key":"State","value":"OutOfLimit"},{"key":"SourceType","value":"Manual"},{"key":"ParameterIds","value":"4857"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"376c5eda-9167-4a88-9421-432789b97023","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/deviations/active?State=OutOfLimit&SourceType=Manual&ParameterIds=4857","host":["/"],"path":["api","v1","sites",":siteId","deviations","active"],"query":[{"key":"State","value":"OutOfLimit"},{"key":"SourceType","value":"Manual"},{"key":"ParameterIds","value":"4857"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"92fa06d8-3595-4dc2-9544-fa1579e2667c"},{"name":"Parameter Deviations Acknowledge Deviations Batch","id":"8b925b7f-f878-43a6-a3fb-ee26187668d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"//api/v1/sites/:siteId/deviations/acknowledge","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","deviations","acknowledge"],"host":["/"],"query":[],"variable":[{"type":"any","value":"2339","key":"siteId"}]}},"response":[{"id":"06333122-9ef0-479d-8b47-d0df34a8c63e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//api/v1/sites/:siteId/deviations/acknowledge","host":["/"],"path":["api","v1","sites",":siteId","deviations","acknowledge"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"acknowledgedCount\": 9188,\n  \"results\": [\n    {\n      \"parameterId\": 5660,\n      \"deviationSourceType\": \"Manual\",\n      \"status\": \"MissingData\",\n      \"logId\": 3943\n    },\n    {\n      \"parameterId\": 1933,\n      \"deviationSourceType\": \"Manual\",\n      \"status\": \"NotFound\",\n      \"logId\": 3288\n    }\n  ]\n}"},{"id":"4af55059-b2cd-4e82-8145-6f1c21ef8cdd","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//api/v1/sites/:siteId/deviations/acknowledge","host":["/"],"path":["api","v1","sites",":siteId","deviations","acknowledge"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"7cd4a51d-91ce-469a-bb4b-d7fdf03861dd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//api/v1/sites/:siteId/deviations/acknowledge","host":["/"],"path":["api","v1","sites",":siteId","deviations","acknowledge"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9db1936b-8d55-4920-8cc6-67b6399a74ce","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//api/v1/sites/:siteId/deviations/acknowledge","host":["/"],"path":["api","v1","sites",":siteId","deviations","acknowledge"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3777479e-79b8-4572-ab31-965c8a20a1f1","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/problem+json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"categoryId\": 6187,\n  \"deviations\": [\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 7927,\n      \"manualMeasurementId\": 2489\n    },\n    {\n      \"deviationSourceType\": \"Manual\",\n      \"parameterId\": 8422,\n      \"manualMeasurementId\": 1551\n    }\n  ],\n  \"checkedItems\": [\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    },\n    {\n      \"name\": \"string\",\n      \"checked\": false\n    }\n  ],\n  \"comment\": \"string\",\n  \"sectionComments\": [\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    },\n    {\n      \"section\": \"Object\",\n      \"comment\": \"string\"\n    }\n  ],\n  \"isWorkInProgress\": true,\n  \"email\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"//api/v1/sites/:siteId/deviations/acknowledge","host":["/"],"path":["api","v1","sites",":siteId","deviations","acknowledge"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/problem+json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"8b925b7f-f878-43a6-a3fb-ee26187668d7"}],"id":"1da4a64b-ad56-4466-89fd-b55a663dbe1a","_postman_id":"1da4a64b-ad56-4466-89fd-b55a663dbe1a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"SiteInformation","item":[{"name":"Site Information Get All","id":"560abcb6-0e8e-438b-8c46-a7a48fe65a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/site-information","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites","site-information"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"7acf47ce-af8d-47ba-bf81-8280cff3608c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/sites/site-information"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"siteId\": 5553,\n    \"buildingTypeId\": 3576,\n    \"netArea\": 4272,\n    \"grossArea\": 2769,\n    \"constructionDate\": \"1997-01-27T13:45:54.803Z\",\n    \"renovationDate\": \"2017-01-16T17:33:48.266Z\",\n    \"energyCharacter\": 3,\n    \"calculationMethod\": 2,\n    \"degreeDayCorrection\": 6917.197483170101\n  },\n  {\n    \"siteId\": 9808,\n    \"buildingTypeId\": 2307,\n    \"netArea\": 7667,\n    \"grossArea\": 7457,\n    \"constructionDate\": \"1994-01-03T04:08:37.584Z\",\n    \"renovationDate\": \"1994-06-08T20:16:41.781Z\",\n    \"energyCharacter\": 7,\n    \"calculationMethod\": 6,\n    \"degreeDayCorrection\": 4220.979652993422\n  }\n]"},{"id":"249c678a-cbce-4328-8fc7-07e6d21c47be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/sites/site-information"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d9a868cb-6efa-41da-aff4-378f881c847f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/sites/site-information"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"51bd365f-1614-4afa-ad33-204012485b78","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"//api/v1/sites/site-information"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"560abcb6-0e8e-438b-8c46-a7a48fe65a34"},{"name":"Site Information Get By Site Id","id":"9ffe8739-6e2b-4dbb-9792-250665ade5ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/site-information","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","site-information"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"d2aaa498-6cd9-40c4-9be1-d2d5bba34aff","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/site-information","host":["/"],"path":["api","v1","sites",":siteId","site-information"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"siteId\": 8976,\n  \"buildingTypeId\": 4125,\n  \"netArea\": 9464,\n  \"grossArea\": 1985,\n  \"constructionDate\": \"2004-03-20T16:27:47.660Z\",\n  \"renovationDate\": \"1984-03-18T20:47:07.344Z\",\n  \"energyCharacter\": 2,\n  \"calculationMethod\": 1,\n  \"degreeDayCorrection\": 5019.574796853465\n}"},{"id":"1b92ddf3-478f-44d4-9b1d-a1b644004e1e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/site-information","host":["/"],"path":["api","v1","sites",":siteId","site-information"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"cdaacd6e-607f-4309-862c-ca3fda02ffff","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/site-information","host":["/"],"path":["api","v1","sites",":siteId","site-information"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dd417360-bc74-45d0-a3e4-5933c1a8dd0b","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/site-information","host":["/"],"path":["api","v1","sites",":siteId","site-information"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d4c1d579-c921-45f2-8c43-b219eeb3f381","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/site-information","host":["/"],"path":["api","v1","sites",":siteId","site-information"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"9ffe8739-6e2b-4dbb-9792-250665ade5ad"}],"id":"4e171603-07a9-44e6-98d7-9c5c6090cbea","_postman_id":"4e171603-07a9-44e6-98d7-9c5c6090cbea","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"Sites","item":[{"name":"Sites Get All Sites","id":"d9c01672-c432-4ecf-b521-02143bc2f257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites"],"host":["/"],"query":[{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"}],"variable":[]}},"response":[{"id":"4d00bf55-f2ad-41ec-928d-7e48f4638cb1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 2674,\n      \"name\": \"string\",\n      \"created\": \"1993-01-11T03:50:43.537Z\",\n      \"timeZone\": \"string\",\n      \"state\": \"Deactivated\",\n      \"description\": \"string\",\n      \"address\": \"string\",\n      \"postalCode\": \"string\",\n      \"city\": \"string\",\n      \"latitude\": 923.9363469399109,\n      \"longitude\": 4548.304919836266,\n      \"companyGLNNo\": \"string\"\n    },\n    {\n      \"id\": 3801,\n      \"name\": \"string\",\n      \"created\": \"1994-11-08T03:02:29.590Z\",\n      \"timeZone\": \"string\",\n      \"state\": \"Deactivated\",\n      \"description\": \"string\",\n      \"address\": \"string\",\n      \"postalCode\": \"string\",\n      \"city\": \"string\",\n      \"latitude\": 9433.096588808756,\n      \"longitude\": 7578.865860877744,\n      \"companyGLNNo\": \"string\"\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 8948,\n    \"pageSize\": 3882,\n    \"currentPage\": 4497,\n    \"hasPrevious\": false,\n    \"hasNext\": false,\n    \"totalPages\": 8841\n  }\n}"},{"id":"214f7dde-c011-4a44-80e0-b912012449f9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"59c47636-e803-4f0c-a9bf-c351a3c91aeb","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"793a603b-9556-49d2-9b28-595505ff2e70","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ccde204d-611a-43a5-9e8f-e261cbfbffc8","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"d9c01672-c432-4ecf-b521-02143bc2f257"},{"name":"Sites Get Site","id":"3596584b-7ee0-447a-9209-769dd6c87861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"15","key":"id"}]}},"response":[{"id":"a556b79f-ffd5-4301-9bf4-5d04b2a1dd62","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:id","host":["/"],"path":["api","v1","sites",":id"],"variable":[{"key":"id","value":"791"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5822,\n  \"name\": \"string\",\n  \"created\": \"1949-04-10T10:59:20.564Z\",\n  \"timeZone\": \"string\",\n  \"state\": \"Deactivated\",\n  \"description\": \"string\",\n  \"address\": \"string\",\n  \"postalCode\": \"string\",\n  \"city\": \"string\",\n  \"latitude\": 8799.842678495941,\n  \"longitude\": 3251.9060229197485,\n  \"companyGLNNo\": \"string\"\n}"},{"id":"0e11dbea-911b-41ca-8c84-f87f79103845","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:id","host":["/"],"path":["api","v1","sites",":id"],"variable":[{"key":"id","value":"791"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"850bfb84-8810-41bd-938d-e2f2e865dae3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:id","host":["/"],"path":["api","v1","sites",":id"],"variable":[{"key":"id","value":"791"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9db07383-32ae-4825-ab83-4b922375197a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:id","host":["/"],"path":["api","v1","sites",":id"],"variable":[{"key":"id","value":"791"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"480b9499-ca8d-432a-a6fa-d005bc0173f2","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:id","host":["/"],"path":["api","v1","sites",":id"],"variable":[{"key":"id","value":"791"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3596584b-7ee0-447a-9209-769dd6c87861"}],"id":"e0bc4ceb-f88a-4839-9265-d619da8332ea","_postman_id":"e0bc4ceb-f88a-4839-9265-d619da8332ea","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"SolarProduction","item":[{"name":"Solar Production Get Solar Production As Sum","id":"959933dc-41fc-452a-a8cb-a0650deaf593","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","solar-production","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"9a7b95ec-eb88-4dfb-916c-9557a024f0d1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1974-11-05T01:10:45.337Z\",\n  \"production\": 5178.157244176054\n}"},{"id":"2b118fec-56f6-49dc-8c44-4f5484839335","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"4651ac3c-6e17-4014-a075-e0bb264c7409","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3d7e1bfe-f7ca-4b0c-ace8-e02eed5d07e3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"b58fbf54-a8be-462d-8c51-7e15a00a9004","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"4f8c6e09-bcf5-4701-826c-933af0e24245","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-sum?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"959933dc-41fc-452a-a8cb-a0650deaf593"},{"name":"Solar Production Get Solar Production As Series","id":"a54c5da2-918b-40a1-9a31-4f9787add4f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3&ExcludeMeterCategories=8&ExcludeMeterCategories=8&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","solar-production","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"e81f8ea7-1145-4e01-bbe3-13bddb91556f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1996-09-06T07:49:42.028Z\",\n    \"production\": 3608.1181018440357\n  },\n  {\n    \"logDate\": \"2002-12-07T18:15:43.825Z\",\n    \"production\": 147.23849042451943\n  }\n]"},{"id":"934a2e29-799c-4cdc-b08f-b5fd2ec63653","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"dd76e171-a2a0-4815-99c5-b4891cf1892b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"251a5b88-aa47-4f5f-9bf0-a189374b1809","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7bc458e7-2ec5-4470-8de5-a0bdea8e5ca8","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8fc0cece-d3ee-492e-bcea-d592b5679cf2","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/solar-production/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3&ExcludeMeterCategories=8&DegreeDayCorrection=true","host":["/"],"path":["api","v1","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"},{"key":"ExcludeMeterCategories","value":"8"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a54c5da2-918b-40a1-9a31-4f9787add4f9"}],"id":"0919b40d-a303-4afe-a218-18733304d1b0","_postman_id":"0919b40d-a303-4afe-a218-18733304d1b0","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"Temperature","item":[{"name":"Temperature Get Temperature By Groups","id":"facc3b47-5117-4f9b-8594-b0349370282d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature","all","as-average"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"44f2c0f0-c40e-44f1-8309-1596929682ef","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Indoor\": {\n    \"logDate\": \"2026-05-25T21:29:40.417Z\",\n    \"temperature\": 8178.564696425506\n  },\n  \"Outdoor\": {\n    \"logDate\": \"1999-07-24T09:57:13.402Z\",\n    \"temperature\": 4442.663170473631\n  }\n}"},{"id":"36e0cdc3-880e-4c4a-ba6b-3dfbfed10978","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"641a242a-fb3f-4fe7-aa41-ab5c4fcbd804","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"bf758be9-25b5-435b-8cde-1df3c4ae3fa8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"593e3315-3f52-47bf-b57f-4fff4582fd4e","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"811d0380-18fb-4ec7-bdc1-99f8a1c88255","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/all/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","all","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"facc3b47-5117-4f9b-8594-b0349370282d"},{"name":"Temperature Get Indoor Temperature As Series","id":"40080ca5-72f3-4d22-9ee9-ee1b325a2a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"b126c6c0-f7a1-428b-9de1-8e278453333c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1993-03-26T08:52:21.432Z\",\n    \"temperature\": 8384.585575424167\n  },\n  {\n    \"logDate\": \"1960-12-08T19:18:52.428Z\",\n    \"temperature\": 6849.795145873037\n  }\n]"},{"id":"e3d800ec-18b3-42a5-a9c4-805ab5e53d7e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"7d85b0e2-8946-40d8-803f-b4db22a143f3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"e4939b3a-713d-49e3-92f9-2a8c27662d06","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"18f484c2-9ea4-4a65-94bb-a655d7f2a247","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"995b59f2-ad55-4cb3-9f9c-70b0812699df","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"40080ca5-72f3-4d22-9ee9-ee1b325a2a0f"},{"name":"Temperature Get Indoor Temperature As Average","id":"71359fe0-0723-4f1d-b694-ad046cc1a833","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"d6d00dac-e3a1-4f7b-9368-a05c6fb1dc17","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1976-06-01T11:39:52.345Z\",\n  \"temperature\": 9031.31387853032\n}"},{"id":"3698f301-f85f-4332-ad90-be754290a0f8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"a16e5ca4-5804-44a3-a28b-693b043cb5f8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"5d2a88b7-6b34-4ddf-b06d-5fe3b94f6696","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0ff2e710-ce35-409c-b4a3-50d17274fff6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"334a40d4-5a50-41d5-b775-1d638a14dd1d","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/indoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","indoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"71359fe0-0723-4f1d-b694-ad046cc1a833"},{"name":"Temperature Get Outdoor Temperature As Series","id":"21cf342a-9eb6-43f3-830d-a900d5be90f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"308fe740-c1e6-421e-b7db-7dfcf6d09df2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"logDate\": \"1993-03-26T08:52:21.432Z\",\n    \"temperature\": 8384.585575424167\n  },\n  {\n    \"logDate\": \"1960-12-08T19:18:52.428Z\",\n    \"temperature\": 6849.795145873037\n  }\n]"},{"id":"f10c0f85-3021-4465-817e-07dfc431dc35","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"85c1de0e-4ba1-4a02-98b2-d9cdefa6378c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d5cc7e7a-9907-479d-bca4-f69a4caf174e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a543fa19-9394-4d13-93c7-5ef120116bf3","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"5471f1ad-4861-4b71-8706-932596bbe4be","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-series?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-series"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"21cf342a-9eb6-43f3-830d-a900d5be90f4"},{"name":"Temperature Get Outdoor Temperature As Average","id":"3c6d2596-f778-42cf-b3ba-5e70063125b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=3","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"3"}],"variable":[{"type":"any","value":"1170","key":"siteId"}]}},"response":[{"id":"42245384-d182-4c17-b78e-7a790f8390a3","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"logDate\": \"1976-06-01T11:39:52.345Z\",\n  \"temperature\": 9031.31387853032\n}"},{"id":"f573bb26-cacc-45c8-b673-dbb2cb19ba15","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 1219,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"e416585f-2989-48ad-8269-021426f35be0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dd3911c3-b54e-4f89-886c-3d2ce4f16c61","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8a26d2f4-b675-4fef-9428-fbabf5038934","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9d5010cf-f6e3-43b4-b6c4-42f22ce9301e","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature/outdoor/as-average?FromDate=1974-10-01T10:48:35.907Z&ToDate=1974-10-01T10:48:35.907Z&Resolution=3","host":["/"],"path":["api","v1","sites",":siteId","temperature","outdoor","as-average"],"query":[{"key":"FromDate","value":"1974-10-01T10:48:35.907Z"},{"key":"ToDate","value":"1974-10-01T10:48:35.907Z"},{"key":"Resolution","value":"3"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3c6d2596-f778-42cf-b3ba-5e70063125b6"}],"id":"693153b1-7ced-4d72-bed8-6ca39aff7008","_postman_id":"693153b1-7ced-4d72-bed8-6ca39aff7008","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"TemperatureSensor","item":[{"name":"Temperature Sensor Get Structure","id":"ffd931a1-fdc6-498a-a933-da615641e24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature-sensors/structure","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature-sensors","structure"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1170","key":"siteId"}]}},"response":[{"id":"733c5caf-704f-45e8-bba9-a088ae3bac19","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/structure","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"siteId\": 7593,\n  \"groups\": [\n    {\n      \"group\": 2,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"sensors\": [\n        {\n          \"id\": 5043,\n          \"name\": \"string\",\n          \"description\": \"string\",\n          \"notes\": \"string\",\n          \"config\": {\n            \"parameterId\": 875,\n            \"physicalLocation\": \"string\",\n            \"symbol\": \"string\",\n            \"measurementUnit\": \"string\"\n          }\n        },\n        {\n          \"id\": 6275,\n          \"name\": \"string\",\n          \"description\": \"string\",\n          \"notes\": \"string\",\n          \"config\": {\n            \"parameterId\": 8437,\n            \"physicalLocation\": \"string\",\n            \"symbol\": \"string\",\n            \"measurementUnit\": \"string\"\n          }\n        }\n      ]\n    },\n    {\n      \"group\": 2,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"sensors\": [\n        {\n          \"id\": 9561,\n          \"name\": \"string\",\n          \"description\": \"string\",\n          \"notes\": \"string\",\n          \"config\": {\n            \"parameterId\": 5956,\n            \"physicalLocation\": \"string\",\n            \"symbol\": \"string\",\n            \"measurementUnit\": \"string\"\n          }\n        },\n        {\n          \"id\": 5778,\n          \"name\": \"string\",\n          \"description\": \"string\",\n          \"notes\": \"string\",\n          \"config\": {\n            \"parameterId\": 9156,\n            \"physicalLocation\": \"string\",\n            \"symbol\": \"string\",\n            \"measurementUnit\": \"string\"\n          }\n        }\n      ]\n    }\n  ]\n}"},{"id":"fd2e6fbf-6a3e-4b7c-a815-55f5d2b728af","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/structure","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7d3cc6f2-06b5-45da-819f-00206ac6fbfa","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/structure","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0a7122b0-2ab8-4e27-a8d9-e3cafa22d735","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/structure","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors","structure"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ffd931a1-fdc6-498a-a933-da615641e24c"},{"name":"Temperature Sensor Get All","id":"1f677862-341d-4cc0-98cf-2044f7bca6e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature-sensors","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature-sensors"],"host":["/"],"query":[{"disabled":true,"key":"PageNumber","value":"2339"},{"disabled":true,"key":"PageSize","value":"2339"},{"disabled":true,"key":"Offset","value":"2339"}],"variable":[{"type":"any","value":"1170","key":"siteId"}]}},"response":[{"id":"ecbae111-01c8-4cd0-a14d-064b392dff1c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"sensorId\": 6918,\n      \"name\": \"string\",\n      \"group\": 1\n    },\n    {\n      \"sensorId\": 5604,\n      \"name\": \"string\",\n      \"group\": 2\n    }\n  ],\n  \"meta\": {\n    \"totalCount\": 6365,\n    \"pageSize\": 1899,\n    \"currentPage\": 3186,\n    \"hasPrevious\": true,\n    \"hasNext\": false,\n    \"totalPages\": 2579\n  }\n}"},{"id":"cc77b294-7fd1-4a6d-9af1-e667dcff5fcd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d60f0cfa-5cca-47c3-81cc-be2f5a1a304b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"adcc3612-5392-45d0-843d-f1513c421af9","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors?PageNumber=2339&PageSize=2339&Offset=2339","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors"],"query":[{"key":"PageNumber","value":"2339"},{"key":"PageSize","value":"2339"},{"key":"Offset","value":"2339"}],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1f677862-341d-4cc0-98cf-2044f7bca6e4"},{"name":"Temperature Sensor Get By Id","id":"730823e2-607f-452b-8ec9-daaef3df97c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/temperature-sensors/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"2","key":"id"}]}},"response":[{"id":"1a374c98-9491-4955-bc7b-5aeb45208e8e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/:id","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"sensorId\": 5211,\n  \"name\": \"string\",\n  \"group\": 2\n}"},{"id":"4ffb151e-1588-4c20-90f5-bf6f4f81ce09","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/:id","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"aea8d82b-9c39-41b3-a73b-76d6f9b8ffa7","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/:id","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7afb91d2-69ee-4117-805d-3a8e9bc6132a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/:id","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dc57daec-533e-4c43-b590-1b2d23b65c68","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/temperature-sensors/:id","host":["/"],"path":["api","v1","sites",":siteId","temperature-sensors",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"730823e2-607f-452b-8ec9-daaef3df97c8"}],"id":"382d13f9-93ea-4620-9ed1-18e02ba65b69","_postman_id":"382d13f9-93ea-4620-9ed1-18e02ba65b69","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"TenantDistribution","item":[{"name":"Tenant Distribution Get All For Site","id":"06839b36-7eca-43f1-8117-f30f4959db34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/tenant-distributions","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters","tenant-distributions"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"c471206e-7bad-49b8-9b7d-dee23d171c46","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5727,\n    \"meterId\": 3637,\n    \"fromDate\": \"1956-11-26\",\n    \"distributions\": {\n      \"key_0\": 6411.789616022689\n    }\n  },\n  {\n    \"id\": 8776,\n    \"meterId\": 8757,\n    \"fromDate\": \"1976-06-27\",\n    \"distributions\": {\n      \"key_0\": 4726.640382355265,\n      \"key_1\": 7658.37305536847,\n      \"key_2\": 1825.233830223314\n    }\n  }\n]"},{"id":"d5224d6b-f969-47d9-a46e-e9d74c51b549","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ba2a5877-691a-470b-a9c5-262f9c262b85","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"98918c82-fcaf-4c46-8078-a4a24a622c5f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"06839b36-7eca-43f1-8117-f30f4959db34"},{"name":"Tenant Distribution Get All For Tenant","id":"55706268-73f3-44a0-adf7-5321d00f6a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/tenant-distributions/tenant/:tenantId","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters","tenant-distributions","tenant",":tenantId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"16","key":"tenantId"}]}},"response":[{"id":"38488ebb-071f-4e11-a794-8089d842484c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/tenant/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions","tenant",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5727,\n    \"meterId\": 3637,\n    \"fromDate\": \"1956-11-26\",\n    \"distributions\": {\n      \"key_0\": 6411.789616022689\n    }\n  },\n  {\n    \"id\": 8776,\n    \"meterId\": 8757,\n    \"fromDate\": \"1976-06-27\",\n    \"distributions\": {\n      \"key_0\": 4726.640382355265,\n      \"key_1\": 7658.37305536847,\n      \"key_2\": 1825.233830223314\n    }\n  }\n]"},{"id":"bd77da93-d12f-402e-84a4-4fda2f1904a7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/tenant/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions","tenant",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"6ff1d0f1-9ce7-412b-838c-17462ec4b703","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/tenant/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions","tenant",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f27d6e78-e78d-429b-a74a-a9d24afbceb3","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/tenant/:tenantId","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions","tenant",":tenantId"],"variable":[{"key":"siteId","value":"2339"},{"key":"tenantId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"55706268-73f3-44a0-adf7-5321d00f6a1f"},{"name":"Tenant Distribution Get By Site Id And Id","id":"3db65217-db01-4706-9555-9eca1af55a13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"4","key":"id"}]}},"response":[{"id":"35d98b7a-0770-44d7-bd53-b3a319536f8d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1300,\n  \"meterId\": 8024,\n  \"fromDate\": \"1992-08-03\",\n  \"distributions\": {\n    \"key_0\": 6237.4389338271885,\n    \"key_1\": 8145.935435171758\n  }\n}"},{"id":"7b6a9428-cae5-414d-aac2-517c816db915","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f2c0171f-a924-4596-ba4b-dc27a232358d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"16c6d2d2-e128-4de5-a09b-f5cac7379cfd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"fae36f54-37fa-49c2-b96e-0f70da26aa66","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/tenant-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","tenant-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3db65217-db01-4706-9555-9eca1af55a13"}],"id":"81ff9908-4c3d-4e43-b8fd-a7c92af3185f","_postman_id":"81ff9908-4c3d-4e43-b8fd-a7c92af3185f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"UsageDistribution","item":[{"name":"Usage Distribution Get All For Site","id":"2e3bbdea-c897-4b72-b156-3b4068e074fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/usage-distributions","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters","usage-distributions"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"abc31090-7811-40f8-9fa3-1ea83c29fb9c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5094,\n    \"meterId\": 9375,\n    \"fromDate\": \"1962-10-31\",\n    \"distributions\": {\n      \"HVAC\": {\n        \"HvacGeneral\": 9590.524432588596,\n        \"HeatExchangers\": 3027.939386236658,\n        \"SpaceCooling\": 803.9675780051691,\n        \"Ventilation\": 8008.566372815975,\n        \"PumpsAndCirculation\": 5378.151732471346,\n        \"HeatRecovery\": 9273.514243405429,\n        \"HeatPumps\": 1000.5027280776524,\n        \"AuxiliaryVentilation\": 5643.694016387731,\n        \"SpaceHeating\": 9261.607759563942,\n        \"UnderFloorSpaceHeating\": 3983.3619440818115,\n        \"HotAirPort\": 6998.958373641449,\n        \"LightingGeneral\": 3602.072435162962,\n        \"IndoorLighting\": 2035.5209550072395,\n        \"OutdoorLighting\": 3612.229922636547,\n        \"EmergencyLighting\": 223.48634865592797,\n        \"DhwGeneral\": 4279.014554906684,\n        \"WaterHeating\": 9326.648700153779,\n        \"DhwCirculation\": 4063.055868927854,\n        \"PlugLoadsGeneral\": 6736.875733207317,\n        \"OfficeEquipment\": 6802.728901181056,\n        \"ItServers\": 3431.714540452779,\n        \"ProcessLoadsGeneral\": 5466.200682543994,\n        \"KitchenCatering\": 3401.0964849640036,\n        \"LabMedical\": 8714.458322287928,\n        \"Datacenter\": 3538.376882797123,\n        \"RetailEquipment\": 960.1638374319288,\n        \"RefrigerationGeneral\": 6894.871321981626,\n        \"ColdStorage\": 2329.131750581983,\n        \"ProcessCooling\": 7840.463239453828,\n        \"PlugIn\": 2246.102213482406,\n        \"TransportGeneral\": 6603.675566400891,\n        \"Elevators\": 9846.224410923354,\n        \"Escalators\": 4374.694477131738,\n        \"EvChargingGeneral\": 4811.140417723905,\n        \"AcCharging\": 727.0585464845847,\n        \"DcFastCharging\": 6925.395377759102,\n        \"OutdoorSystemsGeneral\": 5448.890424051989,\n        \"SnowMelting\": 9445.80203790576,\n        \"Irrigation\": 3262.718731377392,\n        \"SiteEquipment\": 787.897410978442,\n        \"OtherGeneral\": 8835.979443957323,\n        \"EmergencySystems\": 4430.118293213217,\n        \"Unclassified\": 1020.4097427271086\n      },\n      \"Lighting\": {\n        \"HvacGeneral\": 4330.108007161602,\n        \"HeatExchangers\": 6072.633462837051,\n        \"SpaceCooling\": 3528.6641736609313,\n        \"Ventilation\": 1529.236609167195,\n        \"PumpsAndCirculation\": 4342.64836837867,\n        \"HeatRecovery\": 9553.760090530664,\n        \"HeatPumps\": 4906.945911758125,\n        \"AuxiliaryVentilation\": 3015.994833141098,\n        \"SpaceHeating\": 4566.417043575683,\n        \"UnderFloorSpaceHeating\": 9314.673089614862,\n        \"HotAirPort\": 6471.353063534664,\n        \"LightingGeneral\": 1429.9704306793171,\n        \"IndoorLighting\": 3339.4103074987224,\n        \"OutdoorLighting\": 2838.7708356381913,\n        \"EmergencyLighting\": 3823.99727560361,\n        \"DhwGeneral\": 105.80787133084746,\n        \"WaterHeating\": 1024.3889457831478,\n        \"DhwCirculation\": 6418.665104936769,\n        \"PlugLoadsGeneral\": 2667.3756690489568,\n        \"OfficeEquipment\": 1225.6234463937133,\n        \"ItServers\": 9082.844523343681,\n        \"ProcessLoadsGeneral\": 5838.351414379712,\n        \"KitchenCatering\": 6235.923631033506,\n        \"LabMedical\": 3907.4673240925326,\n        \"Datacenter\": 2374.907057414819,\n        \"RetailEquipment\": 1225.1371704099533,\n        \"RefrigerationGeneral\": 3639.169977410328,\n        \"ColdStorage\": 2102.5773454558785,\n        \"ProcessCooling\": 4386.404005231956,\n        \"PlugIn\": 9453.220640860927,\n        \"TransportGeneral\": 223.15773833007756,\n        \"Elevators\": 5342.425764826111,\n        \"Escalators\": 3745.669345212197,\n        \"EvChargingGeneral\": 3832.3718956822518,\n        \"AcCharging\": 1209.2886249819258,\n        \"DcFastCharging\": 3905.5806270270455,\n        \"OutdoorSystemsGeneral\": 8240.436815903086,\n        \"SnowMelting\": 8055.658833636204,\n        \"Irrigation\": 9026.193474106365,\n        \"SiteEquipment\": 3637.376091772755,\n        \"OtherGeneral\": 3175.5717763362036,\n        \"EmergencySystems\": 8347.642933892534,\n        \"Unclassified\": 1869.7568619463545\n      },\n      \"Dhw\": {\n        \"HvacGeneral\": 370.97942591777456,\n        \"HeatExchangers\": 6771.061003215879,\n        \"SpaceCooling\": 4552.616853333798,\n        \"Ventilation\": 8012.970971089715,\n        \"PumpsAndCirculation\": 8045.648229660332,\n        \"HeatRecovery\": 2507.283642632787,\n        \"HeatPumps\": 7888.585413484979,\n        \"AuxiliaryVentilation\": 6978.491984209832,\n        \"SpaceHeating\": 1304.879931897731,\n        \"UnderFloorSpaceHeating\": 2125.1571969970937,\n        \"HotAirPort\": 240.7209664613541,\n        \"LightingGeneral\": 3924.1801379174967,\n        \"IndoorLighting\": 8721.587170961227,\n        \"OutdoorLighting\": 6155.007344354557,\n        \"EmergencyLighting\": 9093.397426410438,\n        \"DhwGeneral\": 5913.755512161265,\n        \"WaterHeating\": 3884.443109308171,\n        \"DhwCirculation\": 4355.965714239851,\n        \"PlugLoadsGeneral\": 3900.2717065716697,\n        \"OfficeEquipment\": 8983.808957398098,\n        \"ItServers\": 3324.9817644051836,\n        \"ProcessLoadsGeneral\": 4775.100087413855,\n        \"KitchenCatering\": 3969.227921211933,\n        \"LabMedical\": 8148.878117684341,\n        \"Datacenter\": 6188.649839021554,\n        \"RetailEquipment\": 5195.796128577541,\n        \"RefrigerationGeneral\": 2237.465221323034,\n        \"ColdStorage\": 465.9538968533794,\n        \"ProcessCooling\": 5843.382685853742,\n        \"PlugIn\": 2109.0827267749955,\n        \"TransportGeneral\": 7709.794953315876,\n        \"Elevators\": 9689.221503873358,\n        \"Escalators\": 3183.0063117519126,\n        \"EvChargingGeneral\": 6686.335146769556,\n        \"AcCharging\": 3352.2202417046396,\n        \"DcFastCharging\": 4221.092944922515,\n        \"OutdoorSystemsGeneral\": 2613.8741574080714,\n        \"SnowMelting\": 5045.501629102054,\n        \"Irrigation\": 1567.4065942140446,\n        \"SiteEquipment\": 7465.2196313340255,\n        \"OtherGeneral\": 3062.1950712614776,\n        \"EmergencySystems\": 8900.414644756462,\n        \"Unclassified\": 2342.496006134065\n      },\n      \"PlugLoads\": {\n        \"HvacGeneral\": 7242.844140763749,\n        \"HeatExchangers\": 7387.018853944429,\n        \"SpaceCooling\": 4804.889532210008,\n        \"Ventilation\": 2497.9313952641346,\n        \"PumpsAndCirculation\": 5192.50166632864,\n        \"HeatRecovery\": 1036.2203998961795,\n        \"HeatPumps\": 5078.325855120598,\n        \"AuxiliaryVentilation\": 2184.6789291441437,\n        \"SpaceHeating\": 5775.233425606283,\n        \"UnderFloorSpaceHeating\": 860.2461877392908,\n        \"HotAirPort\": 9723.40621500442,\n        \"LightingGeneral\": 2464.6988446344653,\n        \"IndoorLighting\": 9591.211947298152,\n        \"OutdoorLighting\": 9869.491884530798,\n        \"EmergencyLighting\": 7868.537237270605,\n        \"DhwGeneral\": 5680.289179987146,\n        \"WaterHeating\": 1183.956896835543,\n        \"DhwCirculation\": 732.7578239341159,\n        \"PlugLoadsGeneral\": 7838.2289804799975,\n        \"OfficeEquipment\": 3605.476161497603,\n        \"ItServers\": 936.7035465973306,\n        \"ProcessLoadsGeneral\": 4960.576119925841,\n        \"KitchenCatering\": 2121.736606987301,\n        \"LabMedical\": 6735.96869479145,\n        \"Datacenter\": 2.6509273023123114,\n        \"RetailEquipment\": 5968.608643796156,\n        \"RefrigerationGeneral\": 8381.364953405637,\n        \"ColdStorage\": 697.2535130921309,\n        \"ProcessCooling\": 5141.627356436713,\n        \"PlugIn\": 8544.38979738997,\n        \"TransportGeneral\": 6428.682688881522,\n        \"Elevators\": 1833.3728606901989,\n        \"Escalators\": 6889.982312974749,\n        \"EvChargingGeneral\": 1107.7608117124128,\n        \"AcCharging\": 7779.0520409691035,\n        \"DcFastCharging\": 4430.481876233823,\n        \"OutdoorSystemsGeneral\": 2109.1486231230115,\n        \"SnowMelting\": 7542.509809270366,\n        \"Irrigation\": 9490.37954464111,\n        \"SiteEquipment\": 5912.997805522345,\n        \"OtherGeneral\": 6765.910783960829,\n        \"EmergencySystems\": 4872.732437895271,\n        \"Unclassified\": 5413.117573790518\n      },\n      \"ProcessLoads\": {\n        \"HvacGeneral\": 1159.261612472129,\n        \"HeatExchangers\": 6660.046633195858,\n        \"SpaceCooling\": 7907.699310582059,\n        \"Ventilation\": 5366.938441751634,\n        \"PumpsAndCirculation\": 7743.175618037212,\n        \"HeatRecovery\": 4398.672911172627,\n        \"HeatPumps\": 6336.541015751746,\n        \"AuxiliaryVentilation\": 9188.531968960266,\n        \"SpaceHeating\": 5872.433259674172,\n        \"UnderFloorSpaceHeating\": 4582.9221858240035,\n        \"HotAirPort\": 9242.517798584351,\n        \"LightingGeneral\": 4235.226585536809,\n        \"IndoorLighting\": 810.7590817149069,\n        \"OutdoorLighting\": 9294.491751174779,\n        \"EmergencyLighting\": 7517.084676040288,\n        \"DhwGeneral\": 2761.3750208663078,\n        \"WaterHeating\": 724.8743433112015,\n        \"DhwCirculation\": 8089.353154374486,\n        \"PlugLoadsGeneral\": 3146.093366777647,\n        \"OfficeEquipment\": 9412.53135414988,\n        \"ItServers\": 3514.765443269483,\n        \"ProcessLoadsGeneral\": 7225.33958482416,\n        \"KitchenCatering\": 2585.1428943470546,\n        \"LabMedical\": 5455.145710020251,\n        \"Datacenter\": 443.1272195894298,\n        \"RetailEquipment\": 5133.601800453486,\n        \"RefrigerationGeneral\": 6447.720645847026,\n        \"ColdStorage\": 4844.650238653181,\n        \"ProcessCooling\": 13.459854975601537,\n        \"PlugIn\": 4870.315859483243,\n        \"TransportGeneral\": 7203.072117655498,\n        \"Elevators\": 7477.204146352854,\n        \"Escalators\": 5088.3248860732765,\n        \"EvChargingGeneral\": 7831.077913755251,\n        \"AcCharging\": 1033.8182983628762,\n        \"DcFastCharging\": 8694.646537201319,\n        \"OutdoorSystemsGeneral\": 536.508038797574,\n        \"SnowMelting\": 2371.5363322225635,\n        \"Irrigation\": 8480.968205048615,\n        \"SiteEquipment\": 6612.752465089733,\n        \"OtherGeneral\": 3781.4258283595527,\n        \"EmergencySystems\": 1474.7259565839065,\n        \"Unclassified\": 1068.727851679967\n      },\n      \"Refrigeration\": {\n        \"HvacGeneral\": 2883.1725867560376,\n        \"HeatExchangers\": 3540.586761692448,\n        \"SpaceCooling\": 6423.126736698821,\n        \"Ventilation\": 7767.417164658806,\n        \"PumpsAndCirculation\": 2239.6393046701623,\n        \"HeatRecovery\": 5154.181675800689,\n        \"HeatPumps\": 7200.0784081676475,\n        \"AuxiliaryVentilation\": 842.8592509774835,\n        \"SpaceHeating\": 5720.656197900764,\n        \"UnderFloorSpaceHeating\": 7604.432587127439,\n        \"HotAirPort\": 3734.4256679131995,\n        \"LightingGeneral\": 127.00480525507763,\n        \"IndoorLighting\": 7696.852128257628,\n        \"OutdoorLighting\": 5802.4111135031635,\n        \"EmergencyLighting\": 8981.418126215154,\n        \"DhwGeneral\": 8406.790080626894,\n        \"WaterHeating\": 6473.115156315194,\n        \"DhwCirculation\": 3600.501059860757,\n        \"PlugLoadsGeneral\": 8145.263639253497,\n        \"OfficeEquipment\": 4433.794803855218,\n        \"ItServers\": 5521.379448192291,\n        \"ProcessLoadsGeneral\": 9305.31433052302,\n        \"KitchenCatering\": 6772.730994317249,\n        \"LabMedical\": 6662.80089411377,\n        \"Datacenter\": 2220.450047857723,\n        \"RetailEquipment\": 2109.251352912114,\n        \"RefrigerationGeneral\": 3682.9277163401607,\n        \"ColdStorage\": 3809.139391262677,\n        \"ProcessCooling\": 3779.6842398846375,\n        \"PlugIn\": 5850.055616565668,\n        \"TransportGeneral\": 8018.054204520157,\n        \"Elevators\": 7118.994980347495,\n        \"Escalators\": 5034.095737613189,\n        \"EvChargingGeneral\": 3806.7658738008904,\n        \"AcCharging\": 9871.550697294491,\n        \"DcFastCharging\": 2084.75752093062,\n        \"OutdoorSystemsGeneral\": 3173.4252962591204,\n        \"SnowMelting\": 9795.841093011875,\n        \"Irrigation\": 5515.965300274283,\n        \"SiteEquipment\": 1570.5888369810461,\n        \"OtherGeneral\": 503.67209441960495,\n        \"EmergencySystems\": 3845.967756196047,\n        \"Unclassified\": 7910.832061921613\n      },\n      \"Transport\": {\n        \"HvacGeneral\": 3021.2106933109626,\n        \"HeatExchangers\": 1691.9089752569616,\n        \"SpaceCooling\": 7012.373663067461,\n        \"Ventilation\": 587.930463758426,\n        \"PumpsAndCirculation\": 6506.052949797925,\n        \"HeatRecovery\": 6539.6467793479205,\n        \"HeatPumps\": 2275.24670015707,\n        \"AuxiliaryVentilation\": 9839.330968393018,\n        \"SpaceHeating\": 7588.110568566384,\n        \"UnderFloorSpaceHeating\": 2496.1809188699103,\n        \"HotAirPort\": 804.068627929142,\n        \"LightingGeneral\": 9122.110945344268,\n        \"IndoorLighting\": 1138.4782055052667,\n        \"OutdoorLighting\": 366.776130216544,\n        \"EmergencyLighting\": 623.3554607377645,\n        \"DhwGeneral\": 7005.450970301484,\n        \"WaterHeating\": 8550.82889178012,\n        \"DhwCirculation\": 4281.638137987938,\n        \"PlugLoadsGeneral\": 243.67377168903693,\n        \"OfficeEquipment\": 8474.151939646297,\n        \"ItServers\": 3397.189708389179,\n        \"ProcessLoadsGeneral\": 8329.29496572611,\n        \"KitchenCatering\": 8408.647487523676,\n        \"LabMedical\": 6097.592974655817,\n        \"Datacenter\": 1450.911602905711,\n        \"RetailEquipment\": 7919.459232834467,\n        \"RefrigerationGeneral\": 2756.5514037584094,\n        \"ColdStorage\": 2926.0544775278972,\n        \"ProcessCooling\": 6606.670277729217,\n        \"PlugIn\": 7228.803906568333,\n        \"TransportGeneral\": 9638.98414654973,\n        \"Elevators\": 5604.4327229515575,\n        \"Escalators\": 8572.549282618844,\n        \"EvChargingGeneral\": 8303.603505284658,\n        \"AcCharging\": 5503.650969368323,\n        \"DcFastCharging\": 6505.347727974937,\n        \"OutdoorSystemsGeneral\": 7128.605089481765,\n        \"SnowMelting\": 1901.7116646954712,\n        \"Irrigation\": 2060.2091955797787,\n        \"SiteEquipment\": 4778.695403631173,\n        \"OtherGeneral\": 813.3455263927681,\n        \"EmergencySystems\": 6177.834302661549,\n        \"Unclassified\": 4410.361463808521\n      },\n      \"EvCharging\": {\n        \"HvacGeneral\": 6236.398899244376,\n        \"HeatExchangers\": 675.6268996118853,\n        \"SpaceCooling\": 5723.71589156015,\n        \"Ventilation\": 1720.0561749526,\n        \"PumpsAndCirculation\": 633.4125015837367,\n        \"HeatRecovery\": 9866.561243132528,\n        \"HeatPumps\": 2958.013548892835,\n        \"AuxiliaryVentilation\": 6043.4036423555535,\n        \"SpaceHeating\": 2284.6910675977197,\n        \"UnderFloorSpaceHeating\": 5600.561556883139,\n        \"HotAirPort\": 5226.8130747037,\n        \"LightingGeneral\": 428.11935861588603,\n        \"IndoorLighting\": 1458.6640578650222,\n        \"OutdoorLighting\": 3194.0135261265,\n        \"EmergencyLighting\": 4498.708313215431,\n        \"DhwGeneral\": 2799.1348652095826,\n        \"WaterHeating\": 3805.482486019436,\n        \"DhwCirculation\": 1324.619257454538,\n        \"PlugLoadsGeneral\": 9037.837172278649,\n        \"OfficeEquipment\": 2801.724767817679,\n        \"ItServers\": 3295.5850400137574,\n        \"ProcessLoadsGeneral\": 5554.419931398143,\n        \"KitchenCatering\": 4697.911394129022,\n        \"LabMedical\": 321.0407382328495,\n        \"Datacenter\": 8799.39729371043,\n        \"RetailEquipment\": 5173.394276178871,\n        \"RefrigerationGeneral\": 8914.201098533531,\n        \"ColdStorage\": 5747.700205736676,\n        \"ProcessCooling\": 9709.97706961368,\n        \"PlugIn\": 4501.3019536253805,\n        \"TransportGeneral\": 9334.369516884253,\n        \"Elevators\": 6751.257388134928,\n        \"Escalators\": 6674.520689681136,\n        \"EvChargingGeneral\": 4345.158134769443,\n        \"AcCharging\": 4491.437174394854,\n        \"DcFastCharging\": 7732.685869678191,\n        \"OutdoorSystemsGeneral\": 4196.812456605414,\n        \"SnowMelting\": 9373.34863324698,\n        \"Irrigation\": 2650.9689109030223,\n        \"SiteEquipment\": 6923.6952741334435,\n        \"OtherGeneral\": 2726.482652973494,\n        \"EmergencySystems\": 18.36668989337875,\n        \"Unclassified\": 4974.347518449777\n      },\n      \"OutdoorSystems\": {\n        \"HvacGeneral\": 3590.916995837954,\n        \"HeatExchangers\": 4286.591374274473,\n        \"SpaceCooling\": 2036.4830247981968,\n        \"Ventilation\": 2566.5525868171435,\n        \"PumpsAndCirculation\": 1145.1812979082242,\n        \"HeatRecovery\": 5419.893463099866,\n        \"HeatPumps\": 3587.6478089418006,\n        \"AuxiliaryVentilation\": 1878.816337186595,\n        \"SpaceHeating\": 46.43912954448881,\n        \"UnderFloorSpaceHeating\": 9596.341499645274,\n        \"HotAirPort\": 3663.440122866353,\n        \"LightingGeneral\": 9200.271076820305,\n        \"IndoorLighting\": 6259.235999807791,\n        \"OutdoorLighting\": 5146.970068300087,\n        \"EmergencyLighting\": 6555.015840247948,\n        \"DhwGeneral\": 7720.179340247284,\n        \"WaterHeating\": 1335.4852320894706,\n        \"DhwCirculation\": 3359.3278368081037,\n        \"PlugLoadsGeneral\": 4580.121380743818,\n        \"OfficeEquipment\": 1219.3628515249277,\n        \"ItServers\": 6691.508787980012,\n        \"ProcessLoadsGeneral\": 5385.865056668739,\n        \"KitchenCatering\": 7463.074425341037,\n        \"LabMedical\": 8968.304973176186,\n        \"Datacenter\": 9363.066566861546,\n        \"RetailEquipment\": 1895.2412020464226,\n        \"RefrigerationGeneral\": 9161.833005386698,\n        \"ColdStorage\": 9948.109175714137,\n        \"ProcessCooling\": 5072.117976431167,\n        \"PlugIn\": 715.69540451357,\n        \"TransportGeneral\": 5198.726834947242,\n        \"Elevators\": 4922.315948983875,\n        \"Escalators\": 7566.945000644272,\n        \"EvChargingGeneral\": 4258.9927745439145,\n        \"AcCharging\": 7448.367690368911,\n        \"DcFastCharging\": 9014.596854571393,\n        \"OutdoorSystemsGeneral\": 2649.2068013767466,\n        \"SnowMelting\": 9542.48549735716,\n        \"Irrigation\": 8662.255562474627,\n        \"SiteEquipment\": 2.16103131113643,\n        \"OtherGeneral\": 2980.23144057604,\n        \"EmergencySystems\": 6567.39705649604,\n        \"Unclassified\": 216.8252470592691\n      },\n      \"Other\": {\n        \"HvacGeneral\": 9310.35767740174,\n        \"HeatExchangers\": 4679.704373865729,\n        \"SpaceCooling\": 9683.963405822882,\n        \"Ventilation\": 9615.423157229669,\n        \"PumpsAndCirculation\": 2610.649811019885,\n        \"HeatRecovery\": 7071.0501163869185,\n        \"HeatPumps\": 2852.900425236231,\n        \"AuxiliaryVentilation\": 3562.541643579407,\n        \"SpaceHeating\": 1325.4462551643976,\n        \"UnderFloorSpaceHeating\": 115.49513305971759,\n        \"HotAirPort\": 2250.979915728721,\n        \"LightingGeneral\": 6143.885227032289,\n        \"IndoorLighting\": 4407.459142676246,\n        \"OutdoorLighting\": 5306.73653177298,\n        \"EmergencyLighting\": 9266.98275305427,\n        \"DhwGeneral\": 9397.053654413849,\n        \"WaterHeating\": 5745.1331124922,\n        \"DhwCirculation\": 2317.148159105078,\n        \"PlugLoadsGeneral\": 3773.2030973285437,\n        \"OfficeEquipment\": 7538.9930246553695,\n        \"ItServers\": 2943.742058871568,\n        \"ProcessLoadsGeneral\": 4346.04426780421,\n        \"KitchenCatering\": 1296.9547126290215,\n        \"LabMedical\": 7702.809612859902,\n        \"Datacenter\": 8266.268988756845,\n        \"RetailEquipment\": 3716.6195976700787,\n        \"RefrigerationGeneral\": 8758.612968619174,\n        \"ColdStorage\": 3370.2950683794807,\n        \"ProcessCooling\": 792.4429561249635,\n        \"PlugIn\": 583.7834485276683,\n        \"TransportGeneral\": 6916.262591953084,\n        \"Elevators\": 6459.234920240025,\n        \"Escalators\": 2400.6332854466805,\n        \"EvChargingGeneral\": 9590.739884490893,\n        \"AcCharging\": 71.3966494313678,\n        \"DcFastCharging\": 858.6253334969807,\n        \"OutdoorSystemsGeneral\": 1270.79824047712,\n        \"SnowMelting\": 2655.4848958996445,\n        \"Irrigation\": 4241.743551890065,\n        \"SiteEquipment\": 6564.8333249971765,\n        \"OtherGeneral\": 9393.759642467157,\n        \"EmergencySystems\": 1482.5444500593287,\n        \"Unclassified\": 9383.884609691642\n      },\n      \"Unallocated\": {\n        \"HvacGeneral\": 406.0493387439057,\n        \"HeatExchangers\": 7716.157265920598,\n        \"SpaceCooling\": 8982.315488007453,\n        \"Ventilation\": 623.0885739759295,\n        \"PumpsAndCirculation\": 7124.811871331842,\n        \"HeatRecovery\": 2267.257638964342,\n        \"HeatPumps\": 7898.457569223041,\n        \"AuxiliaryVentilation\": 548.7096720913077,\n        \"SpaceHeating\": 4053.2362089350117,\n        \"UnderFloorSpaceHeating\": 7176.286972220549,\n        \"HotAirPort\": 2209.9958041725,\n        \"LightingGeneral\": 7428.3898077801405,\n        \"IndoorLighting\": 5665.8178962952,\n        \"OutdoorLighting\": 5497.287445708345,\n        \"EmergencyLighting\": 6930.448155558626,\n        \"DhwGeneral\": 9427.491466034688,\n        \"WaterHeating\": 6499.185088906214,\n        \"DhwCirculation\": 7793.262767917157,\n        \"PlugLoadsGeneral\": 1638.7927882697938,\n        \"OfficeEquipment\": 92.77756565351459,\n        \"ItServers\": 143.78112006053988,\n        \"ProcessLoadsGeneral\": 2813.7634301269145,\n        \"KitchenCatering\": 9603.478554010853,\n        \"LabMedical\": 743.1582717958296,\n        \"Datacenter\": 4962.9365356133985,\n        \"RetailEquipment\": 2924.0270602868113,\n        \"RefrigerationGeneral\": 6832.1521997788295,\n        \"ColdStorage\": 3099.7721505972177,\n        \"ProcessCooling\": 4332.736443245398,\n        \"PlugIn\": 9756.163907812805,\n        \"TransportGeneral\": 3850.010214388364,\n        \"Elevators\": 2187.511392690182,\n        \"Escalators\": 6497.711201709338,\n        \"EvChargingGeneral\": 9616.602516112442,\n        \"AcCharging\": 4031.7564295387974,\n        \"DcFastCharging\": 5067.66534525169,\n        \"OutdoorSystemsGeneral\": 4154.850214612294,\n        \"SnowMelting\": 5457.845670771597,\n        \"Irrigation\": 8946.253355390541,\n        \"SiteEquipment\": 4584.269544906685,\n        \"OtherGeneral\": 6910.712239886625,\n        \"EmergencySystems\": 9114.79156967619,\n        \"Unclassified\": 5220.148968194711\n      }\n    }\n  },\n  {\n    \"id\": 152,\n    \"meterId\": 7206,\n    \"fromDate\": \"1959-11-11\",\n    \"distributions\": {\n      \"HVAC\": {\n        \"HvacGeneral\": 4857.381348464196,\n        \"HeatExchangers\": 1749.0493689084574,\n        \"SpaceCooling\": 9106.539994448302,\n        \"Ventilation\": 2683.9080126509175,\n        \"PumpsAndCirculation\": 3239.7531247765896,\n        \"HeatRecovery\": 7593.887791600786,\n        \"HeatPumps\": 1137.224138501658,\n        \"AuxiliaryVentilation\": 7248.36912194492,\n        \"SpaceHeating\": 2561.4085460274327,\n        \"UnderFloorSpaceHeating\": 4616.5580006081755,\n        \"HotAirPort\": 6375.534352424861,\n        \"LightingGeneral\": 2070.2594545053853,\n        \"IndoorLighting\": 6252.112919610462,\n        \"OutdoorLighting\": 3093.509876860725,\n        \"EmergencyLighting\": 4488.839603516952,\n        \"DhwGeneral\": 3213.7482683881412,\n        \"WaterHeating\": 84.64585365616006,\n        \"DhwCirculation\": 9479.18712733679,\n        \"PlugLoadsGeneral\": 5632.229751938118,\n        \"OfficeEquipment\": 8506.401482277957,\n        \"ItServers\": 1197.6366008811824,\n        \"ProcessLoadsGeneral\": 1329.4814365769048,\n        \"KitchenCatering\": 7148.91055243492,\n        \"LabMedical\": 1006.1597778279752,\n        \"Datacenter\": 6484.662332483506,\n        \"RetailEquipment\": 6513.286389354642,\n        \"RefrigerationGeneral\": 1538.122942757716,\n        \"ColdStorage\": 8147.7504578831695,\n        \"ProcessCooling\": 3970.0774693170706,\n        \"PlugIn\": 3988.9372928192965,\n        \"TransportGeneral\": 2151.316061714177,\n        \"Elevators\": 1098.6268386162235,\n        \"Escalators\": 4394.681951777211,\n        \"EvChargingGeneral\": 6210.921666297602,\n        \"AcCharging\": 7548.4396004765595,\n        \"DcFastCharging\": 4620.258566139868,\n        \"OutdoorSystemsGeneral\": 5823.811675126929,\n        \"SnowMelting\": 5334.356287039445,\n        \"Irrigation\": 1280.0255296082619,\n        \"SiteEquipment\": 1890.6952800332144,\n        \"OtherGeneral\": 1939.2185118683415,\n        \"EmergencySystems\": 4910.137983755998,\n        \"Unclassified\": 8108.3349511836595\n      },\n      \"Lighting\": {\n        \"HvacGeneral\": 7691.895574720198,\n        \"HeatExchangers\": 400.9076736237005,\n        \"SpaceCooling\": 1159.043335198009,\n        \"Ventilation\": 8756.120435881698,\n        \"PumpsAndCirculation\": 2159.369747464768,\n        \"HeatRecovery\": 3732.6139603809484,\n        \"HeatPumps\": 7101.920198206224,\n        \"AuxiliaryVentilation\": 9214.59188747859,\n        \"SpaceHeating\": 8106.479200241132,\n        \"UnderFloorSpaceHeating\": 5461.816840459976,\n        \"HotAirPort\": 1674.177345006751,\n        \"LightingGeneral\": 9532.86523536876,\n        \"IndoorLighting\": 121.42987099388769,\n        \"OutdoorLighting\": 6495.093913611574,\n        \"EmergencyLighting\": 6032.652366804352,\n        \"DhwGeneral\": 2382.3555025572473,\n        \"WaterHeating\": 1066.1918436805374,\n        \"DhwCirculation\": 4189.414720015163,\n        \"PlugLoadsGeneral\": 6272.423207369428,\n        \"OfficeEquipment\": 7105.4010570022565,\n        \"ItServers\": 1503.5644226577438,\n        \"ProcessLoadsGeneral\": 9025.474428634294,\n        \"KitchenCatering\": 4756.164000825107,\n        \"LabMedical\": 2922.3108062017955,\n        \"Datacenter\": 9076.65755377966,\n        \"RetailEquipment\": 7621.346395324662,\n        \"RefrigerationGeneral\": 9117.775022996766,\n        \"ColdStorage\": 9846.913769899702,\n        \"ProcessCooling\": 6413.50466951845,\n        \"PlugIn\": 567.1320868046225,\n        \"TransportGeneral\": 1979.8127070065696,\n        \"Elevators\": 567.6804721002493,\n        \"Escalators\": 7406.863108983941,\n        \"EvChargingGeneral\": 405.14227730543695,\n        \"AcCharging\": 954.6302083411207,\n        \"DcFastCharging\": 972.753447182011,\n        \"OutdoorSystemsGeneral\": 9916.494852328275,\n        \"SnowMelting\": 1956.824033874658,\n        \"Irrigation\": 9345.674173493606,\n        \"SiteEquipment\": 7268.107102896842,\n        \"OtherGeneral\": 1207.5841733538439,\n        \"EmergencySystems\": 3195.6584472155037,\n        \"Unclassified\": 67.81103409096545\n      },\n      \"Dhw\": {\n        \"HvacGeneral\": 1006.0492365834506,\n        \"HeatExchangers\": 3908.58437913842,\n        \"SpaceCooling\": 8571.114842011031,\n        \"Ventilation\": 4005.571904047893,\n        \"PumpsAndCirculation\": 5541.899085545465,\n        \"HeatRecovery\": 2316.5112767682895,\n        \"HeatPumps\": 1106.1182791494218,\n        \"AuxiliaryVentilation\": 6110.160811951244,\n        \"SpaceHeating\": 4917.381825561056,\n        \"UnderFloorSpaceHeating\": 6411.720511403951,\n        \"HotAirPort\": 9855.734702405667,\n        \"LightingGeneral\": 857.4085075556482,\n        \"IndoorLighting\": 1006.6647004222796,\n        \"OutdoorLighting\": 1693.2719148664787,\n        \"EmergencyLighting\": 7294.880464485651,\n        \"DhwGeneral\": 2421.413521706526,\n        \"WaterHeating\": 1664.3260382738645,\n        \"DhwCirculation\": 9801.159489368716,\n        \"PlugLoadsGeneral\": 8349.809670911445,\n        \"OfficeEquipment\": 1400.4166074475543,\n        \"ItServers\": 1986.922266969273,\n        \"ProcessLoadsGeneral\": 810.2538312574103,\n        \"KitchenCatering\": 5332.569604701723,\n        \"LabMedical\": 4957.097845574814,\n        \"Datacenter\": 9481.365412423505,\n        \"RetailEquipment\": 400.97354907036475,\n        \"RefrigerationGeneral\": 7218.935916618605,\n        \"ColdStorage\": 2898.827069694667,\n        \"ProcessCooling\": 5288.597822205805,\n        \"PlugIn\": 3329.020717102087,\n        \"TransportGeneral\": 3740.1398976649225,\n        \"Elevators\": 2196.7809871145573,\n        \"Escalators\": 9078.380134294937,\n        \"EvChargingGeneral\": 666.0003848051455,\n        \"AcCharging\": 864.7150103949497,\n        \"DcFastCharging\": 3375.97115352678,\n        \"OutdoorSystemsGeneral\": 5510.887054159965,\n        \"SnowMelting\": 8924.472632782283,\n        \"Irrigation\": 8103.126661661886,\n        \"SiteEquipment\": 3108.755582234561,\n        \"OtherGeneral\": 4706.58924458702,\n        \"EmergencySystems\": 9791.579008767047,\n        \"Unclassified\": 2170.8819495851217\n      },\n      \"PlugLoads\": {\n        \"HvacGeneral\": 7516.534394574243,\n        \"HeatExchangers\": 9351.1346682918,\n        \"SpaceCooling\": 6166.6357725081625,\n        \"Ventilation\": 7429.367859016696,\n        \"PumpsAndCirculation\": 1295.7360731047474,\n        \"HeatRecovery\": 3695.9233990108874,\n        \"HeatPumps\": 394.6375681151393,\n        \"AuxiliaryVentilation\": 2925.69367549498,\n        \"SpaceHeating\": 2073.228285006099,\n        \"UnderFloorSpaceHeating\": 2194.330062583907,\n        \"HotAirPort\": 9665.441456719444,\n        \"LightingGeneral\": 6468.6225288036385,\n        \"IndoorLighting\": 7410.913580610106,\n        \"OutdoorLighting\": 4225.959928373648,\n        \"EmergencyLighting\": 3032.6300734540237,\n        \"DhwGeneral\": 4257.019222623248,\n        \"WaterHeating\": 2650.7707647752854,\n        \"DhwCirculation\": 1852.2937547415763,\n        \"PlugLoadsGeneral\": 9093.29004211819,\n        \"OfficeEquipment\": 8921.345907053732,\n        \"ItServers\": 7324.284894771338,\n        \"ProcessLoadsGeneral\": 3300.0322637877866,\n        \"KitchenCatering\": 3796.60869678315,\n        \"LabMedical\": 3221.8029249544065,\n        \"Datacenter\": 5286.509143609088,\n        \"RetailEquipment\": 405.09387789322784,\n        \"RefrigerationGeneral\": 4058.291185285996,\n        \"ColdStorage\": 2266.9942464526225,\n        \"ProcessCooling\": 2277.0743723686614,\n        \"PlugIn\": 4485.335446573497,\n        \"TransportGeneral\": 7314.221165545678,\n        \"Elevators\": 4859.11781552359,\n        \"Escalators\": 2050.614144046168,\n        \"EvChargingGeneral\": 6302.06599233901,\n        \"AcCharging\": 5030.438213025716,\n        \"DcFastCharging\": 149.95619848090945,\n        \"OutdoorSystemsGeneral\": 7604.7404146538365,\n        \"SnowMelting\": 6211.318417345362,\n        \"Irrigation\": 675.0211456805522,\n        \"SiteEquipment\": 276.39900766189163,\n        \"OtherGeneral\": 8912.83711605182,\n        \"EmergencySystems\": 3083.0905255176513,\n        \"Unclassified\": 2127.497211901903\n      },\n      \"ProcessLoads\": {\n        \"HvacGeneral\": 4720.191317704017,\n        \"HeatExchangers\": 6774.640723461758,\n        \"SpaceCooling\": 1694.04031968726,\n        \"Ventilation\": 6316.513366935424,\n        \"PumpsAndCirculation\": 4927.559767294685,\n        \"HeatRecovery\": 3392.967164579892,\n        \"HeatPumps\": 4019.0903603546667,\n        \"AuxiliaryVentilation\": 108.318863212018,\n        \"SpaceHeating\": 2695.5155367576913,\n        \"UnderFloorSpaceHeating\": 5734.634795124162,\n        \"HotAirPort\": 5509.3622202475935,\n        \"LightingGeneral\": 9581.398878839418,\n        \"IndoorLighting\": 9034.700036672028,\n        \"OutdoorLighting\": 7.574109765609016,\n        \"EmergencyLighting\": 3921.7384348219043,\n        \"DhwGeneral\": 3305.1621665718244,\n        \"WaterHeating\": 4110.721871479243,\n        \"DhwCirculation\": 1746.867880821421,\n        \"PlugLoadsGeneral\": 7642.741252344907,\n        \"OfficeEquipment\": 4757.993308737731,\n        \"ItServers\": 9360.304688805096,\n        \"ProcessLoadsGeneral\": 5572.053465365365,\n        \"KitchenCatering\": 3853.257653775974,\n        \"LabMedical\": 6750.22500885799,\n        \"Datacenter\": 5220.380478810953,\n        \"RetailEquipment\": 2701.3238843560684,\n        \"RefrigerationGeneral\": 6093.657236391925,\n        \"ColdStorage\": 537.3003119307529,\n        \"ProcessCooling\": 1663.0140819166738,\n        \"PlugIn\": 7897.759668227158,\n        \"TransportGeneral\": 5608.014112944295,\n        \"Elevators\": 3732.2661426290706,\n        \"Escalators\": 291.03607089368876,\n        \"EvChargingGeneral\": 8445.624838404265,\n        \"AcCharging\": 7719.411492183017,\n        \"DcFastCharging\": 9974.603080713448,\n        \"OutdoorSystemsGeneral\": 4748.350598591682,\n        \"SnowMelting\": 7010.224319152718,\n        \"Irrigation\": 4727.732858083716,\n        \"SiteEquipment\": 8699.551151983047,\n        \"OtherGeneral\": 91.68977097291587,\n        \"EmergencySystems\": 9146.960284428944,\n        \"Unclassified\": 3844.8995114033414\n      },\n      \"Refrigeration\": {\n        \"HvacGeneral\": 1675.5756800063425,\n        \"HeatExchangers\": 5085.396509817792,\n        \"SpaceCooling\": 5946.377300178836,\n        \"Ventilation\": 9603.117915027164,\n        \"PumpsAndCirculation\": 5013.536998832528,\n        \"HeatRecovery\": 8810.315842134592,\n        \"HeatPumps\": 3279.3067690763155,\n        \"AuxiliaryVentilation\": 648.2765132451873,\n        \"SpaceHeating\": 22.123884615081746,\n        \"UnderFloorSpaceHeating\": 2281.5976531958727,\n        \"HotAirPort\": 6730.744090916157,\n        \"LightingGeneral\": 165.51157163495756,\n        \"IndoorLighting\": 4554.746389408455,\n        \"OutdoorLighting\": 9102.895707401294,\n        \"EmergencyLighting\": 8906.44756667394,\n        \"DhwGeneral\": 2937.493858107305,\n        \"WaterHeating\": 4377.788898728035,\n        \"DhwCirculation\": 4747.815892565923,\n        \"PlugLoadsGeneral\": 5138.273516850806,\n        \"OfficeEquipment\": 2888.080628009595,\n        \"ItServers\": 2167.440145690729,\n        \"ProcessLoadsGeneral\": 5686.920416380519,\n        \"KitchenCatering\": 736.1532876609034,\n        \"LabMedical\": 9686.207121440093,\n        \"Datacenter\": 6394.887408094381,\n        \"RetailEquipment\": 3724.550618545581,\n        \"RefrigerationGeneral\": 4102.150506000377,\n        \"ColdStorage\": 9227.172546090087,\n        \"ProcessCooling\": 3737.6122871695206,\n        \"PlugIn\": 476.63884614346006,\n        \"TransportGeneral\": 340.3678331272286,\n        \"Elevators\": 6158.061989656482,\n        \"Escalators\": 5877.204817802027,\n        \"EvChargingGeneral\": 6748.143552028816,\n        \"AcCharging\": 4653.971870222007,\n        \"DcFastCharging\": 4777.251835646263,\n        \"OutdoorSystemsGeneral\": 6834.53435593014,\n        \"SnowMelting\": 3762.9341883830602,\n        \"Irrigation\": 1273.9492618784643,\n        \"SiteEquipment\": 6947.089943950286,\n        \"OtherGeneral\": 229.42227439407102,\n        \"EmergencySystems\": 1315.7862480680137,\n        \"Unclassified\": 8222.399207848577\n      },\n      \"Transport\": {\n        \"HvacGeneral\": 311.2338293360573,\n        \"HeatExchangers\": 6778.121455142509,\n        \"SpaceCooling\": 8502.32409592241,\n        \"Ventilation\": 4091.172050490108,\n        \"PumpsAndCirculation\": 9574.530946259914,\n        \"HeatRecovery\": 7284.8209117859205,\n        \"HeatPumps\": 4106.267234667615,\n        \"AuxiliaryVentilation\": 3884.50612071497,\n        \"SpaceHeating\": 3700.9427512596303,\n        \"UnderFloorSpaceHeating\": 5864.945651568713,\n        \"HotAirPort\": 3257.906392304173,\n        \"LightingGeneral\": 6273.58779147708,\n        \"IndoorLighting\": 8414.318019386403,\n        \"OutdoorLighting\": 4761.193585400645,\n        \"EmergencyLighting\": 3207.2405634671686,\n        \"DhwGeneral\": 8693.945218086381,\n        \"WaterHeating\": 2675.570641946625,\n        \"DhwCirculation\": 9813.317887349816,\n        \"PlugLoadsGeneral\": 4231.634157157946,\n        \"OfficeEquipment\": 6924.858518204886,\n        \"ItServers\": 5880.820542122107,\n        \"ProcessLoadsGeneral\": 4176.927803336257,\n        \"KitchenCatering\": 6786.553130307593,\n        \"LabMedical\": 8528.488937816102,\n        \"Datacenter\": 6091.853892422479,\n        \"RetailEquipment\": 9761.983657449513,\n        \"RefrigerationGeneral\": 3918.2720285666937,\n        \"ColdStorage\": 7983.405852135701,\n        \"ProcessCooling\": 5887.567060905656,\n        \"PlugIn\": 3738.967917907767,\n        \"TransportGeneral\": 2243.9470368618063,\n        \"Elevators\": 8271.614271686118,\n        \"Escalators\": 967.1624924019006,\n        \"EvChargingGeneral\": 4633.584693817319,\n        \"AcCharging\": 9876.733674052097,\n        \"DcFastCharging\": 8105.790935804948,\n        \"OutdoorSystemsGeneral\": 1125.746560169767,\n        \"SnowMelting\": 9171.983862614981,\n        \"Irrigation\": 9711.860761268452,\n        \"SiteEquipment\": 1542.4460658311245,\n        \"OtherGeneral\": 382.94008187587326,\n        \"EmergencySystems\": 4998.717601200738,\n        \"Unclassified\": 7586.940937391826\n      },\n      \"EvCharging\": {\n        \"HvacGeneral\": 8497.220552302491,\n        \"HeatExchangers\": 3827.285186860547,\n        \"SpaceCooling\": 3048.8423999215543,\n        \"Ventilation\": 3001.147822896044,\n        \"PumpsAndCirculation\": 2129.31929809568,\n        \"HeatRecovery\": 8058.442461173226,\n        \"HeatPumps\": 4718.828270807209,\n        \"AuxiliaryVentilation\": 3621.4244593502044,\n        \"SpaceHeating\": 9761.28621570509,\n        \"UnderFloorSpaceHeating\": 4411.965454524895,\n        \"HotAirPort\": 5759.195315690844,\n        \"LightingGeneral\": 9517.483593126492,\n        \"IndoorLighting\": 225.083376558195,\n        \"OutdoorLighting\": 3004.3457129302233,\n        \"EmergencyLighting\": 720.5793198803656,\n        \"DhwGeneral\": 207.7553344880867,\n        \"WaterHeating\": 5168.690795867929,\n        \"DhwCirculation\": 83.15852352313246,\n        \"PlugLoadsGeneral\": 5292.626858258145,\n        \"OfficeEquipment\": 6310.733882167652,\n        \"ItServers\": 7844.096668085554,\n        \"ProcessLoadsGeneral\": 9147.09940895323,\n        \"KitchenCatering\": 3597.513225697044,\n        \"LabMedical\": 3801.834382303704,\n        \"Datacenter\": 5458.099763388817,\n        \"RetailEquipment\": 9036.194509363808,\n        \"RefrigerationGeneral\": 744.9260463092199,\n        \"ColdStorage\": 2001.3912234898944,\n        \"ProcessCooling\": 3552.997129182689,\n        \"PlugIn\": 6318.159096879015,\n        \"TransportGeneral\": 6150.3425671136065,\n        \"Elevators\": 4698.616547190304,\n        \"Escalators\": 9528.699873685691,\n        \"EvChargingGeneral\": 7398.8486042835675,\n        \"AcCharging\": 4806.753952440373,\n        \"DcFastCharging\": 7431.7191403127445,\n        \"OutdoorSystemsGeneral\": 5477.631725791998,\n        \"SnowMelting\": 6353.893935963284,\n        \"Irrigation\": 3995.0635969672144,\n        \"SiteEquipment\": 2801.0334135928215,\n        \"OtherGeneral\": 6821.812614272569,\n        \"EmergencySystems\": 5654.620704107907,\n        \"Unclassified\": 5640.992519883012\n      },\n      \"OutdoorSystems\": {\n        \"HvacGeneral\": 8761.975253929277,\n        \"HeatExchangers\": 2695.240373509906,\n        \"SpaceCooling\": 9760.784389746324,\n        \"Ventilation\": 8057.49729525826,\n        \"PumpsAndCirculation\": 6624.6531956196895,\n        \"HeatRecovery\": 1853.842663467551,\n        \"HeatPumps\": 197.79283820141382,\n        \"AuxiliaryVentilation\": 48.74508384242971,\n        \"SpaceHeating\": 934.8115670435897,\n        \"UnderFloorSpaceHeating\": 507.5638815289518,\n        \"HotAirPort\": 8791.41773059612,\n        \"LightingGeneral\": 4664.9873352755585,\n        \"IndoorLighting\": 3877.702971918495,\n        \"OutdoorLighting\": 4058.379213051857,\n        \"EmergencyLighting\": 5026.646364825558,\n        \"DhwGeneral\": 8953.635918218246,\n        \"WaterHeating\": 8125.503304208375,\n        \"DhwCirculation\": 7441.530925862918,\n        \"PlugLoadsGeneral\": 4335.745337095873,\n        \"OfficeEquipment\": 5402.745118736936,\n        \"ItServers\": 5010.50362726023,\n        \"ProcessLoadsGeneral\": 3731.824493708484,\n        \"KitchenCatering\": 2731.473158672972,\n        \"LabMedical\": 8870.067879075947,\n        \"Datacenter\": 3146.8536224489685,\n        \"RetailEquipment\": 2761.1302527725366,\n        \"RefrigerationGeneral\": 7410.542628497045,\n        \"ColdStorage\": 4616.02960209748,\n        \"ProcessCooling\": 3742.8090118265422,\n        \"PlugIn\": 8618.215599693309,\n        \"TransportGeneral\": 9834.289173717585,\n        \"Elevators\": 6195.275364622932,\n        \"Escalators\": 5983.428745913586,\n        \"EvChargingGeneral\": 3735.5057829283587,\n        \"AcCharging\": 3598.1045256875645,\n        \"DcFastCharging\": 7856.204502616906,\n        \"OutdoorSystemsGeneral\": 392.2191249749463,\n        \"SnowMelting\": 2430.748175618689,\n        \"Irrigation\": 7539.665811955944,\n        \"SiteEquipment\": 1570.2367839473163,\n        \"OtherGeneral\": 3633.6240785626696,\n        \"EmergencySystems\": 2317.641083904025,\n        \"Unclassified\": 7860.907237403316\n      },\n      \"Other\": {\n        \"HvacGeneral\": 7300.0445032946645,\n        \"HeatExchangers\": 2904.5220700310724,\n        \"SpaceCooling\": 4154.587325509827,\n        \"Ventilation\": 3496.7580554922083,\n        \"PumpsAndCirculation\": 8118.694078821198,\n        \"HeatRecovery\": 4943.4938301647335,\n        \"HeatPumps\": 5876.605353769999,\n        \"AuxiliaryVentilation\": 5896.335294589703,\n        \"SpaceHeating\": 1791.912656431327,\n        \"UnderFloorSpaceHeating\": 6000.392526230711,\n        \"HotAirPort\": 673.1171480017939,\n        \"LightingGeneral\": 9037.332572064553,\n        \"IndoorLighting\": 543.1355989193709,\n        \"OutdoorLighting\": 8016.569716955067,\n        \"EmergencyLighting\": 9828.502984393426,\n        \"DhwGeneral\": 7466.617369585855,\n        \"WaterHeating\": 223.40665057541287,\n        \"DhwCirculation\": 2151.9129300973773,\n        \"PlugLoadsGeneral\": 9944.137502794552,\n        \"OfficeEquipment\": 4757.039842415201,\n        \"ItServers\": 7967.412942841019,\n        \"ProcessLoadsGeneral\": 4865.272506108664,\n        \"KitchenCatering\": 452.41441464194844,\n        \"LabMedical\": 1547.276758947449,\n        \"Datacenter\": 455.3383006823908,\n        \"RetailEquipment\": 9953.712393551432,\n        \"RefrigerationGeneral\": 7558.018297054756,\n        \"ColdStorage\": 6621.672061698425,\n        \"ProcessCooling\": 5278.063530919197,\n        \"PlugIn\": 5806.064253453594,\n        \"TransportGeneral\": 1392.1982018467927,\n        \"Elevators\": 2943.628356524659,\n        \"Escalators\": 5891.858829105996,\n        \"EvChargingGeneral\": 2758.6962973753625,\n        \"AcCharging\": 2030.905185334131,\n        \"DcFastCharging\": 9413.621324711152,\n        \"OutdoorSystemsGeneral\": 6697.272782754737,\n        \"SnowMelting\": 2822.4055284903325,\n        \"Irrigation\": 4202.520196513348,\n        \"SiteEquipment\": 4124.640149238971,\n        \"OtherGeneral\": 8376.349676013699,\n        \"EmergencySystems\": 2528.3022032188483,\n        \"Unclassified\": 7164.882151499721\n      },\n      \"Unallocated\": {\n        \"HvacGeneral\": 2419.837969118417,\n        \"HeatExchangers\": 9538.15105462561,\n        \"SpaceCooling\": 8284.631718209226,\n        \"Ventilation\": 9210.826555841348,\n        \"PumpsAndCirculation\": 9634.720273495019,\n        \"HeatRecovery\": 30.363333457923414,\n        \"HeatPumps\": 3816.231388926703,\n        \"AuxiliaryVentilation\": 1697.7331778138382,\n        \"SpaceHeating\": 3718.120498910684,\n        \"UnderFloorSpaceHeating\": 6244.072372829237,\n        \"HotAirPort\": 838.0626958199699,\n        \"LightingGeneral\": 3353.8937428297545,\n        \"IndoorLighting\": 7611.067368335509,\n        \"OutdoorLighting\": 3610.64470269294,\n        \"EmergencyLighting\": 760.170589474507,\n        \"DhwGeneral\": 5727.23473758626,\n        \"WaterHeating\": 4190.468437024333,\n        \"DhwCirculation\": 7718.249656067326,\n        \"PlugLoadsGeneral\": 8601.555015410568,\n        \"OfficeEquipment\": 9865.651449177592,\n        \"ItServers\": 585.9728486285776,\n        \"ProcessLoadsGeneral\": 4121.943504077767,\n        \"KitchenCatering\": 7423.774760857207,\n        \"LabMedical\": 6556.838173397837,\n        \"Datacenter\": 1285.7044799293815,\n        \"RetailEquipment\": 8122.121146265484,\n        \"RefrigerationGeneral\": 8426.0987408074,\n        \"ColdStorage\": 7337.053414230839,\n        \"ProcessCooling\": 5805.896077532673,\n        \"PlugIn\": 4535.05977695493,\n        \"TransportGeneral\": 2550.9921559810023,\n        \"Elevators\": 9059.390097194522,\n        \"Escalators\": 354.43116160776003,\n        \"EvChargingGeneral\": 7573.995650814858,\n        \"AcCharging\": 2273.841286374807,\n        \"DcFastCharging\": 528.8986790904482,\n        \"OutdoorSystemsGeneral\": 6478.424108763081,\n        \"SnowMelting\": 6629.141386565077,\n        \"Irrigation\": 7115.255323880565,\n        \"SiteEquipment\": 1620.2258407405322,\n        \"OtherGeneral\": 4510.872054912543,\n        \"EmergencySystems\": 6158.800249848599,\n        \"Unclassified\": 33.69986934575131\n      }\n    }\n  }\n]"},{"id":"3664ace4-1191-4d43-bb12-688fdca53ef0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"aba27257-59ce-401f-abc3-f884c19645c4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f7a2984b-2227-46e4-ae88-9e2243b0693f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions"],"variable":[{"key":"siteId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2e3bbdea-c897-4b72-b156-3b4068e074fc"},{"name":"Usage Distribution Get By Site Id And Id","id":"a22ad0e0-b28f-46a6-bf07-2d7285f30778","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/usage-distributions/:id","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"10","key":"id"}]}},"response":[{"id":"23e8c6af-64d4-4803-aeba-0296e0861081","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9650,\n  \"meterId\": 806,\n  \"fromDate\": \"1956-02-09\",\n  \"distributions\": {\n    \"HVAC\": {\n      \"HvacGeneral\": 5176.663883212298,\n      \"HeatExchangers\": 5534.5843519995515,\n      \"SpaceCooling\": 2907.202805794198,\n      \"Ventilation\": 6230.378334732231,\n      \"PumpsAndCirculation\": 5049.8052065085685,\n      \"HeatRecovery\": 3272.5558898299646,\n      \"HeatPumps\": 6332.591900030196,\n      \"AuxiliaryVentilation\": 1631.97503559249,\n      \"SpaceHeating\": 3405.0515816231355,\n      \"UnderFloorSpaceHeating\": 9855.006608201664,\n      \"HotAirPort\": 4393.064007899432,\n      \"LightingGeneral\": 979.7206313099904,\n      \"IndoorLighting\": 9818.640230615161,\n      \"OutdoorLighting\": 9896.032692509772,\n      \"EmergencyLighting\": 4546.420788171446,\n      \"DhwGeneral\": 3777.299906106366,\n      \"WaterHeating\": 8999.277487901374,\n      \"DhwCirculation\": 9554.563115393223,\n      \"PlugLoadsGeneral\": 9757.660686617086,\n      \"OfficeEquipment\": 9941.371078612801,\n      \"ItServers\": 7263.020337177269,\n      \"ProcessLoadsGeneral\": 3907.7915789432695,\n      \"KitchenCatering\": 5681.029605299918,\n      \"LabMedical\": 8334.072433336476,\n      \"Datacenter\": 5627.133810793743,\n      \"RetailEquipment\": 5134.077928646397,\n      \"RefrigerationGeneral\": 1157.6707306951284,\n      \"ColdStorage\": 8261.603954896284,\n      \"ProcessCooling\": 7870.120587161291,\n      \"PlugIn\": 9478.750900751475,\n      \"TransportGeneral\": 6624.60478683111,\n      \"Elevators\": 6057.707948606186,\n      \"Escalators\": 9660.716560739518,\n      \"EvChargingGeneral\": 4231.388814614432,\n      \"AcCharging\": 1097.1922079977126,\n      \"DcFastCharging\": 4119.78991049905,\n      \"OutdoorSystemsGeneral\": 3905.1726963382284,\n      \"SnowMelting\": 4302.38875846829,\n      \"Irrigation\": 5993.054717289951,\n      \"SiteEquipment\": 2892.4761294867076,\n      \"OtherGeneral\": 880.6112465818438,\n      \"EmergencySystems\": 5680.326265009188,\n      \"Unclassified\": 1434.1833384411261\n    },\n    \"Lighting\": {\n      \"HvacGeneral\": 5870.764219271394,\n      \"HeatExchangers\": 6816.928769041215,\n      \"SpaceCooling\": 9283.291542405444,\n      \"Ventilation\": 8086.841750409204,\n      \"PumpsAndCirculation\": 2154.857475537,\n      \"HeatRecovery\": 5308.6108103967745,\n      \"HeatPumps\": 7543.284207115037,\n      \"AuxiliaryVentilation\": 3731.560200615178,\n      \"SpaceHeating\": 653.1518884066711,\n      \"UnderFloorSpaceHeating\": 6871.641927794884,\n      \"HotAirPort\": 2098.0389821987155,\n      \"LightingGeneral\": 2015.8199719158042,\n      \"IndoorLighting\": 7311.6271267400925,\n      \"OutdoorLighting\": 6898.45769646076,\n      \"EmergencyLighting\": 5335.593074826154,\n      \"DhwGeneral\": 2739.8156534697414,\n      \"WaterHeating\": 8722.342891764121,\n      \"DhwCirculation\": 8658.40841251807,\n      \"PlugLoadsGeneral\": 5571.9690138600745,\n      \"OfficeEquipment\": 8768.461983669988,\n      \"ItServers\": 8000.866439205032,\n      \"ProcessLoadsGeneral\": 9175.07311192332,\n      \"KitchenCatering\": 9556.97493698308,\n      \"LabMedical\": 2712.307888955072,\n      \"Datacenter\": 9502.238690441049,\n      \"RetailEquipment\": 3736.2024183512644,\n      \"RefrigerationGeneral\": 6213.530223630275,\n      \"ColdStorage\": 5396.764225783519,\n      \"ProcessCooling\": 9309.644588548654,\n      \"PlugIn\": 8595.776391599045,\n      \"TransportGeneral\": 9940.159641912398,\n      \"Elevators\": 279.4276476777857,\n      \"Escalators\": 2292.3755946773294,\n      \"EvChargingGeneral\": 6964.365108950235,\n      \"AcCharging\": 7293.590593843784,\n      \"DcFastCharging\": 2293.6634801378286,\n      \"OutdoorSystemsGeneral\": 3994.7492524605523,\n      \"SnowMelting\": 9227.746512243035,\n      \"Irrigation\": 1341.6757698638949,\n      \"SiteEquipment\": 3645.9003640420274,\n      \"OtherGeneral\": 4965.846097523828,\n      \"EmergencySystems\": 6113.562242940864,\n      \"Unclassified\": 2076.802738842012\n    },\n    \"Dhw\": {\n      \"HvacGeneral\": 1509.0919250230006,\n      \"HeatExchangers\": 3046.1131016112454,\n      \"SpaceCooling\": 7871.016612188601,\n      \"Ventilation\": 5376.030742176121,\n      \"PumpsAndCirculation\": 4893.61721516884,\n      \"HeatRecovery\": 7843.704131394138,\n      \"HeatPumps\": 1414.9227730393131,\n      \"AuxiliaryVentilation\": 8286.818207956489,\n      \"SpaceHeating\": 5259.376778483908,\n      \"UnderFloorSpaceHeating\": 8640.384156064145,\n      \"HotAirPort\": 4276.12920119544,\n      \"LightingGeneral\": 9191.315339361418,\n      \"IndoorLighting\": 8245.382187757137,\n      \"OutdoorLighting\": 1239.8030917250135,\n      \"EmergencyLighting\": 4086.503328527922,\n      \"DhwGeneral\": 1033.9287626430282,\n      \"WaterHeating\": 9629.588453265127,\n      \"DhwCirculation\": 5791.897268185789,\n      \"PlugLoadsGeneral\": 9621.906146128487,\n      \"OfficeEquipment\": 7044.682873041826,\n      \"ItServers\": 2102.017348710499,\n      \"ProcessLoadsGeneral\": 1324.8253026591783,\n      \"KitchenCatering\": 8746.187560996084,\n      \"LabMedical\": 2712.470360467791,\n      \"Datacenter\": 6886.089518003011,\n      \"RetailEquipment\": 4103.053897449207,\n      \"RefrigerationGeneral\": 3239.657929381181,\n      \"ColdStorage\": 4550.017807694824,\n      \"ProcessCooling\": 5281.684343519173,\n      \"PlugIn\": 5585.8877019305055,\n      \"TransportGeneral\": 746.9006210745155,\n      \"Elevators\": 7318.549456819852,\n      \"Escalators\": 1132.9066231133988,\n      \"EvChargingGeneral\": 9521.36091768001,\n      \"AcCharging\": 7201.188232231177,\n      \"DcFastCharging\": 7217.789473860478,\n      \"OutdoorSystemsGeneral\": 2190.215702145939,\n      \"SnowMelting\": 3381.461434762245,\n      \"Irrigation\": 6761.46297420527,\n      \"SiteEquipment\": 3420.7127692796944,\n      \"OtherGeneral\": 2383.379711785292,\n      \"EmergencySystems\": 7535.364269060827,\n      \"Unclassified\": 5791.034132358841\n    },\n    \"PlugLoads\": {\n      \"HvacGeneral\": 8546.300723584454,\n      \"HeatExchangers\": 4978.804851699457,\n      \"SpaceCooling\": 6986.589256084725,\n      \"Ventilation\": 5912.0076018421905,\n      \"PumpsAndCirculation\": 3915.5307403418683,\n      \"HeatRecovery\": 8736.836190540842,\n      \"HeatPumps\": 5454.880887596041,\n      \"AuxiliaryVentilation\": 6915.715941810538,\n      \"SpaceHeating\": 8286.116327723661,\n      \"UnderFloorSpaceHeating\": 4858.726709183247,\n      \"HotAirPort\": 9104.67999746264,\n      \"LightingGeneral\": 313.0100254307866,\n      \"IndoorLighting\": 7544.752114261503,\n      \"OutdoorLighting\": 9584.655141496134,\n      \"EmergencyLighting\": 5274.723101973857,\n      \"DhwGeneral\": 5078.964112330755,\n      \"WaterHeating\": 2754.911198463534,\n      \"DhwCirculation\": 3951.4419791889723,\n      \"PlugLoadsGeneral\": 6718.905320196196,\n      \"OfficeEquipment\": 198.09412152379747,\n      \"ItServers\": 6364.524168132389,\n      \"ProcessLoadsGeneral\": 9002.136286205356,\n      \"KitchenCatering\": 6574.700840354708,\n      \"LabMedical\": 2132.1230783492106,\n      \"Datacenter\": 8899.699239347034,\n      \"RetailEquipment\": 7650.126655941503,\n      \"RefrigerationGeneral\": 9733.930089445397,\n      \"ColdStorage\": 2610.251624018536,\n      \"ProcessCooling\": 1669.0818120031704,\n      \"PlugIn\": 5758.78430158443,\n      \"TransportGeneral\": 3700.1898292090395,\n      \"Elevators\": 7734.467082479772,\n      \"Escalators\": 3491.824518033122,\n      \"EvChargingGeneral\": 3052.331241228909,\n      \"AcCharging\": 8397.20235325684,\n      \"DcFastCharging\": 4213.98477154692,\n      \"OutdoorSystemsGeneral\": 683.3330257975301,\n      \"SnowMelting\": 5410.55455468304,\n      \"Irrigation\": 3406.873040151268,\n      \"SiteEquipment\": 2028.5186904085494,\n      \"OtherGeneral\": 3591.551623002738,\n      \"EmergencySystems\": 9445.347846298908,\n      \"Unclassified\": 6267.149648561434\n    },\n    \"ProcessLoads\": {\n      \"HvacGeneral\": 1506.5547568312754,\n      \"HeatExchangers\": 4143.723738415623,\n      \"SpaceCooling\": 8395.829797477485,\n      \"Ventilation\": 7619.132922077749,\n      \"PumpsAndCirculation\": 8376.702093608104,\n      \"HeatRecovery\": 2826.1431656862146,\n      \"HeatPumps\": 7384.060370388841,\n      \"AuxiliaryVentilation\": 9085.03159095655,\n      \"SpaceHeating\": 977.2140074846236,\n      \"UnderFloorSpaceHeating\": 5486.099684260561,\n      \"HotAirPort\": 8016.34612576642,\n      \"LightingGeneral\": 3933.4797066306405,\n      \"IndoorLighting\": 9640.613000530642,\n      \"OutdoorLighting\": 9215.663050126772,\n      \"EmergencyLighting\": 7558.211182397021,\n      \"DhwGeneral\": 3614.259255308103,\n      \"WaterHeating\": 711.2780893705861,\n      \"DhwCirculation\": 2766.0813414876675,\n      \"PlugLoadsGeneral\": 9392.971135434513,\n      \"OfficeEquipment\": 3975.828886106383,\n      \"ItServers\": 9651.575042406957,\n      \"ProcessLoadsGeneral\": 4100.472556984282,\n      \"KitchenCatering\": 1255.6300915336171,\n      \"LabMedical\": 3021.505241921172,\n      \"Datacenter\": 7803.320555299116,\n      \"RetailEquipment\": 2177.4424825596016,\n      \"RefrigerationGeneral\": 8083.305013433342,\n      \"ColdStorage\": 6407.541118601643,\n      \"ProcessCooling\": 2142.969443777225,\n      \"PlugIn\": 9430.912301974377,\n      \"TransportGeneral\": 4612.586114055037,\n      \"Elevators\": 3295.7328758132176,\n      \"Escalators\": 2311.115171248903,\n      \"EvChargingGeneral\": 4847.549940105254,\n      \"AcCharging\": 4422.579754863811,\n      \"DcFastCharging\": 8935.742374972622,\n      \"OutdoorSystemsGeneral\": 3325.019426416087,\n      \"SnowMelting\": 832.9242206796183,\n      \"Irrigation\": 6232.590876629997,\n      \"SiteEquipment\": 7336.505618555391,\n      \"OtherGeneral\": 2952.0790195847812,\n      \"EmergencySystems\": 6814.248474530238,\n      \"Unclassified\": 2181.843615947232\n    },\n    \"Refrigeration\": {\n      \"HvacGeneral\": 6385.245437926901,\n      \"HeatExchangers\": 3575.8481183298495,\n      \"SpaceCooling\": 5391.939391230263,\n      \"Ventilation\": 6997.274509968516,\n      \"PumpsAndCirculation\": 1154.5953019422939,\n      \"HeatRecovery\": 7060.345000368893,\n      \"HeatPumps\": 355.79363657768147,\n      \"AuxiliaryVentilation\": 5599.935830479732,\n      \"SpaceHeating\": 990.0187274452943,\n      \"UnderFloorSpaceHeating\": 5848.8665699546245,\n      \"HotAirPort\": 8407.336660948142,\n      \"LightingGeneral\": 6038.178118211906,\n      \"IndoorLighting\": 8256.814831299916,\n      \"OutdoorLighting\": 3561.794451129192,\n      \"EmergencyLighting\": 3552.861886728118,\n      \"DhwGeneral\": 1285.297402222605,\n      \"WaterHeating\": 7643.133529838417,\n      \"DhwCirculation\": 1247.7618938455648,\n      \"PlugLoadsGeneral\": 6026.287444465257,\n      \"OfficeEquipment\": 5888.735400367839,\n      \"ItServers\": 4596.212422904176,\n      \"ProcessLoadsGeneral\": 7247.050309221634,\n      \"KitchenCatering\": 9628.28660637307,\n      \"LabMedical\": 6513.462698214412,\n      \"Datacenter\": 1125.071595681848,\n      \"RetailEquipment\": 5743.955053321648,\n      \"RefrigerationGeneral\": 2419.2627491392304,\n      \"ColdStorage\": 3354.5746157180447,\n      \"ProcessCooling\": 7902.664548221505,\n      \"PlugIn\": 8538.782889983755,\n      \"TransportGeneral\": 5817.526754978921,\n      \"Elevators\": 998.7495243126365,\n      \"Escalators\": 3965.441560472447,\n      \"EvChargingGeneral\": 7963.653281770214,\n      \"AcCharging\": 1971.2620569859164,\n      \"DcFastCharging\": 8018.301276559263,\n      \"OutdoorSystemsGeneral\": 456.4867644308723,\n      \"SnowMelting\": 1007.256612909806,\n      \"Irrigation\": 4054.9881181848145,\n      \"SiteEquipment\": 4651.925603759666,\n      \"OtherGeneral\": 4338.702874052878,\n      \"EmergencySystems\": 8521.359437253837,\n      \"Unclassified\": 2977.4715574176926\n    },\n    \"Transport\": {\n      \"HvacGeneral\": 6845.984052923355,\n      \"HeatExchangers\": 3875.0639518883445,\n      \"SpaceCooling\": 9636.645095310927,\n      \"Ventilation\": 1074.5777991495543,\n      \"PumpsAndCirculation\": 9259.783775408898,\n      \"HeatRecovery\": 8245.473109646353,\n      \"HeatPumps\": 92.45182971673538,\n      \"AuxiliaryVentilation\": 1339.5529553613428,\n      \"SpaceHeating\": 807.8652351707882,\n      \"UnderFloorSpaceHeating\": 4731.611985780281,\n      \"HotAirPort\": 3588.7691389978913,\n      \"LightingGeneral\": 3512.9165615671523,\n      \"IndoorLighting\": 2821.8703468799154,\n      \"OutdoorLighting\": 480.0098702362221,\n      \"EmergencyLighting\": 8828.851663635129,\n      \"DhwGeneral\": 9710.150144399335,\n      \"WaterHeating\": 600.9171437195993,\n      \"DhwCirculation\": 8528.226331324391,\n      \"PlugLoadsGeneral\": 1815.3948789290575,\n      \"OfficeEquipment\": 9887.53527920267,\n      \"ItServers\": 8442.940297311832,\n      \"ProcessLoadsGeneral\": 2056.018109617237,\n      \"KitchenCatering\": 8520.755566976497,\n      \"LabMedical\": 9565.80690523375,\n      \"Datacenter\": 5048.32148635556,\n      \"RetailEquipment\": 6616.93535448908,\n      \"RefrigerationGeneral\": 361.60296969625085,\n      \"ColdStorage\": 2794.4337652505833,\n      \"ProcessCooling\": 5062.104566306287,\n      \"PlugIn\": 5820.071390376851,\n      \"TransportGeneral\": 7901.998017317806,\n      \"Elevators\": 8950.751895882226,\n      \"Escalators\": 9534.503451034274,\n      \"EvChargingGeneral\": 329.4372610048901,\n      \"AcCharging\": 6318.436588256939,\n      \"DcFastCharging\": 9410.453348866138,\n      \"OutdoorSystemsGeneral\": 557.7402877854953,\n      \"SnowMelting\": 9684.643695363311,\n      \"Irrigation\": 1561.176407271463,\n      \"SiteEquipment\": 1715.0346606455957,\n      \"OtherGeneral\": 6200.012753728226,\n      \"EmergencySystems\": 2665.3226171664255,\n      \"Unclassified\": 8949.836918312107\n    },\n    \"EvCharging\": {\n      \"HvacGeneral\": 7958.427025714989,\n      \"HeatExchangers\": 7269.795984445844,\n      \"SpaceCooling\": 3054.1283750585712,\n      \"Ventilation\": 1778.5077727160492,\n      \"PumpsAndCirculation\": 6972.86826430614,\n      \"HeatRecovery\": 1957.8158921632105,\n      \"HeatPumps\": 8335.01972494888,\n      \"AuxiliaryVentilation\": 1438.6632766603768,\n      \"SpaceHeating\": 1351.8036429934455,\n      \"UnderFloorSpaceHeating\": 765.230911591217,\n      \"HotAirPort\": 777.5710868765074,\n      \"LightingGeneral\": 8171.827785123473,\n      \"IndoorLighting\": 5274.05718428463,\n      \"OutdoorLighting\": 6977.302575443345,\n      \"EmergencyLighting\": 2777.7128715750464,\n      \"DhwGeneral\": 8314.67645650608,\n      \"WaterHeating\": 9816.715440797523,\n      \"DhwCirculation\": 8000.902484762198,\n      \"PlugLoadsGeneral\": 4997.714027235731,\n      \"OfficeEquipment\": 5732.286855005622,\n      \"ItServers\": 6397.437773690848,\n      \"ProcessLoadsGeneral\": 4095.0544876026897,\n      \"KitchenCatering\": 914.0628235172943,\n      \"LabMedical\": 8139.986617532367,\n      \"Datacenter\": 560.1479535936016,\n      \"RetailEquipment\": 5807.064229105909,\n      \"RefrigerationGeneral\": 2850.2954688537184,\n      \"ColdStorage\": 2702.791667319595,\n      \"ProcessCooling\": 6952.834380105297,\n      \"PlugIn\": 7958.732267577892,\n      \"TransportGeneral\": 401.6772298414928,\n      \"Elevators\": 9598.437016816797,\n      \"Escalators\": 7061.235100971093,\n      \"EvChargingGeneral\": 1214.0715414679603,\n      \"AcCharging\": 7757.350936931284,\n      \"DcFastCharging\": 9542.838617719988,\n      \"OutdoorSystemsGeneral\": 6810.223435872975,\n      \"SnowMelting\": 7060.99312979425,\n      \"Irrigation\": 7077.070942422932,\n      \"SiteEquipment\": 6511.827639666063,\n      \"OtherGeneral\": 625.44295208252,\n      \"EmergencySystems\": 9690.783699374066,\n      \"Unclassified\": 1653.3672282024936\n    },\n    \"OutdoorSystems\": {\n      \"HvacGeneral\": 330.8052417204799,\n      \"HeatExchangers\": 6367.25951143607,\n      \"SpaceCooling\": 5848.9594367968275,\n      \"Ventilation\": 7018.423518248857,\n      \"PumpsAndCirculation\": 1904.2527927848264,\n      \"HeatRecovery\": 4236.313269526042,\n      \"HeatPumps\": 3767.3384023057556,\n      \"AuxiliaryVentilation\": 2673.91576134415,\n      \"SpaceHeating\": 3370.310908067882,\n      \"UnderFloorSpaceHeating\": 1664.726349870853,\n      \"HotAirPort\": 3338.6861057569317,\n      \"LightingGeneral\": 2828.4392452031425,\n      \"IndoorLighting\": 5949.148890725353,\n      \"OutdoorLighting\": 7363.389555904964,\n      \"EmergencyLighting\": 408.5530747347188,\n      \"DhwGeneral\": 5071.980654126336,\n      \"WaterHeating\": 7231.3956626339905,\n      \"DhwCirculation\": 2195.0781498308625,\n      \"PlugLoadsGeneral\": 4677.734863592522,\n      \"OfficeEquipment\": 3686.1679804481273,\n      \"ItServers\": 5786.130226051058,\n      \"ProcessLoadsGeneral\": 2811.994040586252,\n      \"KitchenCatering\": 6184.253955655641,\n      \"LabMedical\": 2559.9782936367797,\n      \"Datacenter\": 6589.522056271986,\n      \"RetailEquipment\": 1433.9947174836354,\n      \"RefrigerationGeneral\": 6878.690142921356,\n      \"ColdStorage\": 7386.184740561778,\n      \"ProcessCooling\": 3455.489916821661,\n      \"PlugIn\": 9698.57293316062,\n      \"TransportGeneral\": 3505.2983334585642,\n      \"Elevators\": 3133.757768821226,\n      \"Escalators\": 3730.1486245053006,\n      \"EvChargingGeneral\": 3157.8058220590765,\n      \"AcCharging\": 7304.953056711201,\n      \"DcFastCharging\": 5314.002182660702,\n      \"OutdoorSystemsGeneral\": 719.3198833436853,\n      \"SnowMelting\": 3991.9874364471684,\n      \"Irrigation\": 4752.60183548617,\n      \"SiteEquipment\": 6401.802057897848,\n      \"OtherGeneral\": 3949.9470035816753,\n      \"EmergencySystems\": 7878.75116843976,\n      \"Unclassified\": 1886.5725434832425\n    },\n    \"Other\": {\n      \"HvacGeneral\": 1322.20101787768,\n      \"HeatExchangers\": 2559.4408222714305,\n      \"SpaceCooling\": 2521.8638933518723,\n      \"Ventilation\": 845.1738630607797,\n      \"PumpsAndCirculation\": 5041.712016321931,\n      \"HeatRecovery\": 2424.4290991440275,\n      \"HeatPumps\": 1236.4781759619104,\n      \"AuxiliaryVentilation\": 6220.893344276737,\n      \"SpaceHeating\": 3127.3893795905506,\n      \"UnderFloorSpaceHeating\": 2118.8417939602023,\n      \"HotAirPort\": 6249.035544587718,\n      \"LightingGeneral\": 479.61747073618443,\n      \"IndoorLighting\": 2928.584463684456,\n      \"OutdoorLighting\": 9162.223741661755,\n      \"EmergencyLighting\": 7303.736771610763,\n      \"DhwGeneral\": 3795.232019723325,\n      \"WaterHeating\": 5131.6810223482335,\n      \"DhwCirculation\": 879.5346783098856,\n      \"PlugLoadsGeneral\": 1087.032520712008,\n      \"OfficeEquipment\": 5509.518400626947,\n      \"ItServers\": 5655.979509006883,\n      \"ProcessLoadsGeneral\": 9788.18968713031,\n      \"KitchenCatering\": 1506.2336107713415,\n      \"LabMedical\": 5006.419708172585,\n      \"Datacenter\": 2814.6539519652715,\n      \"RetailEquipment\": 7118.385016316817,\n      \"RefrigerationGeneral\": 6490.996144390972,\n      \"ColdStorage\": 853.4870798987693,\n      \"ProcessCooling\": 9461.782218369739,\n      \"PlugIn\": 2291.5574890984035,\n      \"TransportGeneral\": 9881.750467836882,\n      \"Elevators\": 4104.099188772008,\n      \"Escalators\": 8254.430433889867,\n      \"EvChargingGeneral\": 509.02037193087943,\n      \"AcCharging\": 4020.43846706992,\n      \"DcFastCharging\": 6911.712877757379,\n      \"OutdoorSystemsGeneral\": 3479.7090425741485,\n      \"SnowMelting\": 9448.799672482532,\n      \"Irrigation\": 1290.9121220349195,\n      \"SiteEquipment\": 6722.748655784913,\n      \"OtherGeneral\": 3747.08390110144,\n      \"EmergencySystems\": 1872.3343325726405,\n      \"Unclassified\": 6866.516049455014\n    },\n    \"Unallocated\": {\n      \"HvacGeneral\": 8593.236156245051,\n      \"HeatExchangers\": 3370.777005208134,\n      \"SpaceCooling\": 5546.808496841713,\n      \"Ventilation\": 5113.319429218759,\n      \"PumpsAndCirculation\": 1570.2590287364892,\n      \"HeatRecovery\": 7295.221437582613,\n      \"HeatPumps\": 641.1935527538337,\n      \"AuxiliaryVentilation\": 9075.76129743734,\n      \"SpaceHeating\": 8929.90108715881,\n      \"UnderFloorSpaceHeating\": 4383.467560991056,\n      \"HotAirPort\": 4877.2920947009825,\n      \"LightingGeneral\": 787.623038757339,\n      \"IndoorLighting\": 9972.051738709588,\n      \"OutdoorLighting\": 7957.167509233341,\n      \"EmergencyLighting\": 8918.026703608772,\n      \"DhwGeneral\": 5428.144784106208,\n      \"WaterHeating\": 3191.3084100631204,\n      \"DhwCirculation\": 4264.247679122226,\n      \"PlugLoadsGeneral\": 728.672584657497,\n      \"OfficeEquipment\": 4517.923131422887,\n      \"ItServers\": 7216.02390059356,\n      \"ProcessLoadsGeneral\": 2068.0456829849336,\n      \"KitchenCatering\": 2298.8704317189313,\n      \"LabMedical\": 2317.9873527858217,\n      \"Datacenter\": 9955.43953158039,\n      \"RetailEquipment\": 2064.5735124896714,\n      \"RefrigerationGeneral\": 2678.020104137486,\n      \"ColdStorage\": 6336.5103750038725,\n      \"ProcessCooling\": 881.1044379207589,\n      \"PlugIn\": 56.80330278692303,\n      \"TransportGeneral\": 2175.2796758881555,\n      \"Elevators\": 7947.432899243776,\n      \"Escalators\": 8147.621454877481,\n      \"EvChargingGeneral\": 2831.9777790176313,\n      \"AcCharging\": 6896.706646560733,\n      \"DcFastCharging\": 1603.304415029052,\n      \"OutdoorSystemsGeneral\": 4598.114859422722,\n      \"SnowMelting\": 1015.4085246803612,\n      \"Irrigation\": 3938.3292219440837,\n      \"SiteEquipment\": 3769.902426241516,\n      \"OtherGeneral\": 8525.441579262015,\n      \"EmergencySystems\": 8865.85194624501,\n      \"Unclassified\": 8387.124515151014\n    }\n  }\n}"},{"id":"bd94e41a-f485-421f-a61b-5b37b1f9995a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2e62a9ff-d4d3-4277-9dfd-66e8f136309a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9f82a98e-4729-43d5-8355-57753331740d","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"21a159e2-331d-4153-a55a-70806649267a","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/usage-distributions/:id","host":["/"],"path":["api","v1","sites",":siteId","meters","usage-distributions",":id"],"variable":[{"key":"siteId","value":"2339"},{"key":"id","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a22ad0e0-b28f-46a6-bf07-2d7285f30778"},{"name":"Usage Distribution Get All For Meter","id":"7423750b-077f-4ac2-9e10-05e4fe4d4572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v1/sites/:siteId/meters/:meterId/usage-distributions","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v1","sites",":siteId","meters",":meterId","usage-distributions"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"90","key":"meterId"}]}},"response":[{"id":"d6fa5cd2-3ede-470b-8001-2716be86c55e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/:meterId/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters",":meterId","usage-distributions"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 5094,\n    \"meterId\": 9375,\n    \"fromDate\": \"1962-10-31\",\n    \"distributions\": {\n      \"HVAC\": {\n        \"HvacGeneral\": 9590.524432588596,\n        \"HeatExchangers\": 3027.939386236658,\n        \"SpaceCooling\": 803.9675780051691,\n        \"Ventilation\": 8008.566372815975,\n        \"PumpsAndCirculation\": 5378.151732471346,\n        \"HeatRecovery\": 9273.514243405429,\n        \"HeatPumps\": 1000.5027280776524,\n        \"AuxiliaryVentilation\": 5643.694016387731,\n        \"SpaceHeating\": 9261.607759563942,\n        \"UnderFloorSpaceHeating\": 3983.3619440818115,\n        \"HotAirPort\": 6998.958373641449,\n        \"LightingGeneral\": 3602.072435162962,\n        \"IndoorLighting\": 2035.5209550072395,\n        \"OutdoorLighting\": 3612.229922636547,\n        \"EmergencyLighting\": 223.48634865592797,\n        \"DhwGeneral\": 4279.014554906684,\n        \"WaterHeating\": 9326.648700153779,\n        \"DhwCirculation\": 4063.055868927854,\n        \"PlugLoadsGeneral\": 6736.875733207317,\n        \"OfficeEquipment\": 6802.728901181056,\n        \"ItServers\": 3431.714540452779,\n        \"ProcessLoadsGeneral\": 5466.200682543994,\n        \"KitchenCatering\": 3401.0964849640036,\n        \"LabMedical\": 8714.458322287928,\n        \"Datacenter\": 3538.376882797123,\n        \"RetailEquipment\": 960.1638374319288,\n        \"RefrigerationGeneral\": 6894.871321981626,\n        \"ColdStorage\": 2329.131750581983,\n        \"ProcessCooling\": 7840.463239453828,\n        \"PlugIn\": 2246.102213482406,\n        \"TransportGeneral\": 6603.675566400891,\n        \"Elevators\": 9846.224410923354,\n        \"Escalators\": 4374.694477131738,\n        \"EvChargingGeneral\": 4811.140417723905,\n        \"AcCharging\": 727.0585464845847,\n        \"DcFastCharging\": 6925.395377759102,\n        \"OutdoorSystemsGeneral\": 5448.890424051989,\n        \"SnowMelting\": 9445.80203790576,\n        \"Irrigation\": 3262.718731377392,\n        \"SiteEquipment\": 787.897410978442,\n        \"OtherGeneral\": 8835.979443957323,\n        \"EmergencySystems\": 4430.118293213217,\n        \"Unclassified\": 1020.4097427271086\n      },\n      \"Lighting\": {\n        \"HvacGeneral\": 4330.108007161602,\n        \"HeatExchangers\": 6072.633462837051,\n        \"SpaceCooling\": 3528.6641736609313,\n        \"Ventilation\": 1529.236609167195,\n        \"PumpsAndCirculation\": 4342.64836837867,\n        \"HeatRecovery\": 9553.760090530664,\n        \"HeatPumps\": 4906.945911758125,\n        \"AuxiliaryVentilation\": 3015.994833141098,\n        \"SpaceHeating\": 4566.417043575683,\n        \"UnderFloorSpaceHeating\": 9314.673089614862,\n        \"HotAirPort\": 6471.353063534664,\n        \"LightingGeneral\": 1429.9704306793171,\n        \"IndoorLighting\": 3339.4103074987224,\n        \"OutdoorLighting\": 2838.7708356381913,\n        \"EmergencyLighting\": 3823.99727560361,\n        \"DhwGeneral\": 105.80787133084746,\n        \"WaterHeating\": 1024.3889457831478,\n        \"DhwCirculation\": 6418.665104936769,\n        \"PlugLoadsGeneral\": 2667.3756690489568,\n        \"OfficeEquipment\": 1225.6234463937133,\n        \"ItServers\": 9082.844523343681,\n        \"ProcessLoadsGeneral\": 5838.351414379712,\n        \"KitchenCatering\": 6235.923631033506,\n        \"LabMedical\": 3907.4673240925326,\n        \"Datacenter\": 2374.907057414819,\n        \"RetailEquipment\": 1225.1371704099533,\n        \"RefrigerationGeneral\": 3639.169977410328,\n        \"ColdStorage\": 2102.5773454558785,\n        \"ProcessCooling\": 4386.404005231956,\n        \"PlugIn\": 9453.220640860927,\n        \"TransportGeneral\": 223.15773833007756,\n        \"Elevators\": 5342.425764826111,\n        \"Escalators\": 3745.669345212197,\n        \"EvChargingGeneral\": 3832.3718956822518,\n        \"AcCharging\": 1209.2886249819258,\n        \"DcFastCharging\": 3905.5806270270455,\n        \"OutdoorSystemsGeneral\": 8240.436815903086,\n        \"SnowMelting\": 8055.658833636204,\n        \"Irrigation\": 9026.193474106365,\n        \"SiteEquipment\": 3637.376091772755,\n        \"OtherGeneral\": 3175.5717763362036,\n        \"EmergencySystems\": 8347.642933892534,\n        \"Unclassified\": 1869.7568619463545\n      },\n      \"Dhw\": {\n        \"HvacGeneral\": 370.97942591777456,\n        \"HeatExchangers\": 6771.061003215879,\n        \"SpaceCooling\": 4552.616853333798,\n        \"Ventilation\": 8012.970971089715,\n        \"PumpsAndCirculation\": 8045.648229660332,\n        \"HeatRecovery\": 2507.283642632787,\n        \"HeatPumps\": 7888.585413484979,\n        \"AuxiliaryVentilation\": 6978.491984209832,\n        \"SpaceHeating\": 1304.879931897731,\n        \"UnderFloorSpaceHeating\": 2125.1571969970937,\n        \"HotAirPort\": 240.7209664613541,\n        \"LightingGeneral\": 3924.1801379174967,\n        \"IndoorLighting\": 8721.587170961227,\n        \"OutdoorLighting\": 6155.007344354557,\n        \"EmergencyLighting\": 9093.397426410438,\n        \"DhwGeneral\": 5913.755512161265,\n        \"WaterHeating\": 3884.443109308171,\n        \"DhwCirculation\": 4355.965714239851,\n        \"PlugLoadsGeneral\": 3900.2717065716697,\n        \"OfficeEquipment\": 8983.808957398098,\n        \"ItServers\": 3324.9817644051836,\n        \"ProcessLoadsGeneral\": 4775.100087413855,\n        \"KitchenCatering\": 3969.227921211933,\n        \"LabMedical\": 8148.878117684341,\n        \"Datacenter\": 6188.649839021554,\n        \"RetailEquipment\": 5195.796128577541,\n        \"RefrigerationGeneral\": 2237.465221323034,\n        \"ColdStorage\": 465.9538968533794,\n        \"ProcessCooling\": 5843.382685853742,\n        \"PlugIn\": 2109.0827267749955,\n        \"TransportGeneral\": 7709.794953315876,\n        \"Elevators\": 9689.221503873358,\n        \"Escalators\": 3183.0063117519126,\n        \"EvChargingGeneral\": 6686.335146769556,\n        \"AcCharging\": 3352.2202417046396,\n        \"DcFastCharging\": 4221.092944922515,\n        \"OutdoorSystemsGeneral\": 2613.8741574080714,\n        \"SnowMelting\": 5045.501629102054,\n        \"Irrigation\": 1567.4065942140446,\n        \"SiteEquipment\": 7465.2196313340255,\n        \"OtherGeneral\": 3062.1950712614776,\n        \"EmergencySystems\": 8900.414644756462,\n        \"Unclassified\": 2342.496006134065\n      },\n      \"PlugLoads\": {\n        \"HvacGeneral\": 7242.844140763749,\n        \"HeatExchangers\": 7387.018853944429,\n        \"SpaceCooling\": 4804.889532210008,\n        \"Ventilation\": 2497.9313952641346,\n        \"PumpsAndCirculation\": 5192.50166632864,\n        \"HeatRecovery\": 1036.2203998961795,\n        \"HeatPumps\": 5078.325855120598,\n        \"AuxiliaryVentilation\": 2184.6789291441437,\n        \"SpaceHeating\": 5775.233425606283,\n        \"UnderFloorSpaceHeating\": 860.2461877392908,\n        \"HotAirPort\": 9723.40621500442,\n        \"LightingGeneral\": 2464.6988446344653,\n        \"IndoorLighting\": 9591.211947298152,\n        \"OutdoorLighting\": 9869.491884530798,\n        \"EmergencyLighting\": 7868.537237270605,\n        \"DhwGeneral\": 5680.289179987146,\n        \"WaterHeating\": 1183.956896835543,\n        \"DhwCirculation\": 732.7578239341159,\n        \"PlugLoadsGeneral\": 7838.2289804799975,\n        \"OfficeEquipment\": 3605.476161497603,\n        \"ItServers\": 936.7035465973306,\n        \"ProcessLoadsGeneral\": 4960.576119925841,\n        \"KitchenCatering\": 2121.736606987301,\n        \"LabMedical\": 6735.96869479145,\n        \"Datacenter\": 2.6509273023123114,\n        \"RetailEquipment\": 5968.608643796156,\n        \"RefrigerationGeneral\": 8381.364953405637,\n        \"ColdStorage\": 697.2535130921309,\n        \"ProcessCooling\": 5141.627356436713,\n        \"PlugIn\": 8544.38979738997,\n        \"TransportGeneral\": 6428.682688881522,\n        \"Elevators\": 1833.3728606901989,\n        \"Escalators\": 6889.982312974749,\n        \"EvChargingGeneral\": 1107.7608117124128,\n        \"AcCharging\": 7779.0520409691035,\n        \"DcFastCharging\": 4430.481876233823,\n        \"OutdoorSystemsGeneral\": 2109.1486231230115,\n        \"SnowMelting\": 7542.509809270366,\n        \"Irrigation\": 9490.37954464111,\n        \"SiteEquipment\": 5912.997805522345,\n        \"OtherGeneral\": 6765.910783960829,\n        \"EmergencySystems\": 4872.732437895271,\n        \"Unclassified\": 5413.117573790518\n      },\n      \"ProcessLoads\": {\n        \"HvacGeneral\": 1159.261612472129,\n        \"HeatExchangers\": 6660.046633195858,\n        \"SpaceCooling\": 7907.699310582059,\n        \"Ventilation\": 5366.938441751634,\n        \"PumpsAndCirculation\": 7743.175618037212,\n        \"HeatRecovery\": 4398.672911172627,\n        \"HeatPumps\": 6336.541015751746,\n        \"AuxiliaryVentilation\": 9188.531968960266,\n        \"SpaceHeating\": 5872.433259674172,\n        \"UnderFloorSpaceHeating\": 4582.9221858240035,\n        \"HotAirPort\": 9242.517798584351,\n        \"LightingGeneral\": 4235.226585536809,\n        \"IndoorLighting\": 810.7590817149069,\n        \"OutdoorLighting\": 9294.491751174779,\n        \"EmergencyLighting\": 7517.084676040288,\n        \"DhwGeneral\": 2761.3750208663078,\n        \"WaterHeating\": 724.8743433112015,\n        \"DhwCirculation\": 8089.353154374486,\n        \"PlugLoadsGeneral\": 3146.093366777647,\n        \"OfficeEquipment\": 9412.53135414988,\n        \"ItServers\": 3514.765443269483,\n        \"ProcessLoadsGeneral\": 7225.33958482416,\n        \"KitchenCatering\": 2585.1428943470546,\n        \"LabMedical\": 5455.145710020251,\n        \"Datacenter\": 443.1272195894298,\n        \"RetailEquipment\": 5133.601800453486,\n        \"RefrigerationGeneral\": 6447.720645847026,\n        \"ColdStorage\": 4844.650238653181,\n        \"ProcessCooling\": 13.459854975601537,\n        \"PlugIn\": 4870.315859483243,\n        \"TransportGeneral\": 7203.072117655498,\n        \"Elevators\": 7477.204146352854,\n        \"Escalators\": 5088.3248860732765,\n        \"EvChargingGeneral\": 7831.077913755251,\n        \"AcCharging\": 1033.8182983628762,\n        \"DcFastCharging\": 8694.646537201319,\n        \"OutdoorSystemsGeneral\": 536.508038797574,\n        \"SnowMelting\": 2371.5363322225635,\n        \"Irrigation\": 8480.968205048615,\n        \"SiteEquipment\": 6612.752465089733,\n        \"OtherGeneral\": 3781.4258283595527,\n        \"EmergencySystems\": 1474.7259565839065,\n        \"Unclassified\": 1068.727851679967\n      },\n      \"Refrigeration\": {\n        \"HvacGeneral\": 2883.1725867560376,\n        \"HeatExchangers\": 3540.586761692448,\n        \"SpaceCooling\": 6423.126736698821,\n        \"Ventilation\": 7767.417164658806,\n        \"PumpsAndCirculation\": 2239.6393046701623,\n        \"HeatRecovery\": 5154.181675800689,\n        \"HeatPumps\": 7200.0784081676475,\n        \"AuxiliaryVentilation\": 842.8592509774835,\n        \"SpaceHeating\": 5720.656197900764,\n        \"UnderFloorSpaceHeating\": 7604.432587127439,\n        \"HotAirPort\": 3734.4256679131995,\n        \"LightingGeneral\": 127.00480525507763,\n        \"IndoorLighting\": 7696.852128257628,\n        \"OutdoorLighting\": 5802.4111135031635,\n        \"EmergencyLighting\": 8981.418126215154,\n        \"DhwGeneral\": 8406.790080626894,\n        \"WaterHeating\": 6473.115156315194,\n        \"DhwCirculation\": 3600.501059860757,\n        \"PlugLoadsGeneral\": 8145.263639253497,\n        \"OfficeEquipment\": 4433.794803855218,\n        \"ItServers\": 5521.379448192291,\n        \"ProcessLoadsGeneral\": 9305.31433052302,\n        \"KitchenCatering\": 6772.730994317249,\n        \"LabMedical\": 6662.80089411377,\n        \"Datacenter\": 2220.450047857723,\n        \"RetailEquipment\": 2109.251352912114,\n        \"RefrigerationGeneral\": 3682.9277163401607,\n        \"ColdStorage\": 3809.139391262677,\n        \"ProcessCooling\": 3779.6842398846375,\n        \"PlugIn\": 5850.055616565668,\n        \"TransportGeneral\": 8018.054204520157,\n        \"Elevators\": 7118.994980347495,\n        \"Escalators\": 5034.095737613189,\n        \"EvChargingGeneral\": 3806.7658738008904,\n        \"AcCharging\": 9871.550697294491,\n        \"DcFastCharging\": 2084.75752093062,\n        \"OutdoorSystemsGeneral\": 3173.4252962591204,\n        \"SnowMelting\": 9795.841093011875,\n        \"Irrigation\": 5515.965300274283,\n        \"SiteEquipment\": 1570.5888369810461,\n        \"OtherGeneral\": 503.67209441960495,\n        \"EmergencySystems\": 3845.967756196047,\n        \"Unclassified\": 7910.832061921613\n      },\n      \"Transport\": {\n        \"HvacGeneral\": 3021.2106933109626,\n        \"HeatExchangers\": 1691.9089752569616,\n        \"SpaceCooling\": 7012.373663067461,\n        \"Ventilation\": 587.930463758426,\n        \"PumpsAndCirculation\": 6506.052949797925,\n        \"HeatRecovery\": 6539.6467793479205,\n        \"HeatPumps\": 2275.24670015707,\n        \"AuxiliaryVentilation\": 9839.330968393018,\n        \"SpaceHeating\": 7588.110568566384,\n        \"UnderFloorSpaceHeating\": 2496.1809188699103,\n        \"HotAirPort\": 804.068627929142,\n        \"LightingGeneral\": 9122.110945344268,\n        \"IndoorLighting\": 1138.4782055052667,\n        \"OutdoorLighting\": 366.776130216544,\n        \"EmergencyLighting\": 623.3554607377645,\n        \"DhwGeneral\": 7005.450970301484,\n        \"WaterHeating\": 8550.82889178012,\n        \"DhwCirculation\": 4281.638137987938,\n        \"PlugLoadsGeneral\": 243.67377168903693,\n        \"OfficeEquipment\": 8474.151939646297,\n        \"ItServers\": 3397.189708389179,\n        \"ProcessLoadsGeneral\": 8329.29496572611,\n        \"KitchenCatering\": 8408.647487523676,\n        \"LabMedical\": 6097.592974655817,\n        \"Datacenter\": 1450.911602905711,\n        \"RetailEquipment\": 7919.459232834467,\n        \"RefrigerationGeneral\": 2756.5514037584094,\n        \"ColdStorage\": 2926.0544775278972,\n        \"ProcessCooling\": 6606.670277729217,\n        \"PlugIn\": 7228.803906568333,\n        \"TransportGeneral\": 9638.98414654973,\n        \"Elevators\": 5604.4327229515575,\n        \"Escalators\": 8572.549282618844,\n        \"EvChargingGeneral\": 8303.603505284658,\n        \"AcCharging\": 5503.650969368323,\n        \"DcFastCharging\": 6505.347727974937,\n        \"OutdoorSystemsGeneral\": 7128.605089481765,\n        \"SnowMelting\": 1901.7116646954712,\n        \"Irrigation\": 2060.2091955797787,\n        \"SiteEquipment\": 4778.695403631173,\n        \"OtherGeneral\": 813.3455263927681,\n        \"EmergencySystems\": 6177.834302661549,\n        \"Unclassified\": 4410.361463808521\n      },\n      \"EvCharging\": {\n        \"HvacGeneral\": 6236.398899244376,\n        \"HeatExchangers\": 675.6268996118853,\n        \"SpaceCooling\": 5723.71589156015,\n        \"Ventilation\": 1720.0561749526,\n        \"PumpsAndCirculation\": 633.4125015837367,\n        \"HeatRecovery\": 9866.561243132528,\n        \"HeatPumps\": 2958.013548892835,\n        \"AuxiliaryVentilation\": 6043.4036423555535,\n        \"SpaceHeating\": 2284.6910675977197,\n        \"UnderFloorSpaceHeating\": 5600.561556883139,\n        \"HotAirPort\": 5226.8130747037,\n        \"LightingGeneral\": 428.11935861588603,\n        \"IndoorLighting\": 1458.6640578650222,\n        \"OutdoorLighting\": 3194.0135261265,\n        \"EmergencyLighting\": 4498.708313215431,\n        \"DhwGeneral\": 2799.1348652095826,\n        \"WaterHeating\": 3805.482486019436,\n        \"DhwCirculation\": 1324.619257454538,\n        \"PlugLoadsGeneral\": 9037.837172278649,\n        \"OfficeEquipment\": 2801.724767817679,\n        \"ItServers\": 3295.5850400137574,\n        \"ProcessLoadsGeneral\": 5554.419931398143,\n        \"KitchenCatering\": 4697.911394129022,\n        \"LabMedical\": 321.0407382328495,\n        \"Datacenter\": 8799.39729371043,\n        \"RetailEquipment\": 5173.394276178871,\n        \"RefrigerationGeneral\": 8914.201098533531,\n        \"ColdStorage\": 5747.700205736676,\n        \"ProcessCooling\": 9709.97706961368,\n        \"PlugIn\": 4501.3019536253805,\n        \"TransportGeneral\": 9334.369516884253,\n        \"Elevators\": 6751.257388134928,\n        \"Escalators\": 6674.520689681136,\n        \"EvChargingGeneral\": 4345.158134769443,\n        \"AcCharging\": 4491.437174394854,\n        \"DcFastCharging\": 7732.685869678191,\n        \"OutdoorSystemsGeneral\": 4196.812456605414,\n        \"SnowMelting\": 9373.34863324698,\n        \"Irrigation\": 2650.9689109030223,\n        \"SiteEquipment\": 6923.6952741334435,\n        \"OtherGeneral\": 2726.482652973494,\n        \"EmergencySystems\": 18.36668989337875,\n        \"Unclassified\": 4974.347518449777\n      },\n      \"OutdoorSystems\": {\n        \"HvacGeneral\": 3590.916995837954,\n        \"HeatExchangers\": 4286.591374274473,\n        \"SpaceCooling\": 2036.4830247981968,\n        \"Ventilation\": 2566.5525868171435,\n        \"PumpsAndCirculation\": 1145.1812979082242,\n        \"HeatRecovery\": 5419.893463099866,\n        \"HeatPumps\": 3587.6478089418006,\n        \"AuxiliaryVentilation\": 1878.816337186595,\n        \"SpaceHeating\": 46.43912954448881,\n        \"UnderFloorSpaceHeating\": 9596.341499645274,\n        \"HotAirPort\": 3663.440122866353,\n        \"LightingGeneral\": 9200.271076820305,\n        \"IndoorLighting\": 6259.235999807791,\n        \"OutdoorLighting\": 5146.970068300087,\n        \"EmergencyLighting\": 6555.015840247948,\n        \"DhwGeneral\": 7720.179340247284,\n        \"WaterHeating\": 1335.4852320894706,\n        \"DhwCirculation\": 3359.3278368081037,\n        \"PlugLoadsGeneral\": 4580.121380743818,\n        \"OfficeEquipment\": 1219.3628515249277,\n        \"ItServers\": 6691.508787980012,\n        \"ProcessLoadsGeneral\": 5385.865056668739,\n        \"KitchenCatering\": 7463.074425341037,\n        \"LabMedical\": 8968.304973176186,\n        \"Datacenter\": 9363.066566861546,\n        \"RetailEquipment\": 1895.2412020464226,\n        \"RefrigerationGeneral\": 9161.833005386698,\n        \"ColdStorage\": 9948.109175714137,\n        \"ProcessCooling\": 5072.117976431167,\n        \"PlugIn\": 715.69540451357,\n        \"TransportGeneral\": 5198.726834947242,\n        \"Elevators\": 4922.315948983875,\n        \"Escalators\": 7566.945000644272,\n        \"EvChargingGeneral\": 4258.9927745439145,\n        \"AcCharging\": 7448.367690368911,\n        \"DcFastCharging\": 9014.596854571393,\n        \"OutdoorSystemsGeneral\": 2649.2068013767466,\n        \"SnowMelting\": 9542.48549735716,\n        \"Irrigation\": 8662.255562474627,\n        \"SiteEquipment\": 2.16103131113643,\n        \"OtherGeneral\": 2980.23144057604,\n        \"EmergencySystems\": 6567.39705649604,\n        \"Unclassified\": 216.8252470592691\n      },\n      \"Other\": {\n        \"HvacGeneral\": 9310.35767740174,\n        \"HeatExchangers\": 4679.704373865729,\n        \"SpaceCooling\": 9683.963405822882,\n        \"Ventilation\": 9615.423157229669,\n        \"PumpsAndCirculation\": 2610.649811019885,\n        \"HeatRecovery\": 7071.0501163869185,\n        \"HeatPumps\": 2852.900425236231,\n        \"AuxiliaryVentilation\": 3562.541643579407,\n        \"SpaceHeating\": 1325.4462551643976,\n        \"UnderFloorSpaceHeating\": 115.49513305971759,\n        \"HotAirPort\": 2250.979915728721,\n        \"LightingGeneral\": 6143.885227032289,\n        \"IndoorLighting\": 4407.459142676246,\n        \"OutdoorLighting\": 5306.73653177298,\n        \"EmergencyLighting\": 9266.98275305427,\n        \"DhwGeneral\": 9397.053654413849,\n        \"WaterHeating\": 5745.1331124922,\n        \"DhwCirculation\": 2317.148159105078,\n        \"PlugLoadsGeneral\": 3773.2030973285437,\n        \"OfficeEquipment\": 7538.9930246553695,\n        \"ItServers\": 2943.742058871568,\n        \"ProcessLoadsGeneral\": 4346.04426780421,\n        \"KitchenCatering\": 1296.9547126290215,\n        \"LabMedical\": 7702.809612859902,\n        \"Datacenter\": 8266.268988756845,\n        \"RetailEquipment\": 3716.6195976700787,\n        \"RefrigerationGeneral\": 8758.612968619174,\n        \"ColdStorage\": 3370.2950683794807,\n        \"ProcessCooling\": 792.4429561249635,\n        \"PlugIn\": 583.7834485276683,\n        \"TransportGeneral\": 6916.262591953084,\n        \"Elevators\": 6459.234920240025,\n        \"Escalators\": 2400.6332854466805,\n        \"EvChargingGeneral\": 9590.739884490893,\n        \"AcCharging\": 71.3966494313678,\n        \"DcFastCharging\": 858.6253334969807,\n        \"OutdoorSystemsGeneral\": 1270.79824047712,\n        \"SnowMelting\": 2655.4848958996445,\n        \"Irrigation\": 4241.743551890065,\n        \"SiteEquipment\": 6564.8333249971765,\n        \"OtherGeneral\": 9393.759642467157,\n        \"EmergencySystems\": 1482.5444500593287,\n        \"Unclassified\": 9383.884609691642\n      },\n      \"Unallocated\": {\n        \"HvacGeneral\": 406.0493387439057,\n        \"HeatExchangers\": 7716.157265920598,\n        \"SpaceCooling\": 8982.315488007453,\n        \"Ventilation\": 623.0885739759295,\n        \"PumpsAndCirculation\": 7124.811871331842,\n        \"HeatRecovery\": 2267.257638964342,\n        \"HeatPumps\": 7898.457569223041,\n        \"AuxiliaryVentilation\": 548.7096720913077,\n        \"SpaceHeating\": 4053.2362089350117,\n        \"UnderFloorSpaceHeating\": 7176.286972220549,\n        \"HotAirPort\": 2209.9958041725,\n        \"LightingGeneral\": 7428.3898077801405,\n        \"IndoorLighting\": 5665.8178962952,\n        \"OutdoorLighting\": 5497.287445708345,\n        \"EmergencyLighting\": 6930.448155558626,\n        \"DhwGeneral\": 9427.491466034688,\n        \"WaterHeating\": 6499.185088906214,\n        \"DhwCirculation\": 7793.262767917157,\n        \"PlugLoadsGeneral\": 1638.7927882697938,\n        \"OfficeEquipment\": 92.77756565351459,\n        \"ItServers\": 143.78112006053988,\n        \"ProcessLoadsGeneral\": 2813.7634301269145,\n        \"KitchenCatering\": 9603.478554010853,\n        \"LabMedical\": 743.1582717958296,\n        \"Datacenter\": 4962.9365356133985,\n        \"RetailEquipment\": 2924.0270602868113,\n        \"RefrigerationGeneral\": 6832.1521997788295,\n        \"ColdStorage\": 3099.7721505972177,\n        \"ProcessCooling\": 4332.736443245398,\n        \"PlugIn\": 9756.163907812805,\n        \"TransportGeneral\": 3850.010214388364,\n        \"Elevators\": 2187.511392690182,\n        \"Escalators\": 6497.711201709338,\n        \"EvChargingGeneral\": 9616.602516112442,\n        \"AcCharging\": 4031.7564295387974,\n        \"DcFastCharging\": 5067.66534525169,\n        \"OutdoorSystemsGeneral\": 4154.850214612294,\n        \"SnowMelting\": 5457.845670771597,\n        \"Irrigation\": 8946.253355390541,\n        \"SiteEquipment\": 4584.269544906685,\n        \"OtherGeneral\": 6910.712239886625,\n        \"EmergencySystems\": 9114.79156967619,\n        \"Unclassified\": 5220.148968194711\n      }\n    }\n  },\n  {\n    \"id\": 152,\n    \"meterId\": 7206,\n    \"fromDate\": \"1959-11-11\",\n    \"distributions\": {\n      \"HVAC\": {\n        \"HvacGeneral\": 4857.381348464196,\n        \"HeatExchangers\": 1749.0493689084574,\n        \"SpaceCooling\": 9106.539994448302,\n        \"Ventilation\": 2683.9080126509175,\n        \"PumpsAndCirculation\": 3239.7531247765896,\n        \"HeatRecovery\": 7593.887791600786,\n        \"HeatPumps\": 1137.224138501658,\n        \"AuxiliaryVentilation\": 7248.36912194492,\n        \"SpaceHeating\": 2561.4085460274327,\n        \"UnderFloorSpaceHeating\": 4616.5580006081755,\n        \"HotAirPort\": 6375.534352424861,\n        \"LightingGeneral\": 2070.2594545053853,\n        \"IndoorLighting\": 6252.112919610462,\n        \"OutdoorLighting\": 3093.509876860725,\n        \"EmergencyLighting\": 4488.839603516952,\n        \"DhwGeneral\": 3213.7482683881412,\n        \"WaterHeating\": 84.64585365616006,\n        \"DhwCirculation\": 9479.18712733679,\n        \"PlugLoadsGeneral\": 5632.229751938118,\n        \"OfficeEquipment\": 8506.401482277957,\n        \"ItServers\": 1197.6366008811824,\n        \"ProcessLoadsGeneral\": 1329.4814365769048,\n        \"KitchenCatering\": 7148.91055243492,\n        \"LabMedical\": 1006.1597778279752,\n        \"Datacenter\": 6484.662332483506,\n        \"RetailEquipment\": 6513.286389354642,\n        \"RefrigerationGeneral\": 1538.122942757716,\n        \"ColdStorage\": 8147.7504578831695,\n        \"ProcessCooling\": 3970.0774693170706,\n        \"PlugIn\": 3988.9372928192965,\n        \"TransportGeneral\": 2151.316061714177,\n        \"Elevators\": 1098.6268386162235,\n        \"Escalators\": 4394.681951777211,\n        \"EvChargingGeneral\": 6210.921666297602,\n        \"AcCharging\": 7548.4396004765595,\n        \"DcFastCharging\": 4620.258566139868,\n        \"OutdoorSystemsGeneral\": 5823.811675126929,\n        \"SnowMelting\": 5334.356287039445,\n        \"Irrigation\": 1280.0255296082619,\n        \"SiteEquipment\": 1890.6952800332144,\n        \"OtherGeneral\": 1939.2185118683415,\n        \"EmergencySystems\": 4910.137983755998,\n        \"Unclassified\": 8108.3349511836595\n      },\n      \"Lighting\": {\n        \"HvacGeneral\": 7691.895574720198,\n        \"HeatExchangers\": 400.9076736237005,\n        \"SpaceCooling\": 1159.043335198009,\n        \"Ventilation\": 8756.120435881698,\n        \"PumpsAndCirculation\": 2159.369747464768,\n        \"HeatRecovery\": 3732.6139603809484,\n        \"HeatPumps\": 7101.920198206224,\n        \"AuxiliaryVentilation\": 9214.59188747859,\n        \"SpaceHeating\": 8106.479200241132,\n        \"UnderFloorSpaceHeating\": 5461.816840459976,\n        \"HotAirPort\": 1674.177345006751,\n        \"LightingGeneral\": 9532.86523536876,\n        \"IndoorLighting\": 121.42987099388769,\n        \"OutdoorLighting\": 6495.093913611574,\n        \"EmergencyLighting\": 6032.652366804352,\n        \"DhwGeneral\": 2382.3555025572473,\n        \"WaterHeating\": 1066.1918436805374,\n        \"DhwCirculation\": 4189.414720015163,\n        \"PlugLoadsGeneral\": 6272.423207369428,\n        \"OfficeEquipment\": 7105.4010570022565,\n        \"ItServers\": 1503.5644226577438,\n        \"ProcessLoadsGeneral\": 9025.474428634294,\n        \"KitchenCatering\": 4756.164000825107,\n        \"LabMedical\": 2922.3108062017955,\n        \"Datacenter\": 9076.65755377966,\n        \"RetailEquipment\": 7621.346395324662,\n        \"RefrigerationGeneral\": 9117.775022996766,\n        \"ColdStorage\": 9846.913769899702,\n        \"ProcessCooling\": 6413.50466951845,\n        \"PlugIn\": 567.1320868046225,\n        \"TransportGeneral\": 1979.8127070065696,\n        \"Elevators\": 567.6804721002493,\n        \"Escalators\": 7406.863108983941,\n        \"EvChargingGeneral\": 405.14227730543695,\n        \"AcCharging\": 954.6302083411207,\n        \"DcFastCharging\": 972.753447182011,\n        \"OutdoorSystemsGeneral\": 9916.494852328275,\n        \"SnowMelting\": 1956.824033874658,\n        \"Irrigation\": 9345.674173493606,\n        \"SiteEquipment\": 7268.107102896842,\n        \"OtherGeneral\": 1207.5841733538439,\n        \"EmergencySystems\": 3195.6584472155037,\n        \"Unclassified\": 67.81103409096545\n      },\n      \"Dhw\": {\n        \"HvacGeneral\": 1006.0492365834506,\n        \"HeatExchangers\": 3908.58437913842,\n        \"SpaceCooling\": 8571.114842011031,\n        \"Ventilation\": 4005.571904047893,\n        \"PumpsAndCirculation\": 5541.899085545465,\n        \"HeatRecovery\": 2316.5112767682895,\n        \"HeatPumps\": 1106.1182791494218,\n        \"AuxiliaryVentilation\": 6110.160811951244,\n        \"SpaceHeating\": 4917.381825561056,\n        \"UnderFloorSpaceHeating\": 6411.720511403951,\n        \"HotAirPort\": 9855.734702405667,\n        \"LightingGeneral\": 857.4085075556482,\n        \"IndoorLighting\": 1006.6647004222796,\n        \"OutdoorLighting\": 1693.2719148664787,\n        \"EmergencyLighting\": 7294.880464485651,\n        \"DhwGeneral\": 2421.413521706526,\n        \"WaterHeating\": 1664.3260382738645,\n        \"DhwCirculation\": 9801.159489368716,\n        \"PlugLoadsGeneral\": 8349.809670911445,\n        \"OfficeEquipment\": 1400.4166074475543,\n        \"ItServers\": 1986.922266969273,\n        \"ProcessLoadsGeneral\": 810.2538312574103,\n        \"KitchenCatering\": 5332.569604701723,\n        \"LabMedical\": 4957.097845574814,\n        \"Datacenter\": 9481.365412423505,\n        \"RetailEquipment\": 400.97354907036475,\n        \"RefrigerationGeneral\": 7218.935916618605,\n        \"ColdStorage\": 2898.827069694667,\n        \"ProcessCooling\": 5288.597822205805,\n        \"PlugIn\": 3329.020717102087,\n        \"TransportGeneral\": 3740.1398976649225,\n        \"Elevators\": 2196.7809871145573,\n        \"Escalators\": 9078.380134294937,\n        \"EvChargingGeneral\": 666.0003848051455,\n        \"AcCharging\": 864.7150103949497,\n        \"DcFastCharging\": 3375.97115352678,\n        \"OutdoorSystemsGeneral\": 5510.887054159965,\n        \"SnowMelting\": 8924.472632782283,\n        \"Irrigation\": 8103.126661661886,\n        \"SiteEquipment\": 3108.755582234561,\n        \"OtherGeneral\": 4706.58924458702,\n        \"EmergencySystems\": 9791.579008767047,\n        \"Unclassified\": 2170.8819495851217\n      },\n      \"PlugLoads\": {\n        \"HvacGeneral\": 7516.534394574243,\n        \"HeatExchangers\": 9351.1346682918,\n        \"SpaceCooling\": 6166.6357725081625,\n        \"Ventilation\": 7429.367859016696,\n        \"PumpsAndCirculation\": 1295.7360731047474,\n        \"HeatRecovery\": 3695.9233990108874,\n        \"HeatPumps\": 394.6375681151393,\n        \"AuxiliaryVentilation\": 2925.69367549498,\n        \"SpaceHeating\": 2073.228285006099,\n        \"UnderFloorSpaceHeating\": 2194.330062583907,\n        \"HotAirPort\": 9665.441456719444,\n        \"LightingGeneral\": 6468.6225288036385,\n        \"IndoorLighting\": 7410.913580610106,\n        \"OutdoorLighting\": 4225.959928373648,\n        \"EmergencyLighting\": 3032.6300734540237,\n        \"DhwGeneral\": 4257.019222623248,\n        \"WaterHeating\": 2650.7707647752854,\n        \"DhwCirculation\": 1852.2937547415763,\n        \"PlugLoadsGeneral\": 9093.29004211819,\n        \"OfficeEquipment\": 8921.345907053732,\n        \"ItServers\": 7324.284894771338,\n        \"ProcessLoadsGeneral\": 3300.0322637877866,\n        \"KitchenCatering\": 3796.60869678315,\n        \"LabMedical\": 3221.8029249544065,\n        \"Datacenter\": 5286.509143609088,\n        \"RetailEquipment\": 405.09387789322784,\n        \"RefrigerationGeneral\": 4058.291185285996,\n        \"ColdStorage\": 2266.9942464526225,\n        \"ProcessCooling\": 2277.0743723686614,\n        \"PlugIn\": 4485.335446573497,\n        \"TransportGeneral\": 7314.221165545678,\n        \"Elevators\": 4859.11781552359,\n        \"Escalators\": 2050.614144046168,\n        \"EvChargingGeneral\": 6302.06599233901,\n        \"AcCharging\": 5030.438213025716,\n        \"DcFastCharging\": 149.95619848090945,\n        \"OutdoorSystemsGeneral\": 7604.7404146538365,\n        \"SnowMelting\": 6211.318417345362,\n        \"Irrigation\": 675.0211456805522,\n        \"SiteEquipment\": 276.39900766189163,\n        \"OtherGeneral\": 8912.83711605182,\n        \"EmergencySystems\": 3083.0905255176513,\n        \"Unclassified\": 2127.497211901903\n      },\n      \"ProcessLoads\": {\n        \"HvacGeneral\": 4720.191317704017,\n        \"HeatExchangers\": 6774.640723461758,\n        \"SpaceCooling\": 1694.04031968726,\n        \"Ventilation\": 6316.513366935424,\n        \"PumpsAndCirculation\": 4927.559767294685,\n        \"HeatRecovery\": 3392.967164579892,\n        \"HeatPumps\": 4019.0903603546667,\n        \"AuxiliaryVentilation\": 108.318863212018,\n        \"SpaceHeating\": 2695.5155367576913,\n        \"UnderFloorSpaceHeating\": 5734.634795124162,\n        \"HotAirPort\": 5509.3622202475935,\n        \"LightingGeneral\": 9581.398878839418,\n        \"IndoorLighting\": 9034.700036672028,\n        \"OutdoorLighting\": 7.574109765609016,\n        \"EmergencyLighting\": 3921.7384348219043,\n        \"DhwGeneral\": 3305.1621665718244,\n        \"WaterHeating\": 4110.721871479243,\n        \"DhwCirculation\": 1746.867880821421,\n        \"PlugLoadsGeneral\": 7642.741252344907,\n        \"OfficeEquipment\": 4757.993308737731,\n        \"ItServers\": 9360.304688805096,\n        \"ProcessLoadsGeneral\": 5572.053465365365,\n        \"KitchenCatering\": 3853.257653775974,\n        \"LabMedical\": 6750.22500885799,\n        \"Datacenter\": 5220.380478810953,\n        \"RetailEquipment\": 2701.3238843560684,\n        \"RefrigerationGeneral\": 6093.657236391925,\n        \"ColdStorage\": 537.3003119307529,\n        \"ProcessCooling\": 1663.0140819166738,\n        \"PlugIn\": 7897.759668227158,\n        \"TransportGeneral\": 5608.014112944295,\n        \"Elevators\": 3732.2661426290706,\n        \"Escalators\": 291.03607089368876,\n        \"EvChargingGeneral\": 8445.624838404265,\n        \"AcCharging\": 7719.411492183017,\n        \"DcFastCharging\": 9974.603080713448,\n        \"OutdoorSystemsGeneral\": 4748.350598591682,\n        \"SnowMelting\": 7010.224319152718,\n        \"Irrigation\": 4727.732858083716,\n        \"SiteEquipment\": 8699.551151983047,\n        \"OtherGeneral\": 91.68977097291587,\n        \"EmergencySystems\": 9146.960284428944,\n        \"Unclassified\": 3844.8995114033414\n      },\n      \"Refrigeration\": {\n        \"HvacGeneral\": 1675.5756800063425,\n        \"HeatExchangers\": 5085.396509817792,\n        \"SpaceCooling\": 5946.377300178836,\n        \"Ventilation\": 9603.117915027164,\n        \"PumpsAndCirculation\": 5013.536998832528,\n        \"HeatRecovery\": 8810.315842134592,\n        \"HeatPumps\": 3279.3067690763155,\n        \"AuxiliaryVentilation\": 648.2765132451873,\n        \"SpaceHeating\": 22.123884615081746,\n        \"UnderFloorSpaceHeating\": 2281.5976531958727,\n        \"HotAirPort\": 6730.744090916157,\n        \"LightingGeneral\": 165.51157163495756,\n        \"IndoorLighting\": 4554.746389408455,\n        \"OutdoorLighting\": 9102.895707401294,\n        \"EmergencyLighting\": 8906.44756667394,\n        \"DhwGeneral\": 2937.493858107305,\n        \"WaterHeating\": 4377.788898728035,\n        \"DhwCirculation\": 4747.815892565923,\n        \"PlugLoadsGeneral\": 5138.273516850806,\n        \"OfficeEquipment\": 2888.080628009595,\n        \"ItServers\": 2167.440145690729,\n        \"ProcessLoadsGeneral\": 5686.920416380519,\n        \"KitchenCatering\": 736.1532876609034,\n        \"LabMedical\": 9686.207121440093,\n        \"Datacenter\": 6394.887408094381,\n        \"RetailEquipment\": 3724.550618545581,\n        \"RefrigerationGeneral\": 4102.150506000377,\n        \"ColdStorage\": 9227.172546090087,\n        \"ProcessCooling\": 3737.6122871695206,\n        \"PlugIn\": 476.63884614346006,\n        \"TransportGeneral\": 340.3678331272286,\n        \"Elevators\": 6158.061989656482,\n        \"Escalators\": 5877.204817802027,\n        \"EvChargingGeneral\": 6748.143552028816,\n        \"AcCharging\": 4653.971870222007,\n        \"DcFastCharging\": 4777.251835646263,\n        \"OutdoorSystemsGeneral\": 6834.53435593014,\n        \"SnowMelting\": 3762.9341883830602,\n        \"Irrigation\": 1273.9492618784643,\n        \"SiteEquipment\": 6947.089943950286,\n        \"OtherGeneral\": 229.42227439407102,\n        \"EmergencySystems\": 1315.7862480680137,\n        \"Unclassified\": 8222.399207848577\n      },\n      \"Transport\": {\n        \"HvacGeneral\": 311.2338293360573,\n        \"HeatExchangers\": 6778.121455142509,\n        \"SpaceCooling\": 8502.32409592241,\n        \"Ventilation\": 4091.172050490108,\n        \"PumpsAndCirculation\": 9574.530946259914,\n        \"HeatRecovery\": 7284.8209117859205,\n        \"HeatPumps\": 4106.267234667615,\n        \"AuxiliaryVentilation\": 3884.50612071497,\n        \"SpaceHeating\": 3700.9427512596303,\n        \"UnderFloorSpaceHeating\": 5864.945651568713,\n        \"HotAirPort\": 3257.906392304173,\n        \"LightingGeneral\": 6273.58779147708,\n        \"IndoorLighting\": 8414.318019386403,\n        \"OutdoorLighting\": 4761.193585400645,\n        \"EmergencyLighting\": 3207.2405634671686,\n        \"DhwGeneral\": 8693.945218086381,\n        \"WaterHeating\": 2675.570641946625,\n        \"DhwCirculation\": 9813.317887349816,\n        \"PlugLoadsGeneral\": 4231.634157157946,\n        \"OfficeEquipment\": 6924.858518204886,\n        \"ItServers\": 5880.820542122107,\n        \"ProcessLoadsGeneral\": 4176.927803336257,\n        \"KitchenCatering\": 6786.553130307593,\n        \"LabMedical\": 8528.488937816102,\n        \"Datacenter\": 6091.853892422479,\n        \"RetailEquipment\": 9761.983657449513,\n        \"RefrigerationGeneral\": 3918.2720285666937,\n        \"ColdStorage\": 7983.405852135701,\n        \"ProcessCooling\": 5887.567060905656,\n        \"PlugIn\": 3738.967917907767,\n        \"TransportGeneral\": 2243.9470368618063,\n        \"Elevators\": 8271.614271686118,\n        \"Escalators\": 967.1624924019006,\n        \"EvChargingGeneral\": 4633.584693817319,\n        \"AcCharging\": 9876.733674052097,\n        \"DcFastCharging\": 8105.790935804948,\n        \"OutdoorSystemsGeneral\": 1125.746560169767,\n        \"SnowMelting\": 9171.983862614981,\n        \"Irrigation\": 9711.860761268452,\n        \"SiteEquipment\": 1542.4460658311245,\n        \"OtherGeneral\": 382.94008187587326,\n        \"EmergencySystems\": 4998.717601200738,\n        \"Unclassified\": 7586.940937391826\n      },\n      \"EvCharging\": {\n        \"HvacGeneral\": 8497.220552302491,\n        \"HeatExchangers\": 3827.285186860547,\n        \"SpaceCooling\": 3048.8423999215543,\n        \"Ventilation\": 3001.147822896044,\n        \"PumpsAndCirculation\": 2129.31929809568,\n        \"HeatRecovery\": 8058.442461173226,\n        \"HeatPumps\": 4718.828270807209,\n        \"AuxiliaryVentilation\": 3621.4244593502044,\n        \"SpaceHeating\": 9761.28621570509,\n        \"UnderFloorSpaceHeating\": 4411.965454524895,\n        \"HotAirPort\": 5759.195315690844,\n        \"LightingGeneral\": 9517.483593126492,\n        \"IndoorLighting\": 225.083376558195,\n        \"OutdoorLighting\": 3004.3457129302233,\n        \"EmergencyLighting\": 720.5793198803656,\n        \"DhwGeneral\": 207.7553344880867,\n        \"WaterHeating\": 5168.690795867929,\n        \"DhwCirculation\": 83.15852352313246,\n        \"PlugLoadsGeneral\": 5292.626858258145,\n        \"OfficeEquipment\": 6310.733882167652,\n        \"ItServers\": 7844.096668085554,\n        \"ProcessLoadsGeneral\": 9147.09940895323,\n        \"KitchenCatering\": 3597.513225697044,\n        \"LabMedical\": 3801.834382303704,\n        \"Datacenter\": 5458.099763388817,\n        \"RetailEquipment\": 9036.194509363808,\n        \"RefrigerationGeneral\": 744.9260463092199,\n        \"ColdStorage\": 2001.3912234898944,\n        \"ProcessCooling\": 3552.997129182689,\n        \"PlugIn\": 6318.159096879015,\n        \"TransportGeneral\": 6150.3425671136065,\n        \"Elevators\": 4698.616547190304,\n        \"Escalators\": 9528.699873685691,\n        \"EvChargingGeneral\": 7398.8486042835675,\n        \"AcCharging\": 4806.753952440373,\n        \"DcFastCharging\": 7431.7191403127445,\n        \"OutdoorSystemsGeneral\": 5477.631725791998,\n        \"SnowMelting\": 6353.893935963284,\n        \"Irrigation\": 3995.0635969672144,\n        \"SiteEquipment\": 2801.0334135928215,\n        \"OtherGeneral\": 6821.812614272569,\n        \"EmergencySystems\": 5654.620704107907,\n        \"Unclassified\": 5640.992519883012\n      },\n      \"OutdoorSystems\": {\n        \"HvacGeneral\": 8761.975253929277,\n        \"HeatExchangers\": 2695.240373509906,\n        \"SpaceCooling\": 9760.784389746324,\n        \"Ventilation\": 8057.49729525826,\n        \"PumpsAndCirculation\": 6624.6531956196895,\n        \"HeatRecovery\": 1853.842663467551,\n        \"HeatPumps\": 197.79283820141382,\n        \"AuxiliaryVentilation\": 48.74508384242971,\n        \"SpaceHeating\": 934.8115670435897,\n        \"UnderFloorSpaceHeating\": 507.5638815289518,\n        \"HotAirPort\": 8791.41773059612,\n        \"LightingGeneral\": 4664.9873352755585,\n        \"IndoorLighting\": 3877.702971918495,\n        \"OutdoorLighting\": 4058.379213051857,\n        \"EmergencyLighting\": 5026.646364825558,\n        \"DhwGeneral\": 8953.635918218246,\n        \"WaterHeating\": 8125.503304208375,\n        \"DhwCirculation\": 7441.530925862918,\n        \"PlugLoadsGeneral\": 4335.745337095873,\n        \"OfficeEquipment\": 5402.745118736936,\n        \"ItServers\": 5010.50362726023,\n        \"ProcessLoadsGeneral\": 3731.824493708484,\n        \"KitchenCatering\": 2731.473158672972,\n        \"LabMedical\": 8870.067879075947,\n        \"Datacenter\": 3146.8536224489685,\n        \"RetailEquipment\": 2761.1302527725366,\n        \"RefrigerationGeneral\": 7410.542628497045,\n        \"ColdStorage\": 4616.02960209748,\n        \"ProcessCooling\": 3742.8090118265422,\n        \"PlugIn\": 8618.215599693309,\n        \"TransportGeneral\": 9834.289173717585,\n        \"Elevators\": 6195.275364622932,\n        \"Escalators\": 5983.428745913586,\n        \"EvChargingGeneral\": 3735.5057829283587,\n        \"AcCharging\": 3598.1045256875645,\n        \"DcFastCharging\": 7856.204502616906,\n        \"OutdoorSystemsGeneral\": 392.2191249749463,\n        \"SnowMelting\": 2430.748175618689,\n        \"Irrigation\": 7539.665811955944,\n        \"SiteEquipment\": 1570.2367839473163,\n        \"OtherGeneral\": 3633.6240785626696,\n        \"EmergencySystems\": 2317.641083904025,\n        \"Unclassified\": 7860.907237403316\n      },\n      \"Other\": {\n        \"HvacGeneral\": 7300.0445032946645,\n        \"HeatExchangers\": 2904.5220700310724,\n        \"SpaceCooling\": 4154.587325509827,\n        \"Ventilation\": 3496.7580554922083,\n        \"PumpsAndCirculation\": 8118.694078821198,\n        \"HeatRecovery\": 4943.4938301647335,\n        \"HeatPumps\": 5876.605353769999,\n        \"AuxiliaryVentilation\": 5896.335294589703,\n        \"SpaceHeating\": 1791.912656431327,\n        \"UnderFloorSpaceHeating\": 6000.392526230711,\n        \"HotAirPort\": 673.1171480017939,\n        \"LightingGeneral\": 9037.332572064553,\n        \"IndoorLighting\": 543.1355989193709,\n        \"OutdoorLighting\": 8016.569716955067,\n        \"EmergencyLighting\": 9828.502984393426,\n        \"DhwGeneral\": 7466.617369585855,\n        \"WaterHeating\": 223.40665057541287,\n        \"DhwCirculation\": 2151.9129300973773,\n        \"PlugLoadsGeneral\": 9944.137502794552,\n        \"OfficeEquipment\": 4757.039842415201,\n        \"ItServers\": 7967.412942841019,\n        \"ProcessLoadsGeneral\": 4865.272506108664,\n        \"KitchenCatering\": 452.41441464194844,\n        \"LabMedical\": 1547.276758947449,\n        \"Datacenter\": 455.3383006823908,\n        \"RetailEquipment\": 9953.712393551432,\n        \"RefrigerationGeneral\": 7558.018297054756,\n        \"ColdStorage\": 6621.672061698425,\n        \"ProcessCooling\": 5278.063530919197,\n        \"PlugIn\": 5806.064253453594,\n        \"TransportGeneral\": 1392.1982018467927,\n        \"Elevators\": 2943.628356524659,\n        \"Escalators\": 5891.858829105996,\n        \"EvChargingGeneral\": 2758.6962973753625,\n        \"AcCharging\": 2030.905185334131,\n        \"DcFastCharging\": 9413.621324711152,\n        \"OutdoorSystemsGeneral\": 6697.272782754737,\n        \"SnowMelting\": 2822.4055284903325,\n        \"Irrigation\": 4202.520196513348,\n        \"SiteEquipment\": 4124.640149238971,\n        \"OtherGeneral\": 8376.349676013699,\n        \"EmergencySystems\": 2528.3022032188483,\n        \"Unclassified\": 7164.882151499721\n      },\n      \"Unallocated\": {\n        \"HvacGeneral\": 2419.837969118417,\n        \"HeatExchangers\": 9538.15105462561,\n        \"SpaceCooling\": 8284.631718209226,\n        \"Ventilation\": 9210.826555841348,\n        \"PumpsAndCirculation\": 9634.720273495019,\n        \"HeatRecovery\": 30.363333457923414,\n        \"HeatPumps\": 3816.231388926703,\n        \"AuxiliaryVentilation\": 1697.7331778138382,\n        \"SpaceHeating\": 3718.120498910684,\n        \"UnderFloorSpaceHeating\": 6244.072372829237,\n        \"HotAirPort\": 838.0626958199699,\n        \"LightingGeneral\": 3353.8937428297545,\n        \"IndoorLighting\": 7611.067368335509,\n        \"OutdoorLighting\": 3610.64470269294,\n        \"EmergencyLighting\": 760.170589474507,\n        \"DhwGeneral\": 5727.23473758626,\n        \"WaterHeating\": 4190.468437024333,\n        \"DhwCirculation\": 7718.249656067326,\n        \"PlugLoadsGeneral\": 8601.555015410568,\n        \"OfficeEquipment\": 9865.651449177592,\n        \"ItServers\": 585.9728486285776,\n        \"ProcessLoadsGeneral\": 4121.943504077767,\n        \"KitchenCatering\": 7423.774760857207,\n        \"LabMedical\": 6556.838173397837,\n        \"Datacenter\": 1285.7044799293815,\n        \"RetailEquipment\": 8122.121146265484,\n        \"RefrigerationGeneral\": 8426.0987408074,\n        \"ColdStorage\": 7337.053414230839,\n        \"ProcessCooling\": 5805.896077532673,\n        \"PlugIn\": 4535.05977695493,\n        \"TransportGeneral\": 2550.9921559810023,\n        \"Elevators\": 9059.390097194522,\n        \"Escalators\": 354.43116160776003,\n        \"EvChargingGeneral\": 7573.995650814858,\n        \"AcCharging\": 2273.841286374807,\n        \"DcFastCharging\": 528.8986790904482,\n        \"OutdoorSystemsGeneral\": 6478.424108763081,\n        \"SnowMelting\": 6629.141386565077,\n        \"Irrigation\": 7115.255323880565,\n        \"SiteEquipment\": 1620.2258407405322,\n        \"OtherGeneral\": 4510.872054912543,\n        \"EmergencySystems\": 6158.800249848599,\n        \"Unclassified\": 33.69986934575131\n      }\n    }\n  }\n]"},{"id":"523d3cf9-964f-457c-a08b-b02386831547","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/:meterId/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters",":meterId","usage-distributions"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c907ec0f-3ea6-48fd-866e-94fef804a889","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/:meterId/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters",":meterId","usage-distributions"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1c27a9ea-4741-4aca-91d7-851c53ea7793","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v1/sites/:siteId/meters/:meterId/usage-distributions","host":["/"],"path":["api","v1","sites",":siteId","meters",":meterId","usage-distributions"],"variable":[{"key":"siteId","value":"2339"},{"key":"meterId","value":"2339"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 349,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"7423750b-077f-4ac2-9e10-05e4fe4d4572"}],"id":"f65321a6-5f98-45fd-8a28-b58e5e2fd40b","_postman_id":"f65321a6-5f98-45fd-8a28-b58e5e2fd40b","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"ConsumptionV2","item":[{"name":"Consumption V2 Get Periodic Consumption By Tenants","id":"1947082f-b710-4c72-945b-ddf2e8f42874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"e7e5209f-dc5e-4bec-a891-060890cd9ab8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"key_0\": {\n      \"logDate\": \"1954-03-19T13:08:12.391Z\",\n      \"consumption\": 2402.4699688374153\n    },\n    \"key_1\": {\n      \"logDate\": \"2021-11-13T03:21:53.392Z\",\n      \"consumption\": 6593.404061841701\n    }\n  },\n  \"notices\": [\n    {\n      \"meterId\": 529,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"1995-04-22T19:41:48.114Z\",\n          \"toDate\": \"1989-02-07T16:23:22.346Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 1465.2177745465544,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1996-12-16T04:43:49.290Z\",\n          \"toDate\": \"1960-12-10T00:24:18.687Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 666.6573930859854,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 1462,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"1959-09-04T04:49:46.098Z\",\n          \"toDate\": \"2020-03-27T10:19:01.918Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 3148.4201735679494,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2011-05-18T08:02:15.180Z\",\n          \"toDate\": \"1951-10-20T07:17:16.190Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 2104.4194923295213,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"877dfabf-ab70-4471-8d6e-cd6bbdf3af9e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"cb2c2c5e-4cfc-4dc5-b29c-5505f3b0f722","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"05a40fb2-df78-4576-bd3a-50f35615f347","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"4fca9798-95ed-44c5-aa1a-c5be4461d6f2","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9bddbfde-46e5-48dd-a021-c1a9d6718c56","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1947082f-b710-4c72-945b-ddf2e8f42874"},{"name":"Consumption V2 Get Periodic Consumption By Tenants As Series","id":"ffd9a143-252a-4153-9921-1c79b72f3a4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"fdb0abeb-b0b2-4fc6-b760-25a90ff04857","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"key_0\": [\n      {\n        \"logDate\": \"2018-07-03T04:32:51.339Z\",\n        \"consumption\": 9246.988740189136\n      },\n      {\n        \"logDate\": \"1977-08-13T05:58:32.156Z\",\n        \"consumption\": 7685.256163189664\n      }\n    ],\n    \"key_1\": [\n      {\n        \"logDate\": \"1953-12-21T21:31:54.536Z\",\n        \"consumption\": 2021.4543001118868\n      },\n      {\n        \"logDate\": \"1967-04-19T12:38:50.990Z\",\n        \"consumption\": 8695.115375809164\n      }\n    ]\n  },\n  \"notices\": [\n    {\n      \"meterId\": 3576,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2005-10-05T15:32:51.206Z\",\n          \"toDate\": \"1998-08-07T16:46:33.748Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 7342.7948797329345,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2003-11-13T02:33:58.254Z\",\n          \"toDate\": \"1989-08-29T14:42:39.360Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 1583.5664567793883,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 3275,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"1959-09-08T11:28:56.826Z\",\n          \"toDate\": \"2021-04-21T13:12:54.263Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 4489.4636280540535,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"1979-03-10T21:10:22.756Z\",\n          \"toDate\": \"2015-06-06T04:18:03.434Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 9507.299343551475,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"4a2cbcc6-4de9-42e7-b131-65fdf1f1be65","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"4c28595c-ec4d-4f6c-bd43-e07d36eb7251","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"96937811-d774-4f36-921b-4c2300457824","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"db5c0dd8-fade-4045-bd81-5c5b92f4c274","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"c01e1620-4fff-4a21-a3c7-003b4e4b2b3f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ffd9a143-252a-4153-9921-1c79b72f3a4f"},{"name":"Consumption V2 Get Periodic Consumption By Tenant Id","id":"a4087f94-4e08-4bcc-a7d2-27ad7adb4a85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"16","key":"tenantId"}]}},"response":[{"id":"8b8e6030-686f-491e-a06e-1e664a7ee4d8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"2001-04-24T23:14:22.422Z\",\n      \"consumption\": 308.451591275567\n    },\n    {\n      \"logDate\": \"1985-04-28T05:18:16.210Z\",\n      \"consumption\": 4655.178266622237\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3918,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2024-06-22T06:33:47.215Z\",\n          \"toDate\": \"1964-05-16T02:31:41.501Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 6044.104301551665,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1997-10-21T04:40:44.037Z\",\n          \"toDate\": \"1970-08-31T11:35:45.526Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 6058.160277356365,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 5462,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1954-05-30T12:24:20.048Z\",\n          \"toDate\": \"1992-10-21T14:49:29.848Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 9583.73795153857,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"2000-07-18T03:39:54.452Z\",\n          \"toDate\": \"1963-02-17T08:35:45.090Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 3091.7610318306643,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"0fa7db7f-ab33-40ed-b330-63dd9378bc27","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"b7b218f5-8b7f-4a65-88df-b7dcfa338b55","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"42732fab-e620-4e6a-a9d5-40c078fec7f8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"55f34060-f713-4873-99c3-46a7a1f2251a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8e70911f-732f-4743-bc7a-6b5e92aa0444","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a4087f94-4e08-4bcc-a7d2-27ad7adb4a85"},{"name":"Consumption V2 Get Periodic Consumption Sum By Tenant Id","id":"b020c2ba-0cd4-44d2-9cb9-9a99609bf21c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"disabled":true,"key":"ExcludeMeterCategories","value":"9"},{"disabled":true,"key":"ExcludeMeterCategories","value":"11"},{"disabled":true,"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"16","key":"tenantId"}]}},"response":[{"id":"82371ec8-f5e5-4851-9a16-4004016f81f4","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"1987-08-24T00:10:02.101Z\",\n    \"consumption\": 7330.50310318519\n  },\n  \"notices\": [\n    {\n      \"meterId\": 561,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"2025-04-21T06:00:22.367Z\",\n          \"toDate\": \"1952-10-12T10:04:23.277Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 5744.971215510323,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2008-09-26T00:45:24.474Z\",\n          \"toDate\": \"2018-06-12T08:50:16.292Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9787.428924035969,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 7185,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1984-05-21T13:40:37.355Z\",\n          \"toDate\": \"1984-04-30T05:48:23.887Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 7831.82366848892,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2024-07-21T05:39:37.330Z\",\n          \"toDate\": \"2020-10-25T09:50:14.613Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 372.2389848618346,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"3d2a1f78-0bb5-4909-a5fc-14b68c0e69ee","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"503cad50-d217-472e-a7a1-e5e569fa391f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"85b9f436-8b23-46ca-98f2-5924e4997f56","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"65ed3f34-7926-4476-bada-02cec957fb6c","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ceebd8b8-8a5f-4837-9d41-2bda35822fd3","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/tenant/:tenantId/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","tenant",":tenantId","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"tenantId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b020c2ba-0cd4-44d2-9cb9-9a99609bf21c"},{"name":"Consumption V2 Get Periodic Consumption By Categories","id":"98dcf21e-1752-4f43-8912-9ef28833044d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"disabled":true,"key":"ExcludeMeterCategories","value":"9"},{"disabled":true,"key":"ExcludeMeterCategories","value":"11"},{"disabled":true,"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"6070f2e4-283d-4dc1-83ae-d7504e97d6d8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"HVAC\": {\n      \"logDate\": \"1986-10-19T09:26:01.123Z\",\n      \"consumption\": 2330.276998263736\n    },\n    \"Lighting\": {\n      \"logDate\": \"1990-05-24T10:46:24.373Z\",\n      \"consumption\": 1006.0079583274418\n    },\n    \"Dhw\": {\n      \"logDate\": \"2002-09-21T11:30:50.285Z\",\n      \"consumption\": 7918.69130339049\n    },\n    \"PlugLoads\": {\n      \"logDate\": \"2020-08-07T20:44:48.851Z\",\n      \"consumption\": 1938.3335750363929\n    },\n    \"ProcessLoads\": {\n      \"logDate\": \"1985-08-19T02:29:23.957Z\",\n      \"consumption\": 1202.5204870521168\n    },\n    \"Refrigeration\": {\n      \"logDate\": \"2012-08-13T08:50:15.216Z\",\n      \"consumption\": 2793.7229859608583\n    },\n    \"Transport\": {\n      \"logDate\": \"2016-03-28T14:39:37.717Z\",\n      \"consumption\": 8935.6989150793\n    },\n    \"EvCharging\": {\n      \"logDate\": \"1984-04-11T19:40:01.291Z\",\n      \"consumption\": 1720.2247408807114\n    },\n    \"OutdoorSystems\": {\n      \"logDate\": \"2003-10-09T00:22:30.625Z\",\n      \"consumption\": 2023.3029894438625\n    },\n    \"Other\": {\n      \"logDate\": \"1983-10-19T08:32:21.917Z\",\n      \"consumption\": 4144.129073100163\n    },\n    \"Unallocated\": {\n      \"logDate\": \"2005-02-04T18:17:31.851Z\",\n      \"consumption\": 1485.532600443864\n    }\n  },\n  \"notices\": [\n    {\n      \"meterId\": 7940,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1977-03-07T19:07:59.142Z\",\n          \"toDate\": \"2007-04-14T22:27:55.011Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 5040.905529746502,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"1962-06-04T04:42:34.721Z\",\n          \"toDate\": \"1992-09-23T07:54:13.112Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 6415.033855489478,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 8776,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"1968-09-06T09:02:48.550Z\",\n          \"toDate\": \"1985-09-19T07:03:52.887Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 5633.709577415569,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1992-07-30T18:33:44.048Z\",\n          \"toDate\": \"1954-03-28T16:08:03.831Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 2670.723593966784,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"15643928-bbb5-417c-b401-69fe98811e2b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"614ccbb2-4be5-4734-9582-7ae03fae1d72","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"141bea72-8be0-4e51-87d4-fb0f93ffa5ad","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"95ac71d2-5015-451a-96ef-4014915ffcc1","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"acdc17d9-b26d-4aec-8599-aed1ce7bd64f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"98dcf21e-1752-4f43-8912-9ef28833044d"},{"name":"Consumption V2 Get Periodic Consumption By Categories As Series","id":"75244eef-7c20-4a2e-a90f-c203d4bf67e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"833f6c39-9f46-4803-92dd-65b56f3c2f79","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"HVAC\": [\n      {\n        \"logDate\": \"2015-02-11T00:43:36.954Z\",\n        \"consumption\": 6634.540768002122\n      },\n      {\n        \"logDate\": \"1960-05-06T21:35:56.554Z\",\n        \"consumption\": 5428.3853635586365\n      }\n    ],\n    \"Lighting\": [\n      {\n        \"logDate\": \"2007-04-12T00:35:22.514Z\",\n        \"consumption\": 8554.12221535962\n      },\n      {\n        \"logDate\": \"1966-11-22T22:50:33.592Z\",\n        \"consumption\": 1080.798176505775\n      }\n    ],\n    \"Dhw\": [\n      {\n        \"logDate\": \"2007-11-07T00:19:38.535Z\",\n        \"consumption\": 9827.35299912728\n      },\n      {\n        \"logDate\": \"1959-10-25T12:03:38.141Z\",\n        \"consumption\": 2245.1480138388556\n      }\n    ],\n    \"PlugLoads\": [\n      {\n        \"logDate\": \"2018-04-15T05:38:14.733Z\",\n        \"consumption\": 9758.470267233552\n      },\n      {\n        \"logDate\": \"1993-04-11T02:24:01.537Z\",\n        \"consumption\": 2221.960857931786\n      }\n    ],\n    \"ProcessLoads\": [\n      {\n        \"logDate\": \"1962-03-19T04:34:02.821Z\",\n        \"consumption\": 7941.809049269368\n      },\n      {\n        \"logDate\": \"1980-08-29T12:19:37.678Z\",\n        \"consumption\": 5351.850970287222\n      }\n    ],\n    \"Refrigeration\": [\n      {\n        \"logDate\": \"2022-06-15T21:17:05.874Z\",\n        \"consumption\": 2468.507549084893\n      },\n      {\n        \"logDate\": \"1972-04-06T12:21:31.846Z\",\n        \"consumption\": 1526.7420215689299\n      }\n    ],\n    \"Transport\": [\n      {\n        \"logDate\": \"2010-07-22T23:36:03.592Z\",\n        \"consumption\": 3832.1669218251864\n      },\n      {\n        \"logDate\": \"1969-05-17T21:09:09.174Z\",\n        \"consumption\": 7078.387978236833\n      }\n    ],\n    \"EvCharging\": [\n      {\n        \"logDate\": \"1984-08-10T00:31:07.206Z\",\n        \"consumption\": 530.6640274561403\n      },\n      {\n        \"logDate\": \"2007-08-20T19:25:24.029Z\",\n        \"consumption\": 585.3834494958799\n      }\n    ],\n    \"OutdoorSystems\": [\n      {\n        \"logDate\": \"1982-04-24T15:45:25.866Z\",\n        \"consumption\": 8170.420679481689\n      },\n      {\n        \"logDate\": \"1954-01-03T09:40:57.107Z\",\n        \"consumption\": 9492.066052352677\n      }\n    ],\n    \"Other\": [\n      {\n        \"logDate\": \"2008-09-20T20:49:03.053Z\",\n        \"consumption\": 6662.799282108227\n      },\n      {\n        \"logDate\": \"1978-06-22T21:03:43.194Z\",\n        \"consumption\": 5752.171533913511\n      }\n    ],\n    \"Unallocated\": [\n      {\n        \"logDate\": \"1949-05-21T00:00:26.304Z\",\n        \"consumption\": 9513.222191383622\n      },\n      {\n        \"logDate\": \"1962-09-18T07:06:42.216Z\",\n        \"consumption\": 5405.874107906697\n      }\n    ]\n  },\n  \"notices\": [\n    {\n      \"meterId\": 9218,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"1987-02-22T05:51:44.002Z\",\n          \"toDate\": \"1961-12-01T23:56:25.725Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 4580.643500094415,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1957-05-19T09:32:14.818Z\",\n          \"toDate\": \"1978-03-20T01:51:13.813Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 1545.5725192928771,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 3656,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"1969-04-15T13:05:52.355Z\",\n          \"toDate\": \"1975-12-02T04:14:47.473Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 5881.616714073332,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1974-07-06T08:59:32.089Z\",\n          \"toDate\": \"1991-10-21T10:50:01.191Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 6017.475213174656,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"aa2a7741-bd9a-4cd3-9031-d024e54692e2","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"84e266e0-1b15-429a-b315-8d1582df1226","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dee3a5a3-a62d-42bb-a58d-f8b02e63d814","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ffc535be-903c-4bdf-853e-fdc115b58093","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3854d9ff-62e3-48f5-8eb7-4c18700fcd31","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/all/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category","all","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"75244eef-7c20-4a2e-a90f-c203d4bf67e6"},{"name":"Consumption V2 Get Periodic Consumption By Category","id":"9d16853f-6b44-43d3-89b5-9352afc28408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=2026-09-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-09-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"categoryType"}]}},"response":[{"id":"9c8e7659-9ab9-4e38-9894-3674737ef6db","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"2001-04-24T23:14:22.422Z\",\n      \"consumption\": 308.451591275567\n    },\n    {\n      \"logDate\": \"1985-04-28T05:18:16.210Z\",\n      \"consumption\": 4655.178266622237\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3918,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2024-06-22T06:33:47.215Z\",\n          \"toDate\": \"1964-05-16T02:31:41.501Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 6044.104301551665,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1997-10-21T04:40:44.037Z\",\n          \"toDate\": \"1970-08-31T11:35:45.526Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 6058.160277356365,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 5462,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1954-05-30T12:24:20.048Z\",\n          \"toDate\": \"1992-10-21T14:49:29.848Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 9583.73795153857,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"2000-07-18T03:39:54.452Z\",\n          \"toDate\": \"1963-02-17T08:35:45.090Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 3091.7610318306643,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"ced9d4f7-9508-4beb-b7d2-b14075c2599f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"d8549b4f-0fe4-4f63-8e5a-589cda122ebd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"11aec244-a538-4032-a64b-f7d86ff68c60","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"dccdaebb-7334-4f82-bc7f-62aefa07d439","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"adbf117e-76d2-45c0-8b83-a2602486bff2","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"9d16853f-6b44-43d3-89b5-9352afc28408"},{"name":"Consumption V2 Get Periodic Consumption Sum By Category","id":"a1e599a1-6e0b-4a9d-8ea0-358b6f19cdc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"7","key":"categoryType"}]}},"response":[{"id":"2ab49e13-2488-4e2f-8516-0e40a8f75df7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"1987-08-24T00:10:02.101Z\",\n    \"consumption\": 7330.50310318519\n  },\n  \"notices\": [\n    {\n      \"meterId\": 561,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"2025-04-21T06:00:22.367Z\",\n          \"toDate\": \"1952-10-12T10:04:23.277Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 5744.971215510323,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2008-09-26T00:45:24.474Z\",\n          \"toDate\": \"2018-06-12T08:50:16.292Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9787.428924035969,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 7185,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1984-05-21T13:40:37.355Z\",\n          \"toDate\": \"1984-04-30T05:48:23.887Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 7831.82366848892,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2024-07-21T05:39:37.330Z\",\n          \"toDate\": \"2020-10-25T09:50:14.613Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 372.2389848618346,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"3146a5f9-2f59-44de-b8bc-ff2dbf701852","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"9192328f-e9ab-425a-b652-ee34af3f13f1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"b59659bd-1ca1-4886-8fe0-d78624f567e0","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a00528c1-e5c8-41e3-ad80-c8d62c1b90e6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a38f64fa-5102-492b-8935-dea6caa1d10b","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/consumption/category/:categoryType/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","consumption","category",":categoryType","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"categoryType","value":"7"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a1e599a1-6e0b-4a9d-8ea0-358b6f19cdc0"}],"id":"6f73a0c0-17e2-4d15-9634-4d715a09cc96","_postman_id":"6f73a0c0-17e2-4d15-9634-4d715a09cc96","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"EnergyFlowV2","item":[{"name":"Energy Flow V2 Get Energy Flow As Series","id":"42e10fed-37d6-4156-8a06-b5223b6d9662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"node"}]}},"response":[{"id":"de1b9536-5f1c-405c-8cf8-81b3868793e5","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"2001-04-24T23:14:22.422Z\",\n      \"consumption\": 308.451591275567\n    },\n    {\n      \"logDate\": \"1985-04-28T05:18:16.210Z\",\n      \"consumption\": 4655.178266622237\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3918,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2024-06-22T06:33:47.215Z\",\n          \"toDate\": \"1964-05-16T02:31:41.501Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 6044.104301551665,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1997-10-21T04:40:44.037Z\",\n          \"toDate\": \"1970-08-31T11:35:45.526Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 6058.160277356365,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 5462,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1954-05-30T12:24:20.048Z\",\n          \"toDate\": \"1992-10-21T14:49:29.848Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 9583.73795153857,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"2000-07-18T03:39:54.452Z\",\n          \"toDate\": \"1963-02-17T08:35:45.090Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 3091.7610318306643,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"6355cd29-a829-4f88-b544-10e7ce131241","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"e588ff12-7bb2-438f-a45c-29bca77c4a11","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"a5cce89d-1cc6-4816-9380-e918ab2e80db","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1381596f-df50-4596-aadb-a3104570db76","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"58b27276-fcc4-41b1-b21c-9e868e7a142c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"42e10fed-37d6-4156-8a06-b5223b6d9662"},{"name":"Energy Flow V2 Get Energy Flow As Sum As Dictionary","id":"fdd577d1-6000-4d91-840f-da0f8b578303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"ab08d500-a616-49e6-a5a7-0bea3e59f0de","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"Building\": {\n      \"logDate\": \"1994-11-08T13:37:09.371Z\",\n      \"consumption\": 151.46386213833685\n    },\n    \"Grid\": {\n      \"logDate\": \"1967-01-05T15:53:53.317Z\",\n      \"consumption\": 295.23018284206114\n    },\n    \"DistrictHeating\": {\n      \"logDate\": \"2022-10-15T05:57:17.687Z\",\n      \"consumption\": 7268.268807016025\n    },\n    \"OtherExternalPowerSource\": {\n      \"logDate\": \"1984-02-04T22:49:20.373Z\",\n      \"consumption\": 8493.54515749486\n    },\n    \"SolarPowerPlant\": {\n      \"logDate\": \"1997-08-30T04:13:37.411Z\",\n      \"consumption\": 9641.996476140206\n    },\n    \"OtherPowerPlant\": {\n      \"logDate\": \"2014-08-04T09:04:31.283Z\",\n      \"consumption\": 5142.6725737850675\n    }\n  },\n  \"notices\": [\n    {\n      \"meterId\": 1142,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2024-08-11T02:50:56.421Z\",\n          \"toDate\": \"1981-05-14T08:22:47.819Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 4751.145806759884,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1985-09-03T22:55:58.656Z\",\n          \"toDate\": \"2018-09-08T23:51:41.400Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 378.409444613379,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 9056,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"1956-02-18T04:25:13.031Z\",\n          \"toDate\": \"1988-04-26T17:35:33.653Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 4572.017125707477,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"1992-06-01T12:18:09.986Z\",\n          \"toDate\": \"2006-12-15T10:42:15.443Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 6232.545914347798,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"4befe040-5450-42f2-8d74-89a8d109c842","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"b7025b8c-126e-4b8a-a9a8-d90a7b80ff5a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"55c8e6b3-9256-4eb4-804b-10abbde0ad6b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2b7c7346-5751-4bad-8de7-e4ae2eddfcaa","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"de9458e3-0b37-4c1a-a1d4-e979d88fe435","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/all/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total","all","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"fdd577d1-6000-4d91-840f-da0f8b578303"},{"name":"Energy Flow V2 Get Energy Flow As Sum","id":"29f87e55-34f9-424c-b627-55e090e59171","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"1","key":"node"}]}},"response":[{"id":"0e6beb75-8b40-4754-98ba-42b09565ef4b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"1987-08-24T00:10:02.101Z\",\n    \"consumption\": 7330.50310318519\n  },\n  \"notices\": [\n    {\n      \"meterId\": 561,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"2025-04-21T06:00:22.367Z\",\n          \"toDate\": \"1952-10-12T10:04:23.277Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 5744.971215510323,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2008-09-26T00:45:24.474Z\",\n          \"toDate\": \"2018-06-12T08:50:16.292Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9787.428924035969,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 7185,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1984-05-21T13:40:37.355Z\",\n          \"toDate\": \"1984-04-30T05:48:23.887Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 7831.82366848892,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2024-07-21T05:39:37.330Z\",\n          \"toDate\": \"2020-10-25T09:50:14.613Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 372.2389848618346,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"37fd9299-ba5e-4dd3-8638-10be7eeb1ec4","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"c5e7fc27-d983-4c4b-8006-26f80184eb60","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"cc9748ad-d4bd-4251-bfc1-4d33ba73dcd6","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"92e96eac-4543-4a54-8771-2b8343a70a2d","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"9511adce-8283-46bf-863f-3a474d3c586f","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/total/:node/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","total",":node","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"node","value":"6"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"29f87e55-34f9-424c-b627-55e090e59171"},{"name":"Energy Flow V2 Get Periodic Consumption By Meter","id":"7bc68fa4-4327-40f3-af35-314bb6a55b32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"90","key":"meterId"}]}},"response":[{"id":"ed9634fc-d6f6-4814-8ba8-d769b41b8ad2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"2001-04-24T23:14:22.422Z\",\n      \"consumption\": 308.451591275567\n    },\n    {\n      \"logDate\": \"1985-04-28T05:18:16.210Z\",\n      \"consumption\": 4655.178266622237\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3918,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"2024-06-22T06:33:47.215Z\",\n          \"toDate\": \"1964-05-16T02:31:41.501Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 6044.104301551665,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1997-10-21T04:40:44.037Z\",\n          \"toDate\": \"1970-08-31T11:35:45.526Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 6058.160277356365,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 5462,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1954-05-30T12:24:20.048Z\",\n          \"toDate\": \"1992-10-21T14:49:29.848Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 9583.73795153857,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 1,\n          \"fromDate\": \"2000-07-18T03:39:54.452Z\",\n          \"toDate\": \"1963-02-17T08:35:45.090Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 3091.7610318306643,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"db6474a2-1a53-4ef8-bf64-6cabcca4f7b8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"8d26fd3f-a60b-451d-870f-0e5a22bcea85","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0abe068a-cb92-4c71-bf6a-b1ef29e3b025","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"8a528039-884e-4ca0-8460-12f9264e7a74","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"1b9b7566-0589-47cd-ae97-ae6d815e50d5","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/:meterId?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter",":meterId"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"7bc68fa4-4327-40f3-af35-314bb6a55b32"},{"name":"Energy Flow V2 Get Momentary Consumption By Meter","id":"f8f812ce-747a-4b1b-a7e9-2cf5d512b505","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"host":["/"],"query":[],"variable":[{"type":"any","value":"1171","key":"siteId"},{"type":"any","value":"87","key":"meterId"}]}},"response":[{"id":"e584a9d0-c9a4-48d2-8c89-10e85725a4ef","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"1987-08-24T00:10:02.101Z\",\n    \"consumption\": 7330.50310318519\n  },\n  \"notices\": [\n    {\n      \"meterId\": 561,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 1,\n          \"fromDate\": \"2025-04-21T06:00:22.367Z\",\n          \"toDate\": \"1952-10-12T10:04:23.277Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 5744.971215510323,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2008-09-26T00:45:24.474Z\",\n          \"toDate\": \"2018-06-12T08:50:16.292Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9787.428924035969,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 7185,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1984-05-21T13:40:37.355Z\",\n          \"toDate\": \"1984-04-30T05:48:23.887Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 7831.82366848892,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"2024-07-21T05:39:37.330Z\",\n          \"toDate\": \"2020-10-25T09:50:14.613Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 372.2389848618346,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"f88cf5ac-23bb-4457-9d82-0c4e5569cedd","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"1d33fad0-f9dd-43e2-9100-c3b9c146838b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0544dc59-6b42-4685-a7b2-1b0ffa585178","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"66a1390f-abfe-4a1a-8e47-98b13b8e8d41","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"65cccff3-162e-40b2-96da-8a43f4bf0506","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/energy-flow/meter/momentary/:meterId","host":["/"],"path":["api","v2","sites",":siteId","energy-flow","meter","momentary",":meterId"],"variable":[{"key":"siteId","value":"7705"},{"key":"meterId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f8f812ce-747a-4b1b-a7e9-2cf5d512b505"}],"id":"28e8b327-280e-4c7c-8ead-ff262332da1f","_postman_id":"28e8b327-280e-4c7c-8ead-ff262332da1f","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"GridExportV2","item":[{"name":"Grid Export V2 Get Grid Export As Sum","id":"e2d78255-d08f-4425-8ce9-7a77d2d35004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","grid-export","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"8dacac40-bb0a-468b-8f0f-d2809776fd30","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"2019-01-13T00:59:20.350Z\",\n    \"production\": 8218.817865655823\n  },\n  \"notices\": [\n    {\n      \"meterId\": 6731,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"2021-07-16T14:33:42.440Z\",\n          \"toDate\": \"1997-11-14T04:46:36.451Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 4403.641398912352,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1948-01-08T17:20:52.556Z\",\n          \"toDate\": \"1947-08-06T19:57:16.045Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 699.5580197240824,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 4171,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"1998-03-28T17:13:17.646Z\",\n          \"toDate\": \"2016-06-10T20:54:07.876Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 3950.092041185509,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1999-09-18T15:25:55.116Z\",\n          \"toDate\": \"2003-08-12T20:07:03.688Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 8212.236028854368,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"9e794622-e456-41f9-b942-0c14a9d17ea5","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"bbaf41c5-4729-420f-b0de-313a7aed8ca3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"968157a3-2dfd-4966-9d1d-952d3e113ab8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"3208572a-e6da-40a8-b0de-1295051fc4e4","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7cefded2-92f7-4df4-beb0-276c1bb6b503","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e2d78255-d08f-4425-8ce9-7a77d2d35004"},{"name":"Grid Export V2 Get Grid Export As Series","id":"1d04b48b-8536-4999-a65d-e98a82c877c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","grid-export","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"f3d17e56-367d-45bf-b45e-6cb3d622ff5c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"1980-10-12T01:34:27.673Z\",\n      \"production\": 8834.066815864308\n    },\n    {\n      \"logDate\": \"2020-01-16T01:36:07.775Z\",\n      \"production\": 1406.6077295011814\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3957,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1996-10-05T07:44:07.958Z\",\n          \"toDate\": \"1996-10-31T19:55:44.653Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9899.262502362313,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1949-04-04T19:44:03.768Z\",\n          \"toDate\": \"2023-05-11T13:45:59.647Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 3293.476732859377,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 928,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1966-05-12T22:33:32.035Z\",\n          \"toDate\": \"2023-05-17T14:59:52.050Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 4950.07721418352,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1960-11-22T18:07:33.833Z\",\n          \"toDate\": \"2018-02-24T09:06:11.945Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 9925.064182884866,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"a71d3da4-97bc-4ece-a55b-16cd61252a1f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"49dc19f3-80d5-4d14-a7cf-2fdcc4ecbfd0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"7eb79902-ca58-4703-8d6d-691ef2cff0c0","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"50055397-78db-48d8-a35e-405a67318bf5","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f223a892-7d47-40ae-a825-cb9a98a64b6e","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/grid-export/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","grid-export","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1d04b48b-8536-4999-a65d-e98a82c877c0"}],"id":"937dee4e-1211-4f61-b086-7e79bbc217c6","_postman_id":"937dee4e-1211-4f61-b086-7e79bbc217c6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}},{"name":"SolarProductionV2","item":[{"name":"Solar Production V2 Get Solar Production As Sum","id":"824886fe-9e0e-49df-b780-d97d69160100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","solar-production","as-sum"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"aa48d1b1-f612-4d6d-b6c8-3fb2f5203fb2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"logDate\": \"2019-01-13T00:59:20.350Z\",\n    \"production\": 8218.817865655823\n  },\n  \"notices\": [\n    {\n      \"meterId\": 6731,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"2021-07-16T14:33:42.440Z\",\n          \"toDate\": \"1997-11-14T04:46:36.451Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 4403.641398912352,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1948-01-08T17:20:52.556Z\",\n          \"toDate\": \"1947-08-06T19:57:16.045Z\",\n          \"resolution\": 0,\n          \"estimatedKwh\": 699.5580197240824,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 4171,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 0,\n          \"fromDate\": \"1998-03-28T17:13:17.646Z\",\n          \"toDate\": \"2016-06-10T20:54:07.876Z\",\n          \"resolution\": 1,\n          \"estimatedKwh\": 3950.092041185509,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 0,\n          \"fromDate\": \"1999-09-18T15:25:55.116Z\",\n          \"toDate\": \"2003-08-12T20:07:03.688Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 8212.236028854368,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"009ce5ba-296a-4460-a1f6-4395f0add2f7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"646061b4-4a09-497e-a9c8-07db1ef665ce","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"4c6388ab-a4fc-45a1-89f2-49e2e316a7c7","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"40cc3ef2-ec17-4f65-9553-88477a633142","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"61e34eef-b78d-4119-b22e-32cf9eab8dad","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-sum?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-sum"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"824886fe-9e0e-49df-b780-d97d69160100"},{"name":"Solar Production V2 Get Solar Production As Series","id":"c7640cba-90eb-4135-9e2c-58a223882577","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=2026-01-14T08:45:00Z&ToDate=2026-09-14T08:45:00Z&Resolution=2&ExcludeMeterCategories=9&ExcludeMeterCategories=11&DegreeDayCorrection=true","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}},"urlObject":{"path":["api","v2","sites",":siteId","solar-production","as-series"],"host":["/"],"query":[{"key":"FromDate","value":"2026-01-14T08:45:00Z"},{"key":"ToDate","value":"2026-09-14T08:45:00Z"},{"key":"Resolution","value":"2"},{"key":"ExcludeMeterCategories","value":"9"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"type":"any","value":"1171","key":"siteId"}]}},"response":[{"id":"402e9dac-41fd-44eb-a075-a5255956613a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"logDate\": \"1980-10-12T01:34:27.673Z\",\n      \"production\": 8834.066815864308\n    },\n    {\n      \"logDate\": \"2020-01-16T01:36:07.775Z\",\n      \"production\": 1406.6077295011814\n    }\n  ],\n  \"notices\": [\n    {\n      \"meterId\": 3957,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1996-10-05T07:44:07.958Z\",\n          \"toDate\": \"1996-10-31T19:55:44.653Z\",\n          \"resolution\": 3,\n          \"estimatedKwh\": 9899.262502362313,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1949-04-04T19:44:03.768Z\",\n          \"toDate\": \"2023-05-11T13:45:59.647Z\",\n          \"resolution\": 4,\n          \"estimatedKwh\": 3293.476732859377,\n          \"message\": \"string\"\n        }\n      ]\n    },\n    {\n      \"meterId\": 928,\n      \"meterName\": \"string\",\n      \"notices\": [\n        {\n          \"type\": 2,\n          \"fromDate\": \"1966-05-12T22:33:32.035Z\",\n          \"toDate\": \"2023-05-17T14:59:52.050Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 4950.07721418352,\n          \"message\": \"string\"\n        },\n        {\n          \"type\": 2,\n          \"fromDate\": \"1960-11-22T18:07:33.833Z\",\n          \"toDate\": \"2018-02-24T09:06:11.945Z\",\n          \"resolution\": 2,\n          \"estimatedKwh\": 9925.064182884866,\n          \"message\": \"string\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"54f17249-e334-4500-bc18-66db8943f99d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 6217,\n  \"detail\": \"string\",\n  \"instance\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"},{"id":"381fa4ec-93f4-46ab-bd21-dbe4ca9b9b86","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"cc2c5954-ac78-4d45-810b-e3809e9751ce","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"60b52bf4-9b81-43da-801e-60838c9964bd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"ddacb92a-82a2-4001-8a84-b349165b4795","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"//api/v2/sites/:siteId/solar-production/as-series?FromDate=1999-07-11T01:52:38.059Z&ToDate=1999-07-11T01:52:38.059Z&Resolution=4&ExcludeMeterCategories=11&DegreeDayCorrection=true","host":["/"],"path":["api","v2","sites",":siteId","solar-production","as-series"],"query":[{"key":"FromDate","value":"1999-07-11T01:52:38.059Z"},{"key":"ToDate","value":"1999-07-11T01:52:38.059Z"},{"key":"Resolution","value":"4"},{"key":"ExcludeMeterCategories","value":"11"},{"key":"DegreeDayCorrection","value":"true"}],"variable":[{"key":"siteId","value":"7705"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 3280,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c7640cba-90eb-4135-9e2c-58a223882577"}],"id":"0abd1231-7fc8-4ed4-b8a7-aa6f5fd6f296","_postman_id":"0abd1231-7fc8-4ed4-b8a7-aa6f5fd6f296","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","id":"d0b2736d-c190-48f7-b263-ea397f8f6fad","name":"Envo Public API v3.0.0","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"accessTokenUrl","value":"{{tokenEndpoint}}"},{"key":"tokenType","value":"<token-type>"},{"key":"clientId","value":"{{clientId}}"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"{{clientSecret}}"},{"key":"grant_type","value":"<grant_type>"}]}},"event":[{"listen":"prerequest","script":{"id":"be7d06d5-951e-4a30-8542-0431a74af31b","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"1e87266d-3a64-4066-96ce-0acd8ee00620","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"/"}]}