{"info":{"_postman_id":"48077ca6-1f50-48c0-a2cb-c85965295744","name":"DEXMA Public API","description":"<html><head></head><body><h1 id=\"api-usage\">API Usage</h1>\n<p>We <strong>strongly encourage you to have some patience and read this page before starting to use the API</strong>, it will save you lots of time, we guarantee.</p>\n<p>The following sections define the conventions that we use for the syntax of our API, the <strong>Authorization</strong> and <strong>Authentication</strong> methods, the <strong>Rate Limits</strong> and how to use them and one of the most important ones, the <strong>Pagination</strong>.</p>\n<h1 id=\"handshake-process\">Handshake process</h1>\n<p>This section explains the Market apps handshaking mechanism. This process will generate a permanent token aka \"<code>x-dexcell-token</code>\". The handshake is always started by DEXMA platform upon installing an application via the market app. DEXMA will make call to a given endpoint.<br>Notice: The token returned from DEXMA Platform APIv3 should be stored in the app, and be used it in every request. If the token is lost, the user should reinstall the app to generate another.</p>\n<img src=\"https://storage.googleapis.com/dexma/images/AppInstallationWhite.png\">\n\n<h2 id=\"steps\">Steps:</h2>\n<ol>\n<li><p>DEXMA makes a GET request to the URL given in the app creation process with the following query parameters:</p>\n<ul>\n<li><p><strong>dep_id</strong>: Unique identifier for a given deployment</p>\n</li>\n<li><p><strong>temp_token</strong>: Temporary token generated by DEXMA to be able to make the handshake</p>\n</li>\n<li><p><strong>callback</strong>: legacy parameter, this could be ignored.</p>\n</li>\n</ul>\n</li>\n<li><p>App makes a POST request to APIv3 to generate the permanent token with the following query parameters:</p>\n<ul>\n<li><p><strong>app_id</strong>: Identifier provided when the app is created in the platform</p>\n</li>\n<li><p><strong>secret</strong>: hash provided when the app is created in the platform</p>\n</li>\n<li><p><strong>temp_token</strong>: This token is provided when DEXMA calls the app to do the handshake (See step 1)</p>\n</li>\n</ul>\n</li>\n<li><p>The APIv3 returns <strong>201 CREATED</strong>, with the permanent token as body</p>\n</li>\n<li><p>The app returns <strong>200 OK</strong> to DEXMA letting it know that the app is installed correctly<br> For information on how to create the app in the platform check <a href=\"https://support.dexma.com/hc/en-gb/articles/360017221059\">here</a>.</p>\n</li>\n</ol>\n<h2 id=\"usage-example\">Usage example:</h2>\n<p>A new app is created in DEXMA platform with the installation URL: <code>app.domain.com/setup</code> and DEXMA shows that the created app id is <code>63</code> and secret is <code>0100fb25d3daa10c9d9b</code>.<br>The APIv3 URL is <code>https://api.dexma.com/v3</code><br>The current deployment id is <code>demoDEXMA-e2db4391</code><br>When the user clicks the install button in platform app market:</p>\n<ol>\n<li><p>DEXMA makes a GET request to the URL <code>app.domain.com/setup?dep_id=demoDEXMA-e2db4391&amp;temp_token=022a02b27ee5ca5d1c42&amp;callback=www.dexma.com</code></p>\n</li>\n<li><p>The app receives the request and makes a <a href=\"https://documenter.getpostman.com/view/5735561/SzRuXXFd?version=latest#ede4d154-f75c-4465-9115-2f409f1ca532\">POST</a> request to the URL: <code>https://api.dexma.com/v3/oauth/access-token?app_id=63&amp;secret=0100fb25d3daa10c9d9b&amp;temp_token=022a02b27ee5ca5d1c42</code></p>\n</li>\n<li><p>The APIv3 returns the <code>Status Code 201 CREATED</code>, with body: <code>5b36281ac7034f9a65cd</code></p>\n</li>\n<li><p>The app stores the given permanent token and returns <code>Status Code 200 OK</code></p>\n</li>\n</ol>\n<h1 id=\"security\">Security</h1>\n<p>Security is composed in two steps, authentication (who you are) and authorization (what you are allowed to do) .</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Our process of authentication verifies if you can enter to the system. This process are performed using tokens:</p>\n<p><code>x-dexcell-token</code></p>\n<p>This token should be added as an especial header in HTTP requests.<br><strong>Tokens are related to applications</strong>, and those will be provided during the OAUTH \"handshake\" process using DEXCell Developer Portal. You can request your Developer portal activation at <a href=\"https://mailto:support@dexma.com\">support@dexma.com</a>. Check the \"Getting Started\" page to know how to obtain the tokens.</p>\n<h2 id=\"authorization\">Authorization</h2>\n<p>Authorization is the process of allowing an authenticated HTTP requests to access to our resources. Authorization deny or grant access to a specific resource checking the rules that determine who is allowed to do what. It is associated with <strong>an application is directly bound to a deployment (customer account)</strong>.</p>\n<p>Authorization is divided into two concepts:</p>\n<ul>\n<li><p><strong>Scope</strong>: Determines if an application has read/write rights to access to specific scopes (zones) of our API. For example, an Application could have privileges to read locations but not to modify. Scopes are defined in the application installation process, through DEXCell.com</p>\n</li>\n<li><p><strong>ACL (Access Control List)</strong>: This process is the last step before you access, read or write, to a specific resource. Each resource in<br>  our system has an identifier, this identifier is used as a security attribute that identifies if you can access it.</p>\n</li>\n</ul>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>To make the API fast for everybody, rate limits apply. We only allow a certain number of requests per hour, and a certain number of requests per day. We reserve the right to adjust the rate limit for given endpoints in order to provide a high quality of service for all customers. As an API consumer, you should expect to be able to make at least a certain requests per hour or day.</p>\n<p>If the rate limit is exceeded, DEXCell API will respond with 429 Too Many Requests response code, and a body details the reason for the rate limiter kicking in. You should anticipate this in your API client for the smoothest possible ride.</p>\n<ol>\n<li><p>Rate limits are defined per <strong>Application</strong>, for example:</p>\n<ul>\n<li><p>Application A may have: 1000 calls/hour 10.000 calls/day</p>\n</li>\n<li><p>Application B may have: 2000 calls/hour 30.000 calls/day</p>\n</li>\n</ul>\n</li>\n<li><p>Rate limits are applied per <strong>Token</strong>, and there is a token for each relation of Application with Account where it is installed, for example:</p>\n<ul>\n<li><p>Application A installed in Account 1 (token A1) can have remaining 600 calls/hour and 8.000 calls/day (already used 400/h and 2.000/d).</p>\n</li>\n<li><p>Application B installed in Account 1 (token B1) can have remaining 1200 calls/hour and 20.000 calls/day (already used 800/h and 10 .000/d).</p>\n</li>\n<li><p>Application A installed in Account 2 (token A2) can have remaining 1000 calls/hour and 10.000 calls/day (nothing used).</p>\n</li>\n</ul>\n</li>\n</ol>\n<p>So Application A installed in 4 accounts has 4.000 calls/hour total (1.000 to access each account).</p>\n<p>Each request to the API <strong>informs</strong> the Application of the Rate-limit status with the following <strong>Response Headers</strong>. The following example is after having made only 1 today to the API using one token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    X-Ratelimit-Day-Limit →10000 (total number of calls allowed per Day)\n    X-Ratelimit-Day-Remaining →9999  (number of calls remaining for today)\n    X-Ratelimit-Day-Reset →36296 (seconds until the next interval when the 10.000 daily calls are available again)\n    X-Ratelimit-Hour-Limit →1000  (total number of calls allowed per Hour)\n    X-Ratelimit-Hour-Remaining →999 (number of calls remaining for this Hour)\n    X-Ratelimit-Hour-Reset →296 (seconds until the next interval when the 1.000 hourly calls are available again)\n\n</code></pre><h1 id=\"session-filtering\">Session filtering</h1>\n<p>To make the API scalable and avoid returning a lot of information for a given endpoint, We allow the option to add the <code>X-dexcell-session</code>. The session id is given by Dexcell when an app is loaded.</p>\n<p>Session filter cases:</p>\n<ol>\n<li><p>The header is not present, the filtering is ignored and returns all the information available.</p>\n</li>\n<li><p>The header is present and is invalid returns HTTP 403 Forbidden.</p>\n</li>\n<li><p>The header is present and valid, returns the result filtered by the current user, current location and currently active tags.</p>\n</li>\n</ol>\n<p>Disclaimer: This feature is new and currently works for some endpoints, each endpoint will inform is managing this filter or not.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>By default, all list calls will return <strong>20 items per page</strong>. You can change the number of items to show by passing <code>start</code> and <code>limit</code><br>parameters in the request URL. Example:</p>\n<p><code>http:.../devices?start=50&amp;limit=200</code></p>\n<p>However, you can't exceed <strong>500 records</strong> per page. When the response exceeds the per-page maximum, you will get an Error code:</p>\n<p>-&gt;&gt; REVIEW</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">   {\n     \"status\": 422,\n     \"code\": \"E422\",\n     \"message\": \"Entity validation error\",\n     \"errors\": [\n       1\n     ],\n     \"0\": {\n       \"message\": \"must be less than or equal to 500\",\n       \"field\": \"limit\"\n     }\n   }\n\n</code></pre>\n<h1 id=\"common-response-structures\">Common Response Structures</h1>\n<p>We respond to successful requests with HTTP status code in the <strong>200 range</strong>. When you create or update a resource, we will render the<br>resulting JSON representation in the response body, e.g:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    {\n      \"id\": 3473,\n      \"name\": \"General\",\n      \"local_id\": \"1\",\n      \"datasource\": {\n        \"id\": 260\n      },\n      \"status\": \"ACCEPTED\",\n      \"datapoints\": [\n        2\n      ],\n      \"0\": {\n        \"parameter\": 411,\n        \"status\": \"ACCEPTED\"\n      },\n      \"1\": {\n        \"parameter\": 414,\n        \"status\": \"ACCEPTED\"\n      }\n    }\n\n</code></pre>\n<h1 id=\"model-exposed\">Model Exposed</h1>\n<p>Here is explained the basics of DEXCell Energy Manager and how are related.</p>\n<ul>\n<li><p><strong>Deployment</strong>: This represents the customer account. Is identified by an account_id.</p>\n</li>\n<li><p><strong>Datasource</strong>: gateway or datalogger capable to send all the information to DEXCell EM. It includes N devices.</p>\n</li>\n<li><p><strong>Device</strong>: Each one of the meters and sensors installed. It is possible to get all the devices under deployment or under a location.</p>\n</li>\n<li><p><strong>Parameter</strong>: identifier of each datapoint sent. For example: Active Energy, Reactive Energy, Temperature, etc.</p>\n</li>\n<li><p><strong>Readings</strong>: all the readings for a specific device and parameter. It can be filtered by frequency (hourly, daily, monthly, etc)</p>\n</li>\n<li><p><strong>Location</strong>: Each one of the locations configured in the platform. Location information includes address, reference devices, assigned - devices, configured kpi, supplies and prices associated, etc.</p>\n</li>\n<li><p><strong>Supplies</strong>: it contains the information about the contract and the prices used to calculate all the Cost information.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Usage","slug":"api-usage"},{"content":"Handshake process","slug":"handshake-process"},{"content":"Security","slug":"security"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Session filtering","slug":"session-filtering"},{"content":"Pagination","slug":"pagination"},{"content":"Common Response Structures","slug":"common-response-structures"},{"content":"Model Exposed","slug":"model-exposed"}],"owner":"5735561","collectionId":"48077ca6-1f50-48c0-a2cb-c85965295744","publishedId":"SzRuXXFd","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-08-28T05:29:07.000Z"},"item":[{"name":"Authentication","item":[{"name":"Create a permanent token","id":"ede4d154-f75c-4465-9115-2f409f1ca532","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","description":"<p>Creates a permanent token that will allow an application to access the data of a specific account using this API. This endpoint is usually called as the last step of the 3 way OAuth2 handshake.</p>\n","urlObject":{"path":["oauth","access-token"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Application id, supplied when creating the app</p>\n","type":"text/plain"},"key":"app_id","value":"63"},{"description":{"content":"<p>Secret token, supplied when creating the app </p>\n","type":"text/plain"},"key":"secret","value":"a78fj3k2k3o54k25jnj4"},{"description":{"content":"<p>Temporary token, supplied by the 3 way handshake</p>\n","type":"text/plain"},"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o"}],"variable":[]}},"response":[{"id":"6157e945-4e86-4dba-a15a-f0d883e07b4a","name":"Permanent token created","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","host":["{{api_v3.host}}"],"path":["oauth","access-token"],"query":[{"key":"app_id","value":"63","description":"Application id, supplied when creating the app"},{"key":"secret","value":"a78fj3k2k3o54k25jnj4","description":"Secret token, supplied when creating the app "},{"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o","description":"Temporary token, supplied by the 3 way handshake"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"4dce2dbb5a9de27448f2"},{"id":"a66826a1-a239-4808-bbb9-22567481f2e2","name":"Create a permanent token","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","host":["{{api_v3.host}}"],"path":["oauth","access-token"],"query":[{"key":"app_id","value":"63","description":"Application id, supplied when creating the app"},{"key":"secret","value":"a78fj3k2k3o54k25jnj4","description":"Secret token, supplied when creating the app "},{"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o","description":"Temporary token, supplied by the 3 way handshake"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"script","header":[{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Server","value":"nginx"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Date","value":"Tue, 01 Oct 2024 14:37:11 GMT"},{"key":"Content-Type","value":"application/javascript"},{"key":"Content-Length","value":"64"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\"status\":403,\"code\":\"E403\",\"message\":\"Invalid temporary token\"}"}],"_postman_id":"ede4d154-f75c-4465-9115-2f409f1ca532"},{"name":"Create a permanent token Copy","id":"28760c42-beff-455e-8487-04a16bd700b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","description":"<p>Creates a permanent token that will allow an application to access the data of a specific account using this API. This endpoint is usually called as the last step of the 3 way OAuth2 handshake.</p>\n","urlObject":{"path":["oauth","access-token"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Application id, supplied when creating the app</p>\n","type":"text/plain"},"key":"app_id","value":"63"},{"description":{"content":"<p>Secret token, supplied when creating the app </p>\n","type":"text/plain"},"key":"secret","value":"a78fj3k2k3o54k25jnj4"},{"description":{"content":"<p>Temporary token, supplied by the 3 way handshake</p>\n","type":"text/plain"},"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o"}],"variable":[]}},"response":[{"id":"142cf1df-d6cc-4fe1-90e7-4628443a0d0a","name":"Permanent token created","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","host":["{{api_v3.host}}"],"path":["oauth","access-token"],"query":[{"key":"app_id","value":"63","description":"Application id, supplied when creating the app"},{"key":"secret","value":"a78fj3k2k3o54k25jnj4","description":"Secret token, supplied when creating the app "},{"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o","description":"Temporary token, supplied by the 3 way handshake"}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"4dce2dbb5a9de27448f2"},{"id":"cdfc3692-7538-4b13-a158-59505c42377f","name":"Create a permanent token","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{api_v3.host}}/oauth/access-token?app_id=63&secret=a78fj3k2k3o54k25jnj4&temp_token=1o2l3j45n3k4m5n2l6o","host":["{{api_v3.host}}"],"path":["oauth","access-token"],"query":[{"key":"app_id","value":"63","description":"Application id, supplied when creating the app"},{"key":"secret","value":"a78fj3k2k3o54k25jnj4","description":"Secret token, supplied when creating the app "},{"key":"temp_token","value":"1o2l3j45n3k4m5n2l6o","description":"Temporary token, supplied by the 3 way handshake"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"script","header":[{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Server","value":"nginx"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Date","value":"Tue, 01 Oct 2024 14:37:11 GMT"},{"key":"Content-Type","value":"application/javascript"},{"key":"Content-Length","value":"64"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\"status\":403,\"code\":\"E403\",\"message\":\"Invalid temporary token\"}"}],"_postman_id":"28760c42-beff-455e-8487-04a16bd700b9"}],"id":"30427549-e8f5-48c8-b7f1-ff624430cdf8","event":[{"listen":"prerequest","script":{"id":"a89f99da-4fe5-4390-b748-ae9282b3fa38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"469caa24-caeb-4071-82fc-3431108ef4fd","type":"text/javascript","exec":[""]}}],"_postman_id":"30427549-e8f5-48c8-b7f1-ff624430cdf8","description":""},{"name":"Accounts","item":[{"name":"Retrieve an Account","id":"d6e64727-39d6-47cf-9449-df4f91a391bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/accounts/4897","description":"<p>Retrieves information from the specified account</p>\n","urlObject":{"path":["accounts","4897"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"905bc38a-f70d-415a-a045-9602c24917fb","name":"Retrieve an Account","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/accounts/4897"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1326"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 07:37:53 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49997"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"58926"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"992"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"creation_date\": \"2019-07-01\",\n    \"customer_name\": \"Customer name\",\n    \"enabled_reference_device_types\": [\n        {\n            \"device_types\": [\n                \"MAINSUPPLY\",\n                \"HVAC\",\n                \"LIGHTING\",\n                \"REFRIGERATORS\",\n                \"MACHINERY\"\n            ],\n            \"source\": \"ELECTRICITY\"\n        },\n        {\n            \"device_types\": [\n                \"GAS\"\n            ],\n            \"source\": \"GAS\"\n        },\n        {\n            \"device_types\": [\n                \"DIESEL\"\n            ],\n            \"source\": \"GASOIL\"\n        },\n        {\n            \"device_types\": [\n                \"PHOTOVOLTAIC\"\n            ],\n            \"source\": \"PRODUCTION\"\n        },\n        {\n            \"device_types\": [\n                \"INDOORTEMP\",\n                \"OUTDOORTEMP\"\n            ],\n            \"source\": \"TEMPERATURE\"\n        },\n        {\n            \"device_types\": [\n                \"WATER\"\n            ],\n            \"source\": \"WATER\"\n        }\n    ],\n    \"expiration_date\": \"2023-07-01\",\n    \"id\": 4897,\n    \"name\": \"Account name\",\n    \"partner_id\": 4,\n    \"partner_name\": \"Partner name\",\n    \"sector\": \"OTHER\",\n    \"settings\": {\n        \"enabled_sources\": [\n            \"ELECTRICITY\",\n            \"GAS\",\n            \"GAS_VOLUME\",\n            \"THERMAL\",\n            \"EXPORTED_ELECTRICITY\",\n            \"WATER\",\n            \"NORMALIZED_GAS_VOLUME\",\n            \"COOLING\"\n        ],\n        \"localization\": {\n            \"area\": \"m²\",\n            \"currency_symbol_in_last_position\": true,\n            \"date_format\": \"dd/MM/yyyy\",\n            \"decimal_separator\": \",\",\n            \"grouping_separator\": \".\",\n            \"temperature\": \"ºC\"\n        },\n        \"resolutions\": [\n            \"QH\",\n            \"H\",\n            \"D\",\n            \"W\",\n            \"M\"\n        ]\n    },\n    \"sms_credits\": 0,\n    \"status\": \"ACTIVE\",\n    \"token\": \"{account-token}\"\n}"}],"_postman_id":"d6e64727-39d6-47cf-9449-df4f91a391bf"}],"id":"d2d97a50-d684-48a5-8950-01f986e84ef8","description":"<p>An Account is the entity representing an Organitzation, usually a Customer and its Hierarchy of Locations. Accounts have presets of the prefered reporting units and can show/hide the energy sources displayed.</p>\n","event":[{"listen":"prerequest","script":{"id":"7586238a-e53e-4be6-8307-0f3d456e13a6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2ee659ba-721f-4ec0-998d-ad504c741c23","type":"text/javascript","exec":[""]}}],"_postman_id":"d2d97a50-d684-48a5-8950-01f986e84ef8"},{"name":"Locations","item":[{"name":"Devices","item":[{"name":"Retrieve list of all Devices assigned to a Location","id":"04549228-8418-4bfc-a8b6-5b7323abbf0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/97274/devices","urlObject":{"path":["locations","97274","devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"13fd0718-de94-4972-b223-facb7825471f","name":"Retrieve list of all Devices assigned to a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/200056/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"981"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1870"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:28:49 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9976"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"52270"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"29"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 945969,\n        \"status\": \"ACCEPTED\",\n        \"name\": \"HVAC in office\"\n    },\n    {\n        \"id\": 945970,\n        \"status\": \"ACCEPTED\",\n        \"name\": \"Main supply\"\n    }\n]"}],"_postman_id":"04549228-8418-4bfc-a8b6-5b7323abbf0f"},{"name":"Update list of Devices assigned to a Location","id":"31f64e99-f97a-4c76-8ee5-f2c56bb6d377","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 945969\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/11906/devices","urlObject":{"path":["locations","11906","devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"2a16dea2-a453-4d14-bbeb-0df80f6854a0","name":"Update list of Devices assigned to a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 945969\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"980"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1803"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:29:56 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9975"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"52203"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"15"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 945969\n    }\n]"}],"_postman_id":"31f64e99-f97a-4c76-8ee5-f2c56bb6d377"}],"id":"4921557f-684e-4653-88a9-d0590c1e6fbb","_postman_id":"4921557f-684e-4653-88a9-d0590c1e6fbb","description":""},{"name":"Reference Devices","item":[{"name":"Retrieve list of Reference Devices of a Location","id":"38ed1d87-34a0-4dd5-9bc8-d394a3442647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/200056/reference-devices","urlObject":{"path":["locations","200056","reference-devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"63f9274e-9330-4b6e-a8af-60d829a7e5a6","name":"Retrieve list of Reference Devices of a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/200056/reference-devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"972"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1019"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:43:00 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9967"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"51419"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"85"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"device\": {\n            \"id\": 945977\n        },\n        \"type\": \"HVAC\"\n    },\n    {\n        \"device\": {\n            \"id\": 945976\n        },\n        \"type\": \"MAINSUPPLY\"\n    }\n]"}],"_postman_id":"38ed1d87-34a0-4dd5-9bc8-d394a3442647"},{"name":"Update list of Reference Devices of a Location","id":"160ca2f8-3c95-40b6-8062-687af291fd1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"device\": {\n            \"id\": 945976\n        },\n        \"type\": \"HVAC\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/reference-devices","description":"<p>Replaces the existing list of devices that belong to this location with the ones supplied in the body of the request. Warning, unassigns devices that were assigned if not present in the supplied list.</p>\n","urlObject":{"path":["locations","200056","reference-devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"50ce46f0-080c-4d08-b949-0c3f4953383d","name":"Update list of Reference Devices of a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"device\": {\n            \"id\": 945976\n        },\n        \"type\": \"HVAC\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/reference-devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"969"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"942"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:44:17 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9964"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"51342"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"40"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"device\": {\n            \"id\": 945976\n        },\n        \"type\": \"HVAC\"\n    }\n]"}],"_postman_id":"160ca2f8-3c95-40b6-8062-687af291fd1f"}],"id":"accd89e9-529f-4163-b438-ab1b2ff8103f","_postman_id":"accd89e9-529f-4163-b438-ab1b2ff8103f","description":""},{"name":"Ratios","item":[{"name":"Retrieve Configuration of Ratios of a Location","id":"fa885bac-45bc-4936-ab2f-e8d38a872420","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/10988/ratio-configs","urlObject":{"path":["locations","10988","ratio-configs"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"34d007da-8bbe-4afd-a902-d3d6382b57b7","name":"Retrieve Configuration of Ratios of a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/97274/ratio-configs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9979"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1572"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:33:47 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49941"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"55572"},{"key":"X-Backend","value":"api-internal-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1422"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 950,\n        \"ratio\": {\n            \"custom\": true,\n            \"id\": 1212557,\n            \"name\": \"constant ratio\",\n            \"type\": \"CONSTANT\",\n            \"units\": \"U\"\n        },\n        \"status\": \"CONFIGURED\",\n        \"value\": 10\n    },\n    {\n        \"device\": {\n            \"id\": 498686\n        },\n        \"id\": 7,\n        \"parameter\": {\n            \"id\": 18221\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610226,\n            \"name\": \"DEGREE\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"DD\"\n        },\n        \"status\": \"CONFIGURED\"\n    },\n    {\n        \"device\": null,\n        \"id\": 470,\n        \"parameter\": {\n            \"id\": 90161\n        },\n        \"ratio\": {\n            \"custom\": true,\n            \"id\": 1227520,\n            \"name\": \"Water (ML)\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"m3\"\n        },\n        \"status\": \"NOT_CONFIGURED\"\n    },\n    {\n        \"device\": {\n            \"id\": 531798\n        },\n        \"id\": 5,\n        \"parameter\": {\n            \"id\": 12181\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610224,\n            \"name\": \"OCCUPANCY\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"pax\"\n        },\n        \"status\": \"CONFIGURED\"\n    },\n    {\n        \"device\": {\n            \"id\": 498686\n        },\n        \"id\": 4,\n        \"parameter\": {\n            \"id\": 18021\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610223,\n            \"name\": \"DEGREE\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"CDD\"\n        },\n        \"status\": \"CONFIGURED\"\n    },\n    {\n        \"device\": {\n            \"id\": 498686\n        },\n        \"id\": 3,\n        \"parameter\": {\n            \"id\": 18121\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610222,\n            \"name\": \"DEGREE\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"HDD\"\n        },\n        \"status\": \"CONFIGURED\"\n    },\n    {\n        \"id\": 1,\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610220,\n            \"name\": \"SURFACE\",\n            \"type\": \"CONSTANT\",\n            \"units\": \"m²\"\n        },\n        \"status\": \"CONFIGURED\",\n        \"value\": 12000\n    },\n    {\n        \"device\": {\n            \"id\": 490186\n        },\n        \"id\": 2,\n        \"parameter\": {\n            \"id\": 30122\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610221,\n            \"name\": \"DAILYTEMP\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"°C\"\n        },\n        \"status\": \"CONFIGURED\"\n    },\n    {\n        \"device\": null,\n        \"id\": 6,\n        \"parameter\": {\n            \"id\": 13121\n        },\n        \"ratio\": {\n            \"custom\": false,\n            \"id\": 610225,\n            \"name\": \"PRODUCTION\",\n            \"type\": \"VARIABLE\",\n            \"units\": \"ud\"\n        },\n        \"status\": \"NOT_CONFIGURED\"\n    }\n]"}],"_postman_id":"fa885bac-45bc-4936-ab2f-e8d38a872420"}],"id":"e96abe1e-560b-4872-9847-310fec66324a","_postman_id":"e96abe1e-560b-4872-9847-310fec66324a","description":""},{"name":"Tags","item":[{"name":"Retrieve list of Tags assigned to a Location","id":"9f7ec7e4-b9d8-4da8-b7cb-7b5812843f45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/219307/tags","urlObject":{"path":["locations","219307","tags"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"0dc20a38-d59f-4340-a082-8d26d7df5194","name":"Retrieve list of Tags assigned to a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/200056/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"976"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1196"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:40:03 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9971"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"51596"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"19"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    \"hackathon\",\n    \"tag\"\n]"}],"_postman_id":"9f7ec7e4-b9d8-4da8-b7cb-7b5812843f45"},{"name":"Update list of Tags assigned to a Location","id":"8c115ef8-cf1f-41d3-a821-295128cd1858","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    \"hackathon\",\n    \"tag\",\n    \"another\"\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/11906/tags","urlObject":{"path":["locations","11906","tags"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"0026128c-c690-4800-b0de-0b7b87623f2d","name":"Update list of Tags assigned to a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    \"hackathon\",\n    \"tag\",\n    \"another\"\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"975"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1142"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:40:57 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9970"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"51542"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"29"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    \"another\",\n    \"hackathon\",\n    \"tag\"\n]"}],"_postman_id":"8c115ef8-cf1f-41d3-a821-295128cd1858"}],"id":"c23b16e6-e9db-43f0-b913-8385e7a5ca9f","_postman_id":"c23b16e6-e9db-43f0-b913-8385e7a5ca9f","description":""},{"name":"Supplies","item":[{"name":"Retrieve list of Supplies assigned to a Location","id":"6faeb9d8-cdce-40d6-a2b6-1f56faeb3036","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/123/supplies","urlObject":{"path":["locations","123","supplies"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"ce697112-3fd0-413b-b6ee-7fca52393a1b","name":"Retrieve list of Supplies assigned to a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/200056/supplies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"965"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"424"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:52:55 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9960"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"50824"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 17235\n    }\n]"}],"_postman_id":"6faeb9d8-cdce-40d6-a2b6-1f56faeb3036"},{"name":"Assign Supplies to a Location","id":"4d6a45b0-d0f6-49c9-b986-217c10c24dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 17235\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/{id}/bind-supplies","urlObject":{"path":["locations","{id}","bind-supplies"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"f63c9d5c-4e0a-4827-99ee-d69cc37f4878","name":"Assign Supplies to a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 17235\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/bind-supplies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"955"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"185"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:56:54 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9950"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"50585"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 17235\n    }\n]"}],"_postman_id":"4d6a45b0-d0f6-49c9-b986-217c10c24dd2"},{"name":"Remove Supplies from a Location","id":"b22c2485-91ca-4fdb-ad3e-ce3c388678c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 17235\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/{id}/unbind-supplies","urlObject":{"path":["locations","{id}","unbind-supplies"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"0755e997-82aa-4c50-ad0c-07f3f4057e35","name":"Remove Supplies from a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 17235\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056/unbind-supplies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"960"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"285"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:55:14 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9955"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"50685"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 17235\n    }\n]"}],"_postman_id":"b22c2485-91ca-4fdb-ad3e-ce3c388678c2"}],"id":"42d44418-5ba5-4a89-b003-fade5830cd92","_postman_id":"42d44418-5ba5-4a89-b003-fade5830cd92","description":""},{"name":"Activities","item":[{"name":"List all valid Activities for a Location","id":"6fd11f39-b196-4041-ba14-f3fff1bd9368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/global/activities","urlObject":{"path":["global","activities"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"f4e91155-8445-46a0-9e9a-dff52fd7703e","name":"List all valid Activities for a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/global/activities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:23:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"555"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"DEPARTMENT-STORE-FOOD\"\n    },\n    {\n        \"name\": \"DEPARTMENT-STORE-OTHER\"\n    },\n    {\n        \"name\": \"EDUCATION-EQUIPMENT\"\n    },\n    {\n        \"name\": \"HEALTHCARE-CENTER\"\n    },\n    {\n        \"name\": \"HOSPITAL\"\n    },\n    {\n        \"name\": \"HOSPITALITY\"\n    },\n    {\n        \"name\": \"HOTEL\"\n    },\n    {\n        \"name\": \"HOUSING\"\n    },\n    {\n        \"name\": \"INDUSTRIAL-WAREHOUSE\"\n    },\n    {\n        \"name\": \"INDUSTRY\"\n    },\n    {\n        \"name\": \"LEISURE-EQUIPMENT\"\n    },\n    {\n        \"name\": \"LIBRARY\"\n    },\n    {\n        \"name\": \"MUSEUM\"\n    },\n    {\n        \"name\": \"OFFICE-BUILDING\"\n    },\n    {\n        \"name\": \"OFFICE-SINGLE\"\n    },\n    {\n        \"name\": \"OTHER\"\n    },\n    {\n        \"name\": \"PARKING\"\n    },\n    {\n        \"name\": \"PHOTOVOLTAIC-GENERATION\"\n    },\n    {\n        \"name\": \"SMALL-STORE-FOOD\"\n    },\n    {\n        \"name\": \"SMALL-STORE-OTHER\"\n    },\n    {\n        \"name\": \"SPORTS-EQUIPMENT\"\n    },\n    {\n        \"name\": \"UNIVERSITY\"\n    }\n]"}],"_postman_id":"6fd11f39-b196-4041-ba14-f3fff1bd9368"}],"id":"c97f88a5-099f-4b8b-8048-2c4f5b2e69b6","_postman_id":"c97f88a5-099f-4b8b-8048-2c4f5b2e69b6","description":""},{"name":"List all  Locations","id":"88dfec14-5af3-4801-b1ef-668eae3dfd39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{api_v3.host}}/locations?name=01. Stut&key=L-NFVHJK&tags=NZEB,GRID_export&device_id=931859&area_units=AS_IN_PREFERENCES&temp_units=AS_IN_PREFERENCES","urlObject":{"path":["locations"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Name starts with</p>\n","type":"text/plain"},"key":"name","value":"01. Stut"},{"description":{"content":"<p>Matches key</p>\n","type":"text/plain"},"key":"key","value":"L-NFVHJK"},{"description":{"content":"<p>Contains all list of tags separated by comma</p>\n","type":"text/plain"},"key":"tags","value":"NZEB,GRID_export"},{"description":{"content":"<p>Has this device assigned</p>\n","type":"text/plain"},"key":"device_id","value":"931859"},{"description":{"content":"<p>[Optional] Specify desired area units response [M2 (default) | SQFT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"area_units","value":"AS_IN_PREFERENCES"},{"description":{"content":"<p>[Optional] Specify desired winter and summer temperature units response [CELCSIUS (default) | FAHRENHEIT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"temp_units","value":"AS_IN_PREFERENCES"}],"variable":[]}},"response":[{"id":"64ba1a2b-ce2e-4929-bf9f-baf1b7130896","name":"List all  Locations with all query params","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{api_v3.host}}/locations?name=01. Stut&key=L-NFVHJK&tags=NZEB,GRID_export&device_id=931859","host":["{{api_v3.host}}"],"path":["locations"],"query":[{"key":"name","value":"01. Stut","description":"Name starts with"},{"key":"key","value":"L-NFVHJK","description":"Matches key"},{"key":"tags","value":"NZEB,GRID_export","description":"Contains all list of tags separated by comma"},{"key":"device_id","value":"931859","description":"Has this device assigned"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3597"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:00:02 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49961"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"57597"},{"key":"X-Backend","value":"api-internal-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"818"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Stuttgart\",\n            \"coordinates\": {\n                \"latitude\": 48.769432,\n                \"longitude\": 9.154313\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Rotebühlstraße, 155\",\n            \"zip\": \"70197\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 97274,\n        \"key\": \"L-NFVHJK\",\n        \"name\": \"01. Stuttgart Building\",\n        \"parent\": {\n            \"id\": 181090\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 490186\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489100\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489111\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489116\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MACHINERY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12006\n                },\n                \"type\": \"REFRIGERATORS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12005\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75998\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    }\n]"},{"id":"725115cf-9ab9-413f-b1b1-5112232350b6","name":"List all  Locations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{api_v3.host}}/locations","host":["{{api_v3.host}}"],"path":["locations"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"994"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 07:43:25 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49999"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"58594"},{"key":"X-Backend","value":"api-internal-nodes/api02-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Stuttgart\",\n            \"coordinates\": {\n                \"latitude\": 48.769432,\n                \"longitude\": 9.154313\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Rotebühlstraße, 155\",\n            \"zip\": \"70197\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 97274,\n        \"key\": \"L-NFVHJK\",\n        \"name\": \"01. Stuttgart Building\",\n        \"parent\": {\n            \"id\": 181090\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 490186\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75998\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12005\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12006\n                },\n                \"type\": \"REFRIGERATORS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MACHINERY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489116\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489111\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489100\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Colmar-Berg\",\n            \"coordinates\": {\n                \"latitude\": 49.80309,\n                \"longitude\": 6.103449\n            },\n            \"country\": {\n                \"code\": \"LU\",\n                \"name\": \"Luxembourg\"\n            },\n            \"street\": \"Rue de l'Industrie\",\n            \"zip\": \"7737\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 10988,\n        \"key\": \"L-A3TGB1\",\n        \"name\": \"02. Luxembourg Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 12024\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12010\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75999\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12009\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75996\n                },\n                \"type\": \"HVAC\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Brussel\",\n            \"coordinates\": {\n                \"latitude\": 50.853065,\n                \"longitude\": 4.352792\n            },\n            \"country\": {\n                \"code\": \"BE\",\n                \"name\": \"Belgium\"\n            },\n            \"street\": \"Bloemenstraat\",\n            \"zip\": \"1000\"\n        },\n        \"area\": 11000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18193,\n        \"key\": \"L-OEE88L\",\n        \"name\": \"03. Brussels Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75989\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12009\n                },\n                \"type\": \"GAS\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Hamilton\",\n            \"coordinates\": {\n                \"latitude\": 43.257725,\n                \"longitude\": -79.918915\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"Main Street West\",\n            \"zip\": \"L8S\"\n        },\n        \"area\": 13500,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18194,\n        \"key\": \"L-SPCP6O\",\n        \"name\": \"05. Hamilton\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75993\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76436\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75991\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Toronto\",\n            \"coordinates\": {\n                \"latitude\": 43.653206,\n                \"longitude\": -79.38114\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"James St\",\n            \"zip\": \"ON\"\n        },\n        \"area\": 16230,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18195,\n        \"key\": \"L-8MMCFF\",\n        \"name\": \"06. Toronto Building\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76436\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75994\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Bristol\",\n            \"coordinates\": {\n                \"latitude\": 51.454514,\n                \"longitude\": -2.58791\n            },\n            \"country\": {\n                \"code\": \"GB\",\n                \"name\": \"United Kingdom\"\n            },\n            \"street\": \"\",\n            \"zip\": \"\"\n        },\n        \"area\": 10200,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18208,\n        \"key\": \"L-4N09MM\",\n        \"name\": \"07. Bristol Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75995\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 929512\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Dublin\",\n            \"coordinates\": {\n                \"latitude\": 53.34878,\n                \"longitude\": -6.266646\n            },\n            \"country\": {\n                \"code\": \"IE\",\n                \"name\": \"Ireland\"\n            },\n            \"street\": \"Mary St\",\n            \"zip\": \"\"\n        },\n        \"area\": 18305,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18209,\n        \"key\": \"L-888IOS\",\n        \"name\": \"08. Dublin Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75997\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"München\",\n            \"coordinates\": {\n                \"latitude\": 48.13599,\n                \"longitude\": 11.58174\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Marienstraße, 15\",\n            \"zip\": \"80331\"\n        },\n        \"area\": 7690,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18210,\n        \"key\": \"L-Q2FRC8\",\n        \"name\": \"09. Munich Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76000\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Barcelona\",\n            \"coordinates\": {\n                \"latitude\": 41.43726,\n                \"longitude\": 2.168654\n            },\n            \"country\": {\n                \"code\": \"ES\",\n                \"name\": \"Spain (España)\"\n            },\n            \"street\": \"Carrer de Marie Curie\",\n            \"zip\": \"08042\"\n        },\n        \"area\": 10070,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18211,\n        \"key\": \"L-J3681Q\",\n        \"name\": \"10. Barcelona Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 873486\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76001\n                },\n                \"type\": \"THERMAL\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76001\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Paris\",\n            \"coordinates\": {\n                \"latitude\": 48.860176,\n                \"longitude\": 2.352906\n            },\n            \"country\": {\n                \"code\": \"FR\",\n                \"name\": \"France\"\n            },\n            \"street\": \"Rue du Renard, 52\",\n            \"zip\": \"75004\"\n        },\n        \"area\": 16230,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18212,\n        \"key\": \"L-EO2SD3\",\n        \"name\": \"11. Paris Building\",\n        \"parent\": {\n            \"id\": 26415\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 929513\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76007\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Milano\",\n            \"coordinates\": {\n                \"latitude\": 45.46532,\n                \"longitude\": 9.185172\n            },\n            \"country\": {\n                \"code\": \"IT\",\n                \"name\": \"Italy\"\n            },\n            \"street\": \"Via Gaetano Negri\",\n            \"zip\": \"20123\"\n        },\n        \"area\": 18620,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18215,\n        \"key\": \"L-K9S7DQ\",\n        \"name\": \"12. Milan Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76008\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Lisboa\",\n            \"coordinates\": {\n                \"latitude\": 38.719395,\n                \"longitude\": -9.143202\n            },\n            \"country\": {\n                \"code\": \"PT\",\n                \"name\": \"Portugal\"\n            },\n            \"street\": \"R. São José\",\n            \"zip\": \"1150-325\"\n        },\n        \"area\": 8652,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18216,\n        \"key\": \"L-DK9L94\",\n        \"name\": \"13. Lisbon Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76077\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Miami\",\n            \"coordinates\": {\n                \"latitude\": 25.814787,\n                \"longitude\": -80.19958\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"NW 2nd Ave\",\n            \"zip\": \"FL\"\n        },\n        \"area\": 4520,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18217,\n        \"key\": \"L-JKFHSS\",\n        \"name\": \"14. Miami Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76435\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76085\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Montréal\",\n            \"coordinates\": {\n                \"latitude\": 45.506557,\n                \"longitude\": -73.55541\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"Rue Notre Dame Est, 15\",\n            \"zip\": \"H2Y\"\n        },\n        \"area\": 11200,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18218,\n        \"key\": \"L-F83PTD\",\n        \"name\": \"15. Montreal Building\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 935892\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935893\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935889\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935896\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935887\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935897\n                },\n                \"type\": \"INDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935894\n                },\n                \"type\": \"THERMAL\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Boston\",\n            \"coordinates\": {\n                \"latitude\": 42.35961,\n                \"longitude\": -71.06155\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"Somerset Street\",\n            \"zip\": \"02108\"\n        },\n        \"area\": 14329,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18219,\n        \"key\": \"L-P2NB05\",\n        \"name\": \"16. Boston Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76107\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76435\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Houston\",\n            \"coordinates\": {\n                \"latitude\": 29.76176,\n                \"longitude\": -95.368774\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"Bagby Street\",\n            \"zip\": \"TX\"\n        },\n        \"area\": 35875,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18220,\n        \"key\": \"L-K0N35K\",\n        \"name\": \"17. Houston Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76111\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Berlin\",\n            \"coordinates\": {\n                \"latitude\": 52.521164,\n                \"longitude\": 13.400714\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Burgstraße\",\n            \"zip\": \"10178\"\n        },\n        \"area\": 11208,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18221,\n        \"key\": \"L-KID5RL\",\n        \"name\": \"18. Berlin Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 488343\n                },\n                \"type\": \"THERMAL\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Madrid\",\n            \"coordinates\": {\n                \"latitude\": 40.42005,\n                \"longitude\": -3.704641\n            },\n            \"country\": {\n                \"code\": \"ES\",\n                \"name\": \"Spain (España)\"\n            },\n            \"street\": \"Calle Gran Vía\",\n            \"zip\": \"28013\"\n        },\n        \"area\": 7530,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18222,\n        \"key\": \"L-RKG3S2\",\n        \"name\": \"19. Madrid Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76144\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Philadelphia\",\n            \"coordinates\": {\n                \"latitude\": 32.771523,\n                \"longitude\": -89.11673\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"\",\n            \"zip\": \"39350\"\n        },\n        \"area\": 7669,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18223,\n        \"key\": \"L-E81EPD\",\n        \"name\": \"20. Philadelphia Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76145\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 929511\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"id\": 18230,\n        \"key\": \"B-JR21QS\",\n        \"name\": \"Canada\",\n        \"parent\": {\n            \"id\": 11906\n        },\n        \"type\": \"BRANCH\"\n    }\n]"}],"_postman_id":"88dfec14-5af3-4801-b1ef-668eae3dfd39"},{"name":"Metadata","id":"344d9782-4d5d-46e3-96a0-03be94b9733d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{api_v3.host}}/locations?name=01. Stut&key=L-NFVHJK&tags=NZEB,GRID_export&device_id=931859&area_units=AS_IN_PREFERENCES&temp_units=AS_IN_PREFERENCES","urlObject":{"path":["locations"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Name starts with</p>\n","type":"text/plain"},"key":"name","value":"01. Stut"},{"description":{"content":"<p>Matches key</p>\n","type":"text/plain"},"key":"key","value":"L-NFVHJK"},{"description":{"content":"<p>Contains all list of tags separated by comma</p>\n","type":"text/plain"},"key":"tags","value":"NZEB,GRID_export"},{"description":{"content":"<p>Has this device assigned</p>\n","type":"text/plain"},"key":"device_id","value":"931859"},{"description":{"content":"<p>[Optional] Specify desired area units response [M2 (default) | SQFT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"area_units","value":"AS_IN_PREFERENCES"},{"description":{"content":"<p>[Optional] Specify desired winter and summer temperature units response [CELCSIUS (default) | FAHRENHEIT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"temp_units","value":"AS_IN_PREFERENCES"}],"variable":[]}},"response":[{"id":"d4d6b580-2db5-4ef0-bc25-18103c3b8530","name":"List all  Locations with all query params","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{api_v3.host}}/locations?name=01. Stut&key=L-NFVHJK&tags=NZEB,GRID_export&device_id=931859","host":["{{api_v3.host}}"],"path":["locations"],"query":[{"key":"name","value":"01. Stut","description":"Name starts with"},{"key":"key","value":"L-NFVHJK","description":"Matches key"},{"key":"tags","value":"NZEB,GRID_export","description":"Contains all list of tags separated by comma"},{"key":"device_id","value":"931859","description":"Has this device assigned"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3597"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:00:02 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49961"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"57597"},{"key":"X-Backend","value":"api-internal-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"818"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Stuttgart\",\n            \"coordinates\": {\n                \"latitude\": 48.769432,\n                \"longitude\": 9.154313\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Rotebühlstraße, 155\",\n            \"zip\": \"70197\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 97274,\n        \"key\": \"L-NFVHJK\",\n        \"name\": \"01. Stuttgart Building\",\n        \"parent\": {\n            \"id\": 181090\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 490186\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489100\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489111\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489116\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MACHINERY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12006\n                },\n                \"type\": \"REFRIGERATORS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12005\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75998\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    }\n]"},{"id":"8bc29ade-4525-4784-9df4-48d48f530ae4","name":"List all  Locations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{api_v3.host}}/locations","host":["{{api_v3.host}}"],"path":["locations"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"994"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 07:43:25 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49999"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"58594"},{"key":"X-Backend","value":"api-internal-nodes/api02-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Stuttgart\",\n            \"coordinates\": {\n                \"latitude\": 48.769432,\n                \"longitude\": 9.154313\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Rotebühlstraße, 155\",\n            \"zip\": \"70197\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 97274,\n        \"key\": \"L-NFVHJK\",\n        \"name\": \"01. Stuttgart Building\",\n        \"parent\": {\n            \"id\": 181090\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 490186\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75998\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12005\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12006\n                },\n                \"type\": \"REFRIGERATORS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 823026\n                },\n                \"type\": \"MACHINERY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489116\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489111\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 489100\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Colmar-Berg\",\n            \"coordinates\": {\n                \"latitude\": 49.80309,\n                \"longitude\": 6.103449\n            },\n            \"country\": {\n                \"code\": \"LU\",\n                \"name\": \"Luxembourg\"\n            },\n            \"street\": \"Rue de l'Industrie\",\n            \"zip\": \"7737\"\n        },\n        \"area\": 12000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 10988,\n        \"key\": \"L-A3TGB1\",\n        \"name\": \"02. Luxembourg Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 12024\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12010\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75999\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12009\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75996\n                },\n                \"type\": \"HVAC\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Brussel\",\n            \"coordinates\": {\n                \"latitude\": 50.853065,\n                \"longitude\": 4.352792\n            },\n            \"country\": {\n                \"code\": \"BE\",\n                \"name\": \"Belgium\"\n            },\n            \"street\": \"Bloemenstraat\",\n            \"zip\": \"1000\"\n        },\n        \"area\": 11000,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18193,\n        \"key\": \"L-OEE88L\",\n        \"name\": \"03. Brussels Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75989\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 12009\n                },\n                \"type\": \"GAS\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Hamilton\",\n            \"coordinates\": {\n                \"latitude\": 43.257725,\n                \"longitude\": -79.918915\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"Main Street West\",\n            \"zip\": \"L8S\"\n        },\n        \"area\": 13500,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18194,\n        \"key\": \"L-SPCP6O\",\n        \"name\": \"05. Hamilton\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75993\n                },\n                \"type\": \"WATER\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76436\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75991\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Toronto\",\n            \"coordinates\": {\n                \"latitude\": 43.653206,\n                \"longitude\": -79.38114\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"James St\",\n            \"zip\": \"ON\"\n        },\n        \"area\": 16230,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18195,\n        \"key\": \"L-8MMCFF\",\n        \"name\": \"06. Toronto Building\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76436\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 75994\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Bristol\",\n            \"coordinates\": {\n                \"latitude\": 51.454514,\n                \"longitude\": -2.58791\n            },\n            \"country\": {\n                \"code\": \"GB\",\n                \"name\": \"United Kingdom\"\n            },\n            \"street\": \"\",\n            \"zip\": \"\"\n        },\n        \"area\": 10200,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18208,\n        \"key\": \"L-4N09MM\",\n        \"name\": \"07. Bristol Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75995\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 929512\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Dublin\",\n            \"coordinates\": {\n                \"latitude\": 53.34878,\n                \"longitude\": -6.266646\n            },\n            \"country\": {\n                \"code\": \"IE\",\n                \"name\": \"Ireland\"\n            },\n            \"street\": \"Mary St\",\n            \"zip\": \"\"\n        },\n        \"area\": 18305,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18209,\n        \"key\": \"L-888IOS\",\n        \"name\": \"08. Dublin Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 75997\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"München\",\n            \"coordinates\": {\n                \"latitude\": 48.13599,\n                \"longitude\": 11.58174\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Marienstraße, 15\",\n            \"zip\": \"80331\"\n        },\n        \"area\": 7690,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18210,\n        \"key\": \"L-Q2FRC8\",\n        \"name\": \"09. Munich Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76000\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Barcelona\",\n            \"coordinates\": {\n                \"latitude\": 41.43726,\n                \"longitude\": 2.168654\n            },\n            \"country\": {\n                \"code\": \"ES\",\n                \"name\": \"Spain (España)\"\n            },\n            \"street\": \"Carrer de Marie Curie\",\n            \"zip\": \"08042\"\n        },\n        \"area\": 10070,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18211,\n        \"key\": \"L-J3681Q\",\n        \"name\": \"10. Barcelona Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 873486\n                },\n                \"type\": \"HVAC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76001\n                },\n                \"type\": \"THERMAL\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76001\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Paris\",\n            \"coordinates\": {\n                \"latitude\": 48.860176,\n                \"longitude\": 2.352906\n            },\n            \"country\": {\n                \"code\": \"FR\",\n                \"name\": \"France\"\n            },\n            \"street\": \"Rue du Renard, 52\",\n            \"zip\": \"75004\"\n        },\n        \"area\": 16230,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18212,\n        \"key\": \"L-EO2SD3\",\n        \"name\": \"11. Paris Building\",\n        \"parent\": {\n            \"id\": 26415\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 929513\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76007\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Milano\",\n            \"coordinates\": {\n                \"latitude\": 45.46532,\n                \"longitude\": 9.185172\n            },\n            \"country\": {\n                \"code\": \"IT\",\n                \"name\": \"Italy\"\n            },\n            \"street\": \"Via Gaetano Negri\",\n            \"zip\": \"20123\"\n        },\n        \"area\": 18620,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18215,\n        \"key\": \"L-K9S7DQ\",\n        \"name\": \"12. Milan Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76008\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Lisboa\",\n            \"coordinates\": {\n                \"latitude\": 38.719395,\n                \"longitude\": -9.143202\n            },\n            \"country\": {\n                \"code\": \"PT\",\n                \"name\": \"Portugal\"\n            },\n            \"street\": \"R. São José\",\n            \"zip\": \"1150-325\"\n        },\n        \"area\": 8652,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18216,\n        \"key\": \"L-DK9L94\",\n        \"name\": \"13. Lisbon Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76077\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Miami\",\n            \"coordinates\": {\n                \"latitude\": 25.814787,\n                \"longitude\": -80.19958\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"NW 2nd Ave\",\n            \"zip\": \"FL\"\n        },\n        \"area\": 4520,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18217,\n        \"key\": \"L-JKFHSS\",\n        \"name\": \"14. Miami Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76435\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76085\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Montréal\",\n            \"coordinates\": {\n                \"latitude\": 45.506557,\n                \"longitude\": -73.55541\n            },\n            \"country\": {\n                \"code\": \"CA\",\n                \"name\": \"Canada\"\n            },\n            \"street\": \"Rue Notre Dame Est, 15\",\n            \"zip\": \"H2Y\"\n        },\n        \"area\": 11200,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18218,\n        \"key\": \"L-F83PTD\",\n        \"name\": \"15. Montreal Building\",\n        \"parent\": {\n            \"id\": 18230\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 935892\n                },\n                \"type\": \"PHOTOVOLTAIC\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935893\n                },\n                \"type\": \"GAS\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935889\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935896\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935887\n                },\n                \"type\": \"LIGHTING\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935897\n                },\n                \"type\": \"INDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 935894\n                },\n                \"type\": \"THERMAL\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Boston\",\n            \"coordinates\": {\n                \"latitude\": 42.35961,\n                \"longitude\": -71.06155\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"Somerset Street\",\n            \"zip\": \"02108\"\n        },\n        \"area\": 14329,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18219,\n        \"key\": \"L-P2NB05\",\n        \"name\": \"16. Boston Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76107\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76435\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Houston\",\n            \"coordinates\": {\n                \"latitude\": 29.76176,\n                \"longitude\": -95.368774\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"Bagby Street\",\n            \"zip\": \"TX\"\n        },\n        \"area\": 35875,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18220,\n        \"key\": \"L-K0N35K\",\n        \"name\": \"17. Houston Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76299\n                },\n                \"type\": \"OUTDOORTEMP\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76111\n                },\n                \"type\": \"MAINSUPPLY\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Berlin\",\n            \"coordinates\": {\n                \"latitude\": 52.521164,\n                \"longitude\": 13.400714\n            },\n            \"country\": {\n                \"code\": \"DE\",\n                \"name\": \"Germany (Deutschland)\"\n            },\n            \"street\": \"Burgstraße\",\n            \"zip\": \"10178\"\n        },\n        \"area\": 11208,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18221,\n        \"key\": \"L-KID5RL\",\n        \"name\": \"18. Berlin Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 488343\n                },\n                \"type\": \"THERMAL\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Madrid\",\n            \"coordinates\": {\n                \"latitude\": 40.42005,\n                \"longitude\": -3.704641\n            },\n            \"country\": {\n                \"code\": \"ES\",\n                \"name\": \"Spain (España)\"\n            },\n            \"street\": \"Calle Gran Vía\",\n            \"zip\": \"28013\"\n        },\n        \"area\": 7530,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18222,\n        \"key\": \"L-RKG3S2\",\n        \"name\": \"19. Madrid Building\",\n        \"parent\": {\n            \"id\": 97275\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76144\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 76437\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"activity\": \"OFFICE-BUILDING\",\n        \"address\": {\n            \"city\": \"Philadelphia\",\n            \"coordinates\": {\n                \"latitude\": 32.771523,\n                \"longitude\": -89.11673\n            },\n            \"country\": {\n                \"code\": \"US\",\n                \"name\": \"United States\"\n            },\n            \"street\": \"\",\n            \"zip\": \"39350\"\n        },\n        \"area\": 7669,\n        \"area_units\": \"m²\",\n        \"degree_day_method\": \"UK_MET_OFFICE\",\n        \"id\": 18223,\n        \"key\": \"L-E81EPD\",\n        \"name\": \"20. Philadelphia Building\",\n        \"parent\": {\n            \"id\": 18229\n        },\n        \"reference_devices\": [\n            {\n                \"device\": {\n                    \"id\": 76145\n                },\n                \"type\": \"MAINSUPPLY\"\n            },\n            {\n                \"device\": {\n                    \"id\": 929511\n                },\n                \"type\": \"OUTDOORTEMP\"\n            }\n        ],\n        \"summer_temp\": 18,\n        \"temp_units\": \"ºC\",\n        \"type\": \"LEAF\",\n        \"winter_temp\": 15\n    },\n    {\n        \"id\": 18230,\n        \"key\": \"B-JR21QS\",\n        \"name\": \"Canada\",\n        \"parent\": {\n            \"id\": 11906\n        },\n        \"type\": \"BRANCH\"\n    }\n]"}],"_postman_id":"344d9782-4d5d-46e3-96a0-03be94b9733d"},{"name":"Retrieve a Location","id":"18983d43-6246-4183-b982-196b1a40ca8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/11906?area_units=AS_IN_PREFERENCES&temp_units=AS_IN_PREFERENCES","urlObject":{"path":["locations","11906"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Optional] Specify desired area units response [M2 (default) | SQFT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"area_units","value":"AS_IN_PREFERENCES"},{"description":{"content":"<p>[Optional] Specify desired winter and summer temperature units response [CELCSIUS (default) | FAHRENHEIT | AS_IN_PREFERENCES(deployment preferences)]</p>\n","type":"text/plain"},"key":"temp_units","value":"AS_IN_PREFERENCES"}],"variable":[]}},"response":[{"id":"78310f27-528b-4d11-94d3-ae989a03a247","name":"Retrieve a Location","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/11906"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9998"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3187"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:06:53 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"49960"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"57187"},{"key":"X-Backend","value":"api-internal-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"72"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 11906,\n    \"key\": \"R-9MQ0C9\",\n    \"name\": \"Corporate Buildings\",\n    \"type\": \"ROOT\"\n}"}],"_postman_id":"18983d43-6246-4183-b982-196b1a40ca8b"},{"name":"Create a Location","id":"5dc56304-5c97-4b02-a172-432e5124255a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"test hash api 2\",\n  \"type\": \"LEAF\",\n  \"parent\": {\n    \"id\": 11804\n  },\n  \"area\": \"850.00\",\n  \"summer_temp\": null,\n  \"winter_temp\": null,\n  \"activity\": \"DEPARTMENT-STORE-FOOD\",\n  \"address\": {\n    \"street\": \"Leganes\",\n    \"zip\": \"\",\n    \"city\": \"Leganes\",\n    \"country\": {\n      \"name\": \"España\",\n      \"code\": \"ES\"\n    },\n    \"coordinates\": {\n      \"latitude\": 2,\n      \"longitude\": 3.12\n    }\n  }\n}"},"url":"{{api_v3.host}}/locations","description":"<h2 id=\"payload-structure\">Payload structure</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>address</td>\n<td>YES</td>\n<td>Address Entity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address\">Address</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country</td>\n<td>YES</td>\n<td>Country Entity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"country\">Country</h3>\n<p> Check Country section to list all available Countries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>code</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"activity\">Activity</h3>\n<p>Check Activities section of a Location to list all available Activities.</p>\n","urlObject":{"path":["locations"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"39908f61-0adf-4d7f-aeeb-6994aee26c35","name":"Create a Leaf Location","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"hackathon\",\n  \"key\": \"hackathon\",\n  \"type\": \"LEAF\",\n  \"parent\": {\n    \"id\": 200054\n  },\n  \"area\": \"850.00\",\n  \"summer_temp\": null,\n  \"winter_temp\": null,\n  \"activity\": \"DEPARTMENT-STORE-FOOD\",\n  \"address\": {\n    \"street\": \"Roser\",\n    \"zip\": \"\",\n    \"city\": \"Barcelona\",\n    \"country\": {\n      \"name\": \"España\",\n      \"code\": \"ES\"\n    },\n    \"coordinates\": {\n      \"latitude\": 2,\n      \"longitude\": 3.12\n    }\n  }\n}"},"url":"{{api_v3.host}}/locations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3556"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:00:43 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9992"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"53956"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"386"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"activity\": \"DEPARTMENT-STORE-FOOD\",\n    \"address\": {\n        \"city\": \"Barcelona\",\n        \"coordinates\": {\n            \"latitude\": 2,\n            \"longitude\": 3.12\n        },\n        \"country\": {\n            \"code\": \"ES\",\n            \"name\": \"Spain (España)\"\n        },\n        \"street\": \"Roser\",\n        \"zip\": \"\"\n    },\n    \"area\": 850,\n    \"area_units\": \"m²\",\n    \"degree_day_method\": \"UK_MET_OFFICE\",\n    \"id\": 200056,\n    \"key\": \"hackathon\",\n    \"name\": \"hackathon\",\n    \"parent\": {\n        \"id\": 200054\n    },\n    \"reference_devices\": [],\n    \"summer_temp\": null,\n    \"temp_units\": \"ºC\",\n    \"type\": \"LEAF\",\n    \"winter_temp\": null\n}"}],"_postman_id":"5dc56304-5c97-4b02-a172-432e5124255a"},{"name":"Update a Location","id":"b96c633c-6312-4108-9c3f-a3d7940b0128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"hackathon work from home\",\n  \"key\": \"hackathon\",\n  \"type\": \"LEAF\",\n  \"parent\": {\n    \"id\": 200054\n  },\n  \"area\": \"850.00\",\n  \"summer_temp\": null,\n  \"winter_temp\": null,\n  \"activity\": \"DEPARTMENT-STORE-FOOD\",\n  \"address\": {\n    \"street\": \"Salva\",\n    \"zip\": \"\",\n    \"city\": \"Barcelona\",\n    \"country\": {\n      \"name\": \"España\",\n      \"code\": \"ES\"\n    },\n    \"coordinates\": {\n      \"latitude\": 2,\n      \"longitude\": 3.12\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/11906","description":"<h2 id=\"payload-structure\">Payload structure</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>address</td>\n<td>YES</td>\n<td>Address Entity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address\">Address</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country</td>\n<td>YES</td>\n<td>Country Entity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"country\">Country</h3>\n<p> Check Country section to list all available Countries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>code</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"activity\">Activity</h3>\n<p>Check Activities section of a Location to list all available Activities.</p>\n","urlObject":{"path":["locations","11906"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"70edadf4-fa0a-4214-90d2-a20085874387","name":"Update a Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"hackathon work from home\",\n  \"key\": \"hackathon\",\n  \"type\": \"LEAF\",\n  \"parent\": {\n    \"id\": 200054\n  },\n  \"area\": \"850.00\",\n  \"summer_temp\": null,\n  \"winter_temp\": null,\n  \"activity\": \"DEPARTMENT-STORE-FOOD\",\n  \"address\": {\n    \"street\": \"Salva\",\n    \"zip\": \"\",\n    \"city\": \"Barcelona\",\n    \"country\": {\n      \"name\": \"España\",\n      \"code\": \"ES\"\n    },\n    \"coordinates\": {\n      \"latitude\": 2,\n      \"longitude\": 3.12\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/locations/200056"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"986"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3286"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:05:13 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9981"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"53686"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"401"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"activity\": \"DEPARTMENT-STORE-FOOD\",\n    \"address\": {\n        \"city\": \"Barcelona\",\n        \"coordinates\": {\n            \"latitude\": 2,\n            \"longitude\": 3.12\n        },\n        \"country\": {\n            \"code\": \"ES\",\n            \"name\": \"Spain (España)\"\n        },\n        \"street\": \"Salva\",\n        \"zip\": \"\"\n    },\n    \"area\": 850,\n    \"area_units\": \"m²\",\n    \"degree_day_method\": \"UK_MET_OFFICE\",\n    \"id\": 200056,\n    \"key\": \"hackathon\",\n    \"name\": \"hackathon work from home\",\n    \"parent\": {\n        \"id\": 200054\n    },\n    \"reference_devices\": [],\n    \"summer_temp\": null,\n    \"temp_units\": \"ºC\",\n    \"type\": \"LEAF\",\n    \"winter_temp\": null\n}"}],"_postman_id":"b96c633c-6312-4108-9c3f-a3d7940b0128"},{"name":"Delete a Location","id":"d8bb161e-2b3f-496a-a237-028c3ab7f210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/locations/11906","urlObject":{"path":["locations","11906"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"4fcbebe8-280b-4234-88c6-bd14b0bb5f51","name":"Delete a Location","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/locations/200063"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Hour-Remaining","value":"952"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"4"},{"key":"X-Ratelimit-Day-Remaining","value":"9947"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Day-Reset","value":"50404"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Date","value":"Fri, 28 Aug 2020 09:59:55 GMT"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d8bb161e-2b3f-496a-a237-028c3ab7f210"},{"name":"List all locations as a League Table","id":"b32d5aaa-aff8-4af5-8fd8-117c5a5903ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/locations/league-table?from=2018-04-30&to=2018-06-30&order_by=WORST","urlObject":{"path":["locations","league-table"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Date.ISO8601 [yyyy-MM-dd]</p>\n","type":"text/plain"},"key":"from","value":"2018-04-30"},{"description":{"content":"<p>Date.ISO8601 [yyyy-MM-dd]</p>\n","type":"text/plain"},"key":"to","value":"2018-06-30"},{"description":{"content":"<p>Enum: <code>WORST, BEST</code></p>\n","type":"text/plain"},"key":"order_by","value":"WORST"}],"variable":[]}},"response":[],"_postman_id":"b32d5aaa-aff8-4af5-8fd8-117c5a5903ec"}],"id":"cb14987f-d152-4611-82e3-aa1d52f6b8ef","description":"<p>Locations are the units that the platform uses to organise the inserted data and display it in a defined way. A location might represent a city, a factory, a building, a floor, an apartment, a room... This will depend on the project, i.e. the user can choose what exactly a location means to them.</p>\n<p>More information at: (What is a location?)[<a href=\"https://support.dexma.com/hc/en-gb/articles/360011140560-What-is-a-location-%5D\">https://support.dexma.com/hc/en-gb/articles/360011140560-What-is-a-location-]</a></p>\n","event":[{"listen":"prerequest","script":{"id":"24bf2e69-6a0c-4d5e-a1bb-31a4c26594dc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d593fefc-6cf9-4cc9-a77d-9f17236183c0","type":"text/javascript","exec":[""]}}],"_postman_id":"cb14987f-d152-4611-82e3-aa1d52f6b8ef"},{"name":"Datasources","item":[{"name":"List all Datasources","id":"e233bda4-388a-4d33-a4ae-971c6e99c31b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources?limit=500&embed=datapoint_count","description":"<p>Retrieves a list of datasources linked to the implicit account referenced by the token</p>\n","urlObject":{"path":["datasources"],"host":["{{api_v3.host}}"],"query":[{"disabled":true,"description":{"content":"<p>Integer; Pagination start. Default 0.</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20.</p>\n","type":"text/plain"},"key":"limit","value":"500"},{"disabled":true,"description":{"content":"<p>The key parameter is the Unique ID or MAC of the data source. This identifier is unique over all the platform since it is used in the insertion engine to identify the incoming data. When using this parameter you will get only 0 or 1 result, but it will be placed inside an Array as any other /datasources response. </p>\n","type":"text/plain"},"key":"key","value":"akelius"},{"disabled":true,"description":{"content":"<p>[Options](one value): B2R, GENERICSFTP, OD, ISKRA_X4...</p>\n","type":"text/plain"},"key":"type","value":"VIRTUAL"},{"disabled":true,"description":{"content":"<p>[Options] - CONNECTED, DISCONNECTED</p>\n","type":"text/plain"},"key":"status","value":"CONNECTED"},{"disabled":true,"description":{"content":"<p>[Text]: The text that can be in the key or name.</p>\n","type":"text/plain"},"key":"query","value":"akelius"},{"disabled":true,"description":{"content":"<p>[Number] - The id of the makret application. </p>\n","type":"text/plain"},"key":"market_app","value":"1"},{"disabled":true,"description":{"content":"<p>[Options](one value): PENDING, ACCEPTED, REJECTED, </p>\n","type":"text/plain"},"key":"with_datapoints_status","value":"ACCEPTED"},{"description":{"content":"<p>[List](One or more values separated by comma): datapoint_count,</p>\n","type":"text/plain"},"key":"embed","value":"datapoint_count"}],"variable":[]}},"response":[{"id":"b2f93115-cb9c-4220-8066-a9c975c1c256","name":"Retrieve a list of ONE datasource by key","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources?key=2tKXft0tiuPyYMKtCn8P","host":["{{api_v3.host}}"],"path":["datasources"],"query":[{"key":"key","value":"2tKXft0tiuPyYMKtCn8P","description":"The key parameter is the Unique ID or MAC of the data source. This identifier is unique over all the platform since it is used in the insertion engine to identify the incoming data. When using this parameter you will get only 0 or 1 result, but it will be placed inside an Array as any other /datasources response. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:32:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"key\": \"2tKXft0tiuPyYMKtCn8P\",\n        \"mac\": \"2tKXft0tiuPyYMKtCn8P\", // this field has been deprecated and replaced by key\n        \"name\": \"01. London\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    }\n]"},{"id":"bc880430-a48f-41e9-b696-f6dba95aa5dc","name":"List all Datasources with 500 limit and starting in first page","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources?limit=500&start=0","host":["{{api_v3.host}}"],"path":["datasources"],"query":[{"key":"limit","value":"500","description":"Items per page"},{"key":"start","value":"0","description":"The page number to return"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 08:07:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"7566"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"key\": \"vcorpen124\",\n        \"mac\": \"vcorpen124\",\n        \"name\": \"01. London\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 1234,\n        \"key\": \"vcorpen2\",\n        \"mac\": \"vcorpen2\",\n        \"name\": \"02. Luxembourg\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9379,\n        \"key\": \"vcorpen3\",\n        \"mac\": \"vcorpen3\",\n        \"name\": \"03. Brussels\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9381,\n        \"key\": \"vcorpen5\",\n        \"mac\": \"vcorpen5\",\n        \"name\": \"05. Hamilton\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9382,\n        \"key\": \"vcorpen6\",\n        \"mac\": \"vcorpen6\",\n        \"name\": \"06. Toronto Building\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9383,\n        \"key\": \"vcorpen7\",\n        \"mac\": \"vcorpen7\",\n        \"name\": \"07. Bristol\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9384,\n        \"key\": \"vcorpen8\",\n        \"mac\": \"vcorpen8\",\n        \"name\": \"08. Du\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9385,\n        \"key\": \"vcorpen9\",\n        \"mac\": \"vcorpen9\",\n        \"name\": \"09. Munich\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9386,\n        \"key\": \"vcorpen10\",\n        \"mac\": \"vcorpen10\",\n        \"name\": \"10. Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9387,\n        \"key\": \"vcorpen11\",\n        \"mac\": \"vcorpen11\",\n        \"name\": \"11. Paris\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9388,\n        \"key\": \"vcorpen12\",\n        \"mac\": \"vcorpen12\",\n        \"name\": \"12. Milan \",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9389,\n        \"key\": \"vcorpen13\",\n        \"mac\": \"vcorpen13\",\n        \"name\": \"13. Lisbon\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9390,\n        \"key\": \"vcorpen14\",\n        \"mac\": \"vcorpen14\",\n        \"name\": \"14. Miami\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9391,\n        \"key\": \"vcorpen15\",\n        \"mac\": \"vcorpen15\",\n        \"name\": \"15. Montreal\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9392,\n        \"key\": \"vcorpen16\",\n        \"mac\": \"vcorpen16\",\n        \"name\": \"16. Boston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9393,\n        \"key\": \"vcorpen17\",\n        \"mac\": \"vcorpen17\",\n        \"name\": \"17. Houston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9394,\n        \"key\": \"vcorpen18\",\n        \"mac\": \"vcorpen18\",\n        \"name\": \"18. Berlin\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9395,\n        \"key\": \"vcorpen19\",\n        \"mac\": \"vcorpen19\",\n        \"name\": \"19. Madrid\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9396,\n        \"key\": \"vcorpen20\",\n        \"mac\": \"vcorpen20\",\n        \"name\": \"20. Philadelphia\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 18889,\n        \"key\": \"iweather-172592\",\n        \"mac\": \"iweather-172592\",\n        \"name\": \"Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    },\n    {\n        \"id\": 27532,\n        \"key\": \"vcorpnew1\",\n        \"mac\": \"vcorpnew1\",\n        \"name\": \"Berlin-2\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 24374,\n        \"key\": \"weather-145084\",\n        \"mac\": \"weather-145084\",\n        \"name\": \"Carterton (Oxford)\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/London\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 38319,\n        \"key\": \"CHP-loc\",\n        \"mac\": \"CHP-loc\",\n        \"name\": \"CHP location\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Paris\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 34239,\n        \"key\": \"dexma-detect-seeds\",\n        \"mac\": \"dexma-detect-seeds\",\n        \"name\": \"Dexma Detect\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 13444,\n        \"key\": \"gtw_virtual_meters\",\n        \"mac\": \"gtw_virtual_meters\",\n        \"name\": \"Gateway virtual meters\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 38696,\n        \"key\": \"weather-182853\",\n        \"mac\": \"weather-182853\",\n        \"name\": \"Hong Kong\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Asia/Hong_Kong\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 39140,\n        \"key\": \"iecmeter-105206\",\n        \"mac\": \"iecmeter-105206\",\n        \"name\": \"IEC test\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"IECMETER\"\n    },\n    {\n        \"id\": 33887,\n        \"key\": \"weather-123017\",\n        \"mac\": \"weather-123017\",\n        \"name\": \"Luxembourg\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Luxembourg\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 38699,\n        \"key\": \"weather-125500\",\n        \"mac\": \"weather-125500\",\n        \"name\": \"Meteo Bristol\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/London\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 9512,\n        \"key\": \"iweather-187366\",\n        \"mac\": \"iweather-187366\",\n        \"name\": \"Meteo Canada\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    },\n    {\n        \"id\": 24388,\n        \"key\": \"weather-145272\",\n        \"mac\": \"weather-145272\",\n        \"name\": \"Meteo Madrid\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 9504,\n        \"key\": \"iweather-147703\",\n        \"mac\": \"iweather-147703\",\n        \"name\": \"Meteo North Europe \",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    },\n    {\n        \"id\": 38700,\n        \"key\": \"weather-157870\",\n        \"mac\": \"weather-157870\",\n        \"name\": \"Meteo Paris\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Paris\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 38698,\n        \"key\": \"weather-190860\",\n        \"mac\": \"weather-190860\",\n        \"name\": \"Meteo Philadelphia\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"America/New_York\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 27836,\n        \"key\": \"weather-170789\",\n        \"mac\": \"weather-170789\",\n        \"name\": \"Meteo Roma\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Rome\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 9513,\n        \"key\": \"iweather-117496\",\n        \"mac\": \"iweather-117496\",\n        \"name\": \"Meteo South Europe\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    },\n    {\n        \"id\": 27835,\n        \"key\": \"weather-116112\",\n        \"mac\": \"weather-116112\",\n        \"name\": \"Meteo Stuttgart\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 38701,\n        \"key\": \"weather-174347\",\n        \"mac\": \"weather-174347\",\n        \"name\": \"Meteo Toronto\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"America/Toronto\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 9511,\n        \"key\": \"iweather-179272\",\n        \"mac\": \"iweather-179272\",\n        \"name\": \"Meteo USA\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    },\n    {\n        \"id\": 32068,\n        \"key\": \"Beta_Partner_Program_ECOBOT_NILM\",\n        \"mac\": \"Beta_Partner_Program_ECOBOT_NILM\",\n        \"name\": \"NILM_gateway\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Athens\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9507,\n        \"key\": \"occupancy-corporate\",\n        \"mac\": \"occupancy-corporate\",\n        \"name\": \"Occupancy Data\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 15738,\n        \"key\": \"solar-view-data\",\n        \"mac\": \"solar-view-data\",\n        \"name\": \"SolarView data\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 37259,\n        \"key\": \"STUTT_BATTERY\",\n        \"mac\": \"STUTT_BATTERY\",\n        \"name\": \"STUTT_BATTERY\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 27756,\n        \"key\": \"vcorpnew2\",\n        \"mac\": \"vcorpnew2\",\n        \"name\": \"Stuttgart\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 32683,\n        \"key\": \"Sustainability\",\n        \"mac\": \"Sustainability\",\n        \"name\": \"Sustainability\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 34360,\n        \"key\": \"sigfox-d1c482f83e85c237800d\",\n        \"mac\": \"sigfox-d1c482f83e85c237800d\",\n        \"name\": \"Test\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"SIGFOX\"\n    },\n    {\n        \"id\": 35247,\n        \"key\": \"sigfox-1f4a7f9b6f54de44c96e\",\n        \"mac\": \"sigfox-1f4a7f9b6f54de44c96e\",\n        \"name\": \"TestDEX-3594 without resolution\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Africa/Bamako\",\n        \"type\": \"SIGFOX\"\n    },\n    {\n        \"id\": 35246,\n        \"key\": \"sigfox-c96cf3b27425859fa0d6\",\n        \"mac\": \"sigfox-c96cf3b27425859fa0d6\",\n        \"name\": \"TestDEX-3594 with resolution One hour\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Africa/Asmera\",\n        \"type\": \"SIGFOX\"\n    },\n    {\n        \"id\": 35320,\n        \"key\": \"weather-148286\",\n        \"mac\": \"weather-148286\",\n        \"name\": \"Test Munich\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Berlin\",\n        \"type\": \"WEATHER\"\n    },\n    {\n        \"id\": 34029,\n        \"key\": \"genericftp-101448\",\n        \"mac\": \"genericftp-101448\",\n        \"name\": \"test redirect\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GENERICFTP\"\n    },\n    {\n        \"id\": 39137,\n        \"key\": \"genericftp-153260\",\n        \"mac\": \"genericftp-153260\",\n        \"name\": \"test sftp rabbit 4\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GENERICFTP\"\n    },\n    {\n        \"id\": 28701,\n        \"key\": \"weather-172521\",\n        \"mac\": \"weather-172521\",\n        \"name\": \"Weather gateway\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/London\",\n        \"type\": \"WEATHER\"\n    }\n]"},{"id":"1db74c58-4192-4052-abe2-13328f8792c7","name":"List all Datasources with no limit","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources","host":["{{api_v3.host}}"],"path":["datasources"],"query":[{"key":"limit","value":"500","description":"Items per page","disabled":true},{"key":"start","value":"0","description":"The page number to return","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 08:11:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2687"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"key\": \"vcorpen124\",\n        \"mac\": \"vcorpen124\",\n        \"name\": \"01. London\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 1234,\n        \"key\": \"vcorpen2\",\n        \"mac\": \"vcorpen2\",\n        \"name\": \"02. Luxembourg\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9379,\n        \"key\": \"vcorpen3\",\n        \"mac\": \"vcorpen3\",\n        \"name\": \"03. Brussels\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9381,\n        \"key\": \"vcorpen5\",\n        \"mac\": \"vcorpen5\",\n        \"name\": \"05. Hamilton\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9382,\n        \"key\": \"vcorpen6\",\n        \"mac\": \"vcorpen6\",\n        \"name\": \"06. Toronto Building\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9383,\n        \"key\": \"vcorpen7\",\n        \"mac\": \"vcorpen7\",\n        \"name\": \"07. Bristol\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9384,\n        \"key\": \"vcorpen8\",\n        \"mac\": \"vcorpen8\",\n        \"name\": \"08. Du\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9385,\n        \"key\": \"vcorpen9\",\n        \"mac\": \"vcorpen9\",\n        \"name\": \"09. Munich\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9386,\n        \"key\": \"vcorpen10\",\n        \"mac\": \"vcorpen10\",\n        \"name\": \"10. Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9387,\n        \"key\": \"vcorpen11\",\n        \"mac\": \"vcorpen11\",\n        \"name\": \"11. Paris\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9388,\n        \"key\": \"vcorpen12\",\n        \"mac\": \"vcorpen12\",\n        \"name\": \"12. Milan \",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9389,\n        \"key\": \"vcorpen13\",\n        \"mac\": \"vcorpen13\",\n        \"name\": \"13. Lisbon\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9390,\n        \"key\": \"vcorpen14\",\n        \"mac\": \"vcorpen14\",\n        \"name\": \"14. Miami\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9391,\n        \"key\": \"vcorpen15\",\n        \"mac\": \"vcorpen15\",\n        \"name\": \"15. Montreal\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9392,\n        \"key\": \"vcorpen16\",\n        \"mac\": \"vcorpen16\",\n        \"name\": \"16. Boston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9393,\n        \"key\": \"vcorpen17\",\n        \"mac\": \"vcorpen17\",\n        \"name\": \"17. Houston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9394,\n        \"key\": \"vcorpen18\",\n        \"mac\": \"vcorpen18\",\n        \"name\": \"18. Berlin\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9395,\n        \"key\": \"vcorpen19\",\n        \"mac\": \"vcorpen19\",\n        \"name\": \"19. Madrid\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9396,\n        \"key\": \"vcorpen20\",\n        \"mac\": \"vcorpen20\",\n        \"name\": \"20. Philadelphia\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 18889,\n        \"key\": \"iweather-172592\",\n        \"mac\": \"iweather-172592\",\n        \"name\": \"Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GWEATHER\"\n    }\n]"},{"id":"f3f32134-b5fa-42ad-9b8a-b62e3d0db19b","name":"List all Datasources with datapoint counted by status","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources?type=VIRTUAL&embed=datapoint_count","host":["{{api_v3.host}}"],"path":["datasources"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0.","disabled":true},{"key":"limit","value":"500","description":"Integer; Pagination end. Default 20.","disabled":true},{"key":"key","value":"akelius","description":"The key parameter is the Unique ID or MAC of the data source. This identifier is unique over all the platform since it is used in the insertion engine to identify the incoming data. When using this parameter you will get only 0 or 1 result, but it will be placed inside an Array as any other /datasources response. ","disabled":true},{"key":"type","value":"VIRTUAL","description":"[Options] - B2R, GENERICSFTP, OD, ISKRA_X4..."},{"key":"status","value":"CONNECTED","description":"[Options] - CONNECTED, DISCONNECTED","disabled":true},{"key":"query","value":"akelius","description":"[Text] - The text that can be in the key or name.","disabled":true},{"key":"market_app","value":"","description":"[Number] - The id of the makret application. ","disabled":true},{"key":"with_datapoints_status","value":"ACCEPTED","description":"[Options] - PENDING, ACCEPTED, REJECTED, ","disabled":true},{"key":"embed","value":"datapoint_count","description":"[Options]: datapoint_count,"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 22 Jul 2024 11:24:44 GMT"},{"key":"Content-Length","value":"3879"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"key\": \"vcorpen124\",\n        \"mac\": \"vcorpen124\",\n        \"name\": \"01. London\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 149,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 1234,\n        \"key\": \"vcorpen2\",\n        \"mac\": \"vcorpen2\",\n        \"name\": \"02. Luxembourg\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 11,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9379,\n        \"key\": \"vcorpen3\",\n        \"mac\": \"vcorpen3\",\n        \"name\": \"03. Brussels\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 3,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 27756,\n        \"key\": \"vcorpnew2\",\n        \"mac\": \"vcorpnew2\",\n        \"name\": \"04. Stuttgart\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 8,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9381,\n        \"key\": \"vcorpen5\",\n        \"mac\": \"vcorpen5\",\n        \"name\": \"05. Hamilton\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 14,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9382,\n        \"key\": \"vcorpen6\",\n        \"mac\": \"vcorpen6\",\n        \"name\": \"06. Toronto Building\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 6,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9383,\n        \"key\": \"vcorpen7\",\n        \"mac\": \"vcorpen7\",\n        \"name\": \"07. Bristol\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 21,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9384,\n        \"key\": \"vcorpen8\",\n        \"mac\": \"vcorpen8\",\n        \"name\": \"08. Burgos\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 19,\n            \"REJECTED\": 1\n        }\n    },\n    {\n        \"id\": 9385,\n        \"key\": \"vcorpen9\",\n        \"mac\": \"vcorpen9\",\n        \"name\": \"09. Barcelona Office Building\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 49,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9386,\n        \"key\": \"vcorpen10\",\n        \"mac\": \"vcorpen10\",\n        \"name\": \"10. Barcelona\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 189,\n            \"REJECTED\": 4\n        }\n    },\n    {\n        \"id\": 9387,\n        \"key\": \"vcorpen11\",\n        \"mac\": \"vcorpen11\",\n        \"name\": \"11. Paris\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 5,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9388,\n        \"key\": \"vcorpen12\",\n        \"mac\": \"vcorpen12\",\n        \"name\": \"12. Milan \",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 11,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9389,\n        \"key\": \"vcorpen13\",\n        \"mac\": \"vcorpen13\",\n        \"name\": \"13. Lisbon\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 27,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9390,\n        \"key\": \"vcorpen14\",\n        \"mac\": \"vcorpen14\",\n        \"name\": \"14. Miami\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 66,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9391,\n        \"key\": \"vcorpen15\",\n        \"mac\": \"vcorpen15\",\n        \"name\": \"15. Girona\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 13,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9392,\n        \"key\": \"vcorpen16\",\n        \"mac\": \"vcorpen16\",\n        \"name\": \"16. Boston\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 18,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9393,\n        \"key\": \"vcorpen17\",\n        \"mac\": \"vcorpen17\",\n        \"name\": \"17. Barcelona C\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 5,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9394,\n        \"key\": \"vcorpen18\",\n        \"mac\": \"vcorpen18\",\n        \"name\": \"18. Valencia\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 38,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9395,\n        \"key\": \"vcorpen19\",\n        \"mac\": \"vcorpen19\",\n        \"name\": \"19. Madrid\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 11,\n            \"REJECTED\": 0\n        }\n    },\n    {\n        \"id\": 9396,\n        \"key\": \"vcorpen20\",\n        \"mac\": \"vcorpen20\",\n        \"name\": \"20. Marseille\",\n        \"type\": \"VIRTUAL\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"datapoint_count\": {\n            \"PENDING\": 0,\n            \"ACCEPTED\": 16,\n            \"REJECTED\": 0\n        }\n    }\n]"}],"_postman_id":"e233bda4-388a-4d33-a4ae-971c6e99c31b"},{"name":"List all datasource types","id":"c6dc7cb2-60ff-4c41-8586-e6e9e18bf718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/types","description":"<p>Retrieves a list of datasources linked to the implicit account referenced by the token</p>\n","urlObject":{"path":["datasources","types"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"f2f6adb6-5af6-44f8-b790-8fc12f5a39c7","name":"List all datasources types","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 22 Jul 2024 11:26:51 GMT"},{"key":"Content-Length","value":"573"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"type\": \"GENERICFTP\",\n        \"market_app\": null,\n        \"name\": \"GENERICFTP\"\n    },\n    {\n        \"type\": \"IECMETER\",\n        \"market_app\": null,\n        \"name\": \"IECMETER\"\n    },\n    {\n        \"type\": \"MULTICOL_EMAIL\",\n        \"market_app\": null,\n        \"name\": \"MULTICOL_EMAIL\"\n    },\n    {\n        \"type\": \"WEATHER\",\n        \"market_app\": null,\n        \"name\": \"WEATHER\"\n    },\n    {\n        \"type\": \"VIRTUAL\",\n        \"market_app\": 658,\n        \"name\": \"Enedis\"\n    },\n    {\n        \"type\": \"SIGFOX\",\n        \"market_app\": null,\n        \"name\": \"SIGFOX\"\n    },\n    {\n        \"type\": \"DATADIS\",\n        \"market_app\": null,\n        \"name\": \"DATADIS\"\n    },\n    {\n        \"type\": \"GWEATHER\",\n        \"market_app\": null,\n        \"name\": \"GWEATHER\"\n    },\n    {\n        \"type\": \"GENERIC_EMAIL\",\n        \"market_app\": null,\n        \"name\": \"GENERIC_EMAIL\"\n    },\n    {\n        \"type\": \"VIRTUAL\",\n        \"market_app\": null,\n        \"name\": \"VIRTUAL\"\n    }\n]"}],"_postman_id":"c6dc7cb2-60ff-4c41-8586-e6e9e18bf718"},{"name":"Retrieve a Datasource","event":[{"listen":"prerequest","script":{"id":"eb24c9eb-ebc8-434b-b891-d6e0dc67678a","exec":[""],"type":"text/javascript"}}],"id":"eb8ccfbe-8fba-4c0f-938f-8d6e541f11ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/1233","description":"<p>Obtains a specific DataSource by its ID</p>\n","urlObject":{"path":["datasources","1233"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"9bf4103a-9170-44bf-a6d0-ec76168085a9","name":"Retrieve a Datasource","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/1233"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 08:15:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"134"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1233,\n    \"key\": \"vcorpen124\",\n    \"mac\": \"vcorpen124\",\n    \"name\": \"01. London\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"Europe/Madrid\",\n    \"type\": \"VIRTUAL\"\n}"}],"_postman_id":"eb8ccfbe-8fba-4c0f-938f-8d6e541f11ed"},{"name":"Create a Virtual Datasource","event":[{"listen":"prerequest","script":{"id":"c3167f0b-57a7-4f35-88ff-9ae746416e99","exec":[""],"type":"text/javascript"}}],"id":"75913267-89ad-422f-bce2-fbf606353196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"ESB Basement Counters\",\n    \"key\": \"000000db0fs\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\",\n    \"status\": \"CONNECTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources","description":"<p>Creates a DataSource linked to the implicit account referenced by the token. A DataSource allows the App to insert realt-time and/or historical measurements in DEXCell Energy Manager. Only 'VIRTUAL' types of DataSources can be created via the API. A DataSource has a unique identifier, the \"key\" attribute, which needs to be unique accross all DEXCell accounts. When trying to create a DataSource with an already existing \"key\", the system will return a 403.</p>\n","urlObject":{"path":["datasources"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"7aba839a-fcb3-44f0-9a45-7f5b75ac360c","name":"Create a Virtual Datasource","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"ESB Basement Counters\",\n    \"key\": \"000000db0fs\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\",\n    \"status\": \"CONNECTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:02:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 39142,\n    \"key\": \"000000db0fs\",\n    \"mac\": \"000000db0fs\",\n    \"name\": \"ESB Basement Counters\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\"\n}"},{"id":"b36bcb40-fbb1-4372-8f9b-9d473eaa1f4d","name":"Fail if provided key already exist","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"ESB Basement Counters\",\n    \"key\": \"000000db0fs\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\",\n    \"status\": \"CONNECTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:06:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"95"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E403\",\n    \"message\": \"The key provided already exist in Dexcell, try another\",\n    \"status\": 403\n}"}],"_postman_id":"75913267-89ad-422f-bce2-fbf606353196"},{"name":"Update a Virtual Datasource","event":[{"listen":"prerequest","script":{"id":"99b38ed6-15d0-4e2c-8509-4e661d05c902","exec":[""],"type":"text/javascript"}}],"id":"ea297542-8f97-4a7b-b27e-6416e20def3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 39146457567567,\n    \"key\": \"AAA000000db0fs\",\n    \"name\": \"ESB Basement Counters\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources/39146457567567","description":"<p>Updates a specific DataSource. This call will only succeed when updating a datasource that has been created with the same token. For security reasons, it is not allowed to modify DataSources created by other API tokens nor created by DEXCell's user interface.</p>\n","urlObject":{"path":["datasources","39146457567567"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"1e7b22e6-86a6-4057-a591-d556abac434a","name":"Update a Virtual Datasource","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 39146,\n    \"key\": \"AAA000000db0fs\",\n    \"name\": \"ESB Basement Counters\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources/39146"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:17:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"157"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 39146,\n    \"key\": \"AAA000000db0fs\",\n    \"mac\": \"AAA000000db0fs\",\n    \"name\": \"ESB Basement Counters\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\"\n}"},{"id":"4054fbc3-2c36-4541-95be-196988b7b210","name":"Update a non-existing Virtual Datasource","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 39146457567567,\n    \"key\": \"AAA000000db0fs\",\n    \"name\": \"ESB Basement Counters\",\n    \"status\": \"CONNECTED\",\n    \"timezone\": \"America/New_York\",\n    \"type\": \"VIRTUAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/datasources/39146457567567"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:18:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E403-03\",\n    \"message\": \"Entity not found\",\n    \"status\": 403\n}"}],"_postman_id":"ea297542-8f97-4a7b-b27e-6416e20def3d"},{"name":"Delete a Virtual Datasource","event":[{"listen":"prerequest","script":{"id":"ae3c7b6d-be64-4a48-862e-05f428bcf0ad","exec":[""],"type":"text/javascript"}}],"id":"6c66efc8-35c9-4e36-9c7d-10467205223f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/datasources/39144","description":"<p>Deletes an specific DataSource. This call will only succeed when updating a datasource that has been created with the same token. For security reasons, it is not allowed to delete DataSources created by other API tokens nor created by DEXCell's user interface.</p>\n","urlObject":{"path":["datasources","39144"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"e9c68001-cae1-4752-ba1a-03dfeb5dcfec","name":"Delete a Virtual Datasource","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/datasources/39144"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:09:03 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6c66efc8-35c9-4e36-9c7d-10467205223f"},{"name":"List all Virtual Datasources created with this token","event":[{"listen":"prerequest","script":{"id":"df2205bd-f4d0-4d89-bbe1-f14e1160219c","exec":[""],"type":"text/javascript"}}],"id":"b968f289-fcb4-41bb-9f8b-6171ff54357d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/owned-by-my-app?start=0&limit=4","description":"<p>Obtains the list of DataSources that were created by the App related to the token that is being currently used. \nThese are the only DataSources that can be updated or deleted using the current authentication token.</p>\n","urlObject":{"path":["datasources","owned-by-my-app"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer; Pagination start. Default 0.</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20.</p>\n","type":"text/plain"},"key":"limit","value":"4"}],"variable":[]}},"response":[{"id":"2c0bb674-8e7b-49c1-b7c0-f7c7a59bc676","name":"List all Virtual Datasources created with this token","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources/owned-by-my-app?start=0&limit=4","host":["{{api_v3.host}}"],"path":["datasources","owned-by-my-app"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"4","description":"Integer; Pagination end. Default 20."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 08:57:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"425"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1234,\n        \"key\": \"C54WlT9SMNVBEs5BN7Fj\",\n        \"mac\": \"C54WlT9SMNVBEs5BN7Fj\",\n        \"name\": \"02. Luxembourg\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9379,\n        \"key\": \"3Y0yjBU5ZzFYt54aSpO4\",\n        \"mac\": \"3Y0yjBU5ZzFYt54aSpO4\",\n        \"name\": \"03. Brussels\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 34029,\n        \"key\": \"genericftp-bV8asf5uFRuXOrStw7EZ\",\n        \"mac\": \"genericftp-bV8asf5uFRuXOrStw7EZ\",\n        \"name\": \"04. Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"type\": \"GENERICFTP\"\n    }\n]"}],"_postman_id":"b968f289-fcb4-41bb-9f8b-6171ff54357d"},{"name":"Retrieve the Authentication Token to insert Readings to a Datasource","event":[{"listen":"prerequest","script":{"id":"9fe3fd87-c6ce-41fd-8f38-c915d074c9d7","exec":[""],"type":"text/javascript"}}],"id":"18c8716c-e3fe-4d09-82a9-ebd4c17096cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/1233/token","description":"<p>Obtain the token necessary to insert measurements using IS3 API on behalf of this data source. \nThis API Endpoint will only return a 200 response for data sources that were created with the same API token being used for this call.</p>\n","urlObject":{"path":["datasources","1233","token"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"8a066b41-249d-4dbc-a254-6ae7c47762de","name":"Retrieve the Authentication Token to insert Readings to a Datasource","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/1233/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 08:03:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"32"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"q5I3eY1vhynRo1aMfS4O\"\n}"}],"_postman_id":"18c8716c-e3fe-4d09-82a9-ebd4c17096cb"},{"name":"List all Datasources that have devices with the same local id","event":[{"listen":"prerequest","script":{"id":"df2205bd-f4d0-4d89-bbe1-f14e1160219c","exec":[""],"type":"text/javascript"}}],"id":"de46754c-8dcc-466b-8a19-684e681083ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/datasources/lookup?localId=1","description":"<p>Obtains the list of DataSources that have devices with the given local id (Not unique). This local id is used to identify a device by data insertion API. This id corresponds to Key field in the Gateway Settings (Device tab) of DEXMA plaform.</p>\n","urlObject":{"path":["datasources","lookup"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer. device id used by de data insertion API to identify a device.</p>\n","type":"text/plain"},"key":"localId","value":"1"}],"variable":[]}},"response":[{"id":"cde5d568-1628-4ddf-aaa3-7337581c2eb0","name":"List all Datasources that have devices with the same local id","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/datasources/lookup?localId=1","host":["{{api_v3.host}}"],"path":["datasources","lookup"],"query":[{"key":"localId","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 09:51:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3318"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"key\": \"U1t5hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1t5hyW6Zv5wvIRTsfFy\",\n        \"name\": \"01. London\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"14c3e7cd24adbb6b2cb5\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 1234,\n        \"key\": \"U1t6hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1t6hyW6Zv5wvIRTsfFy\",\n        \"name\": \"02. Luxembourg\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"a80b636a7c35256d0427\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9379,\n        \"key\": \"U1t7hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1t7hyW6Zv5wvIRTsfFy\",\n        \"name\": \"03. Brussels\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"b1e4db23279c505dca44\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9381,\n        \"key\": \"U1t8hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1t8hyW6Zv5wvIRTsfFy\",\n        \"name\": \"05. Hamilton\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"47ecf597a935838929eb\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9382,\n        \"key\": \"U1t9hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1t9hyW6Zv5wvIRTsfFy\",\n        \"name\": \"06. Toronto Building\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"9faf845632a4b1f1e600\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9383,\n        \"key\": \"U110hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U110hyW6Zv5wvIRTsfFy\",\n        \"name\": \"07. Bristol\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"76f4e0470de0254a6c71\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9384,\n        \"key\": \"U111hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U111hyW6Zv5wvIRTsfFy\",\n        \"name\": \"08. Du\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"0c0a3c6c9be9216f2cc9\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9385,\n        \"key\": \"U112hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U112hyW6Zv5wvIRTsfFy\",\n        \"name\": \"09. Munich\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"816ce527e094b74609ec\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9386,\n        \"key\": \"U113hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U113hyW6Zv5wvIRTsfFy\",\n        \"name\": \"10. Barcelona\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"4a0718ffa8f5fa291ab8\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9387,\n        \"key\": \"U114hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U114hyW6Zv5wvIRTsfFy\",\n        \"name\": \"11. Paris\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"ee6ff75650c59871d96a\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9388,\n        \"key\": \"U115hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U115hyW6Zv5wvIRTsfFy\",\n        \"name\": \"12. Milan \",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"62929b794a481ecc148a\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9389,\n        \"key\": \"U116hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U116hyW6Zv5wvIRTsfFy\",\n        \"name\": \"13. Lisbon\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"2c50a0c0e959d201841b\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9390,\n        \"key\": \"U117hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U117hyW6Zv5wvIRTsfFy\",\n        \"name\": \"14. Miami\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"13fb3204b241473b367f\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9391,\n        \"key\": \"U118hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U118hyW6Zv5wvIRTsfFy\",\n        \"name\": \"15. Montreal\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"9c73dcde48b14167443b\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9392,\n        \"key\": \"U119hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U119hyW6Zv5wvIRTsfFy\",\n        \"name\": \"16. Boston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"8350c880f97f5effef96\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9393,\n        \"key\": \"U120hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U120hyW6Zv5wvIRTsfFy\",\n        \"name\": \"17. Houston\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"99f349a6084d67ff6337\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9394,\n        \"key\": \"U1121hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1121hyW6Zv5wvIRTsfFy\",\n        \"name\": \"18. Berlin\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"b0be193fd03193f440b6\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9395,\n        \"key\": \"U1122hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1122hyW6Zv5wvIRTsfFy\",\n        \"name\": \"19. Madrid\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"af6f0b1a6cd7c6e26c66\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9396,\n        \"key\": \"U1123hyW6Zv5wvIRTsfFy\",\n        \"mac\": \"U1123hyW6Zv5wvIRTsfFy\",\n        \"name\": \"20. Philadelphia\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"69a36c4b8bd28adaadd1\",\n        \"type\": \"VIRTUAL\"\n    },\n    {\n        \"id\": 9507,\n        \"key\": \"occupancy-corporate\",\n        \"mac\": \"occupancy-corporate\",\n        \"name\": \"Occupancy Data\",\n        \"status\": \"CONNECTED\",\n        \"timezone\": \"Europe/Madrid\",\n        \"token\": \"bb821732802849b47c01\",\n        \"type\": \"VIRTUAL\"\n    }\n]"}],"_postman_id":"de46754c-8dcc-466b-8a19-684e681083ec"}],"id":"38546aa4-c026-405d-a493-0b53845951c7","description":"<p>A DataSource is usually (but not always) a physical hardware that acts as a gateway to communicate local meters or measurement devices with an online platform such as DEXCell Energy Manager. A DataSource can forward measurements of one or more devices to DEXCell.\n All DataSources are available for any API App which requires READ Access to DataSources, however even if an App requires WRITE Access to DataSources, it will only be able to create, update or delete DataSources created by itself.</p>\n","_postman_id":"38546aa4-c026-405d-a493-0b53845951c7"},{"name":"Devices","item":[{"name":"Datapoints","item":[{"name":"List all Datapoints","event":[{"listen":"prerequest","script":{"id":"005ad0a2-34a4-4a88-b6c9-8f6f71500196","exec":[""],"type":"text/javascript"}}],"id":"7bebe06e-84b1-48e4-bc7e-7820a9f1eb39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"","value":"","type":"text"}],"url":"{{api_v3.host}}/devices/984579/datapoints?start=0&limit=500&status=ACCEPTED&status=PENDING","description":"<p>Retrieves a list of datasources linked to the implicit account referenced by the token</p>\n","urlObject":{"path":["devices","984579","datapoints"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer; Pagination start. Default 0.</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20.</p>\n","type":"text/plain"},"key":"limit","value":"500"},{"description":{"content":"<p>List of status to show. By default shows datapoints in any status. Status allowed: ACCEPTED, PENDING, REJECTED</p>\n","type":"text/plain"},"key":"status","value":"ACCEPTED"},{"key":"status","value":"PENDING"},{"disabled":true,"key":"status","value":"REJECTED"}],"variable":[]}},"response":[{"id":"a26c6563-ec58-471a-a09e-daa1522f5a32","name":"List accepted and pending Datapoints","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text"}],"url":{"raw":"{{api_v3.host}}/devices/984579/datapoints?start=0&limit=500&status=ACCEPTED&status=PENDING","host":["{{api_v3.host}}"],"path":["devices","984579","datapoints"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"500","description":"Integer; Pagination end. Default 20."},{"key":"status","value":"ACCEPTED","description":"List of status to show. By default shows datapoints in any status. Status allowed: ACCEPTED, PENDING, REJECTED"},{"key":"status","value":"PENDING"},{"key":"status","value":"REJECTED","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 23 Dec 2020 11:10:48 GMT"},{"key":"Content-Length","value":"249"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 301,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 402,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 305,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 421,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 307,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 302,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 304,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 404,\n        \"status\": \"ACCEPTED\"\n    }\n]"},{"id":"bad836c8-3b1e-4424-87ce-7246a96b6d2c","name":"List all Datapoints","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text"}],"url":{"raw":"{{api_v3.host}}/devices/984579/datapoints?start=0&limit=500","host":["{{api_v3.host}}"],"path":["devices","984579","datapoints"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"500","description":"Integer; Pagination end. Default 20."},{"key":"status","value":"ACCEPTED","description":"List of status to show. By default shows datapoints in any status. Status allowed: ACCEPTED, PENDING, REJECTED","disabled":true},{"key":"status","value":"PENDING","disabled":true},{"key":"status","value":"REJECTED","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 23 Dec 2020 10:45:50 GMT"},{"key":"Content-Length","value":"373"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 301,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 402,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 305,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 421,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 307,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 403,\n        \"status\": \"REJECTED\"\n    },\n    {\n        \"id\": 302,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 422,\n        \"status\": \"REJECTED\"\n    },\n    {\n        \"id\": 304,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 404,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 306,\n        \"status\": \"REJECTED\"\n    },\n    {\n        \"id\": 303,\n        \"status\": \"REJECTED\"\n    }\n]"},{"id":"c4d441cf-f2a8-4415-96ad-d6181f920bc9","name":"List accepted Datapoints","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text"}],"url":{"raw":"{{api_v3.host}}/devices/984579/datapoints?start=0&limit=500&status=ACCEPTED","host":["{{api_v3.host}}"],"path":["devices","984579","datapoints"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"500","description":"Integer; Pagination end. Default 20."},{"key":"status","value":"ACCEPTED","description":"List of status to show. By default shows datapoints in any status. Status allowed: ACCEPTED, PENDING, REJECTED"},{"key":"status","value":"PENDING","disabled":true},{"key":"status","value":"REJECTED","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 23 Dec 2020 10:45:29 GMT"},{"key":"Content-Length","value":"249"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 301,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 402,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 305,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 421,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 307,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 302,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 304,\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"id\": 404,\n        \"status\": \"ACCEPTED\"\n    }\n]"}],"_postman_id":"7bebe06e-84b1-48e4-bc7e-7820a9f1eb39"}],"id":"17f32654-4538-4c6a-abd1-61c750fb33f4","_postman_id":"17f32654-4538-4c6a-abd1-61c750fb33f4","description":""},{"name":"List all Devices","id":"ac14896e-5e99-4ced-925d-91cf9cf5072d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-dexcell-session","value":"","description":"<p>This header filters the devices returned by this endpoint, Given this session ID the devices shown meets: </p>\n<ul>\n<li>Devices assigned location is in the same level or below the current location </li>\n<li>The locations where that devices are assigned the current user has access to them </li>\n<li>The locations where that devices are assigned has the tags selected in current session</li>\n</ul>\n","type":"text"}],"url":"{{api_v3.host}}/devices?start=0&limit=3&datasource_id=9379&location_id=193942&local_id=01. Stuttgart Building-Bla tank&param_key=EACTIVE&param_id=302&name=01. Stuttgart Building-Bla tank&status=ACCEPTED","description":"<p>Retrieves a list of devices linked to the implicit account referenced by the token</p>\n","urlObject":{"path":["devices"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer; Pagination start. Default 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20</p>\n","type":"text/plain"},"key":"limit","value":"3"},{"description":{"content":"<p>Filter by datasource ID</p>\n","type":"text/plain"},"key":"datasource_id","value":"9379"},{"description":{"content":"<p>Filter by location ID</p>\n","type":"text/plain"},"key":"location_id","value":"193942"},{"description":{"content":"<p>Device id used by de data insertion API to identify a device.</p>\n","type":"text/plain"},"key":"local_id","value":"01. Stuttgart Building-Bla tank"},{"description":{"content":"<p>Filter by devices that have this parameter key. See /parameters</p>\n","type":"text/plain"},"key":"param_key","value":"EACTIVE"},{"description":{"content":"<p>Filter by devices that have this parameter id. See /parameters</p>\n","type":"text/plain"},"key":"param_id","value":"302"},{"description":{"content":"<p>Filters by the name of the element</p>\n","type":"text/plain"},"key":"name","value":"01. Stuttgart Building-Bla tank"},{"description":{"content":"<p>ACCEPTED/PENDING</p>\n","type":"text/plain"},"key":"status","value":"ACCEPTED"}],"variable":[]}},"response":[{"id":"2a24b73f-08ea-4735-a86f-20d1703bb158","name":"List all Devices by param_key and limit 3","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/devices?limit=3&param_key=EACTIVE","host":["{{api_v3.host}}"],"path":["devices"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"3","description":"Integer; Pagination end. Default 20"},{"key":"datasource_id","value":"9379","description":"Filter by datasource ID","disabled":true},{"key":"location_id","value":"193942","description":"Filter by location ID","disabled":true},{"key":"localId","value":"01. Stuttgart Building-Bla tank","description":"Device id used by de data insertion API to identify a device.","type":"text","disabled":true},{"key":"param_key","value":"EACTIVE","description":"Filter by devices that have this parameter key. See /parameters"},{"key":"param_id","value":"302","description":"Filter by devices that have this parameter id. See /parameters","disabled":true},{"key":"name","value":"01. Stuttgart Building-Bla tank","description":"Filters by the name of the element","disabled":true},{"key":"status","value":"ACCEPTED","description":"ACCEPTED/PENDING","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:21:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"587"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"datasource\": {\n            \"id\": 1233\n        },\n        \"description\": \"\",\n        \"id\": 435075,\n        \"local_id\": \"10102234\",\n        \"location\": {\n            \"id\": 193942\n        },\n        \"name\": \"10102234\",\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"datasource\": {\n            \"id\": 1234\n        },\n        \"description\": \"Socomec Diris, 3-phase meter, split core\\n\\nComments: \\n- This meter has been installed in the A2-4E board.\\n- Before the installation we had to reconfigure the L12 and L34 loads \",\n        \"id\": 12005,\n        \"local_id\": \"1\",\n        \"location\": {\n            \"id\": 97274\n        },\n        \"name\": \"1st Floor\",\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"datasource\": {\n            \"id\": 1234\n        },\n        \"description\": \"\",\n        \"id\": 12006,\n        \"local_id\": \"2\",\n        \"location\": {\n            \"id\": 97274\n        },\n        \"name\": \"2nd Floor\",\n        \"status\": \"ACCEPTED\"\n    }\n]"},{"id":"bf2093d0-df1b-41af-bbeb-fad2ee973e9e","name":"List all Devices by name and status ACCEPTED","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/devices?name=01. Stuttgart Building-Bla tank&status=ACCEPTED","host":["{{api_v3.host}}"],"path":["devices"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"500","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"datasource_id","value":"9379","description":"Filter by datasource ID","disabled":true},{"key":"location_id","value":"193942","description":"Filter by location ID","disabled":true},{"key":"localId","value":"01. Stuttgart Building-Bla tank","description":"Device id used by de data insertion API to identify a device.","type":"text","disabled":true},{"key":"param_key","value":"EACTIVE","description":"Filter by devices that have this parameter key. See /parameters","disabled":true},{"key":"param_id","value":"302","description":"Filter by devices that have this parameter id. See /parameters","disabled":true},{"key":"name","value":"01. Stuttgart Building-Bla tank","description":"Filters by the name of the element"},{"key":"status","value":"ACCEPTED","description":"ACCEPTED/PENDING"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:20:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"179"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"datasource\": {\n            \"id\": 9379\n        },\n        \"description\": \"\",\n        \"id\": 917087,\n        \"local_id\": \"01. Stuttgart Building-Bla tank\",\n        \"location\": null,\n        \"name\": \"01. Stuttgart Building-Bla tank\",\n        \"status\": \"ACCEPTED\"\n    }\n]"},{"id":"fe4bbc45-cb0d-4370-ab44-b444a3c478d8","name":"List all Devices by locationId and paramId","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/devices?location_id=193942&param_id=302","host":["{{api_v3.host}}"],"path":["devices"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"3","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"datasource_id","value":"9379","description":"Filter by datasource ID","disabled":true},{"key":"location_id","value":"193942","description":"Filter by location ID"},{"key":"localId","value":"01. Stuttgart Building-Bla tank","description":"Device id used by de data insertion API to identify a device.","type":"text","disabled":true},{"key":"param_key","value":"EACTIVE","description":"Filter by devices that have this parameter key. See /parameters","disabled":true},{"key":"param_id","value":"302","description":"Filter by devices that have this parameter id. See /parameters"},{"key":"name","value":"01. Stuttgart Building-Bla tank","description":"Filters by the name of the element","disabled":true},{"key":"status","value":"ACCEPTED","description":"ACCEPTED/PENDING","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:22:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"279"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"datasource\": {\n            \"id\": 1233\n        },\n        \"description\": \" \",\n        \"id\": 12002,\n        \"local_id\": \"3\",\n        \"location\": {\n            \"id\": 193942\n        },\n        \"name\": \"Outdoor Temp.\",\n        \"status\": \"ACCEPTED\"\n    },\n    {\n        \"datasource\": {\n            \"id\": 1233\n        },\n        \"description\": \" \",\n        \"id\": 12003,\n        \"local_id\": \"4\",\n        \"location\": {\n            \"id\": 193942\n        },\n        \"name\": \"Outdoor Temp.\",\n        \"status\": \"ACCEPTED\"\n    }\n]"}],"_postman_id":"ac14896e-5e99-4ced-925d-91cf9cf5072d"},{"name":"Retrieve a Device","id":"9b2e0c7b-80a9-4e6a-97e5-89ed910b5dae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/devices/75994","description":"<p>Retrieves a specific Device</p>\n","urlObject":{"path":["devices","75994"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"2caaaab0-0069-4dcc-9389-e4277c3dd8bf","name":"Retrieve a Device","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/devices/75994"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:24:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"141"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"datasource\": {\n        \"id\": 9382\n    },\n    \"description\": \" \",\n    \"id\": 75994,\n    \"local_id\": \"1\",\n    \"location\": {\n        \"id\": 18195\n    },\n    \"name\": \"Main Load Toronto\",\n    \"status\": \"ACCEPTED\"\n}"},{"id":"f9030494-0fb5-48b0-a1aa-935307bb6e49","name":"Retrieve a non-existing Device","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/devices/759945685685678"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:24:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E403-03\",\n    \"message\": \"Entity not found\",\n    \"status\": 403\n}"}],"_postman_id":"9b2e0c7b-80a9-4e6a-97e5-89ed910b5dae"},{"name":"Create a Device","id":"ee2c7e2e-8c0e-4c9d-a97d-c78dc62ff6b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Device name, easy to understand for the user\",\n    \"local_id\": \"internal_logical_ID\",\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"description\": \"Short description of this database if apply\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices","description":"<p>Creates a new device related to a specified gateway. Devices are created with status 'PENDING' by default.</p>\n","urlObject":{"path":["devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"982d8e8c-aa0b-4aa4-95b9-8bd7f44dc8f1","name":"Create a Device","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Device name, easy to understand for the user\",\n    \"local_id\": \"internal_logical_ID\",\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"description\": \"Short description of this database if apply\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:24:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"220"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"description\": \"Short description of this database if apply\",\n    \"id\": 948071,\n    \"local_id\": \"internal_logical_ID\",\n    \"location\": null,\n    \"name\": \"Device name, easy to understand for the user\",\n    \"status\": \"PENDING\"\n}"}],"_postman_id":"ee2c7e2e-8c0e-4c9d-a97d-c78dc62ff6b0"},{"name":"Accept device","id":"da522001-7ad9-4b0a-8ea9-55988ca2a74c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"status\": \"ACCEPTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices/{id}","description":"<p>Creates a new device related to a specified gateway. Devices are created with status 'PENDING' by default.</p>\n","urlObject":{"path":["devices","{id}"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"7b63926b-d8a1-4c9d-b3d2-c30b117e9bcb","name":"Accept device","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"status\": \"ACCEPTED\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices/{id}"},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"da522001-7ad9-4b0a-8ea9-55988ca2a74c"},{"name":"Update a Device","id":"f15cde58-3677-4349-9b46-6e5de7dc7fb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Device name, easy to understand for the user 1\",\n    \"local_id\": \"internal_logical_ID 1\",\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"status\": \"PENDING\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices/948072","description":"<p>Modifies an existing device.</p>\n","urlObject":{"path":["devices","948072"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"03fec8ac-f900-4c46-9b37-8dc031f35cc9","name":"Update a Device","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Device name, easy to understand for the user 1\",\n    \"local_id\": \"internal_logical_ID 1\",\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"status\": \"PENDING\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/devices/948072"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:32:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"224"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"datasource\": {\n        \"id\": 1233\n    },\n    \"description\": \"Short description of this database if apply\",\n    \"id\": 948072,\n    \"local_id\": \"internal_logical_ID 1\",\n    \"location\": null,\n    \"name\": \"Device name, easy to understand for the user 1\",\n    \"status\": \"PENDING\"\n}"}],"_postman_id":"f15cde58-3677-4349-9b46-6e5de7dc7fb2"},{"name":"Delete a Device","id":"d26e02fd-3b00-402c-b58f-34c6dc77ef66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/devices/948070","description":"<p>Deletes an specific device.</p>\n","urlObject":{"path":["devices","948070"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a088af50-fabd-41ae-9491-31f9f23012f8","name":"Delete a Device","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/devices/948070"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 10:21:29 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d26e02fd-3b00-402c-b58f-34c6dc77ef66"}],"id":"5f033295-82d5-4ebe-8138-e989edbde1c3","description":"<p>A device (or meter) can be the representation of a physical meter/sensor; or of a calculated virtual device, resulting from the combination of several devices. Each device or meter will store the variables that are being monitored and introduced into the platform and will be directly related to an specific location.</p>\n","_postman_id":"5f033295-82d5-4ebe-8138-e989edbde1c3"},{"name":"Measure & Verification","item":[{"name":"Groups","item":[{"name":"List all Groups","id":"e9ce64f5-b782-4ceb-b604-c195ecf8fd9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/groups?name=testing&key=key&resolution=HH&from=2016-05-01&to=2016-05-31&start=0&limit=20&embed=PROJECTS","urlObject":{"path":["mv","groups"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>String. </p>\n","type":"text/plain"},"key":"name","value":"testing"},{"description":{"content":"<p>String.</p>\n","type":"text/plain"},"key":"key","value":"key"},{"description":{"content":"<p>Enum: HH, H, D, W, M. </p>\n","type":"text/plain"},"key":"resolution","value":"HH"},{"description":{"content":"<p>Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.</p>\n","type":"text/plain"},"key":"from","value":"2016-05-01"},{"description":{"content":"<p>Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.</p>\n","type":"text/plain"},"key":"to","value":"2016-05-31"},{"description":{"content":"<p>Integer; Pagination start. Default 0.</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20.</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"description":{"content":"<p>Enum: PROJECTS, PROJECTS_INCLUDING_REPORTING_UNITS</p>\n","type":"text/plain"},"key":"embed","value":"PROJECTS"}],"variable":[]}},"response":[{"id":"58ba331b-86a3-4909-aaae-5f9b883ff1c8","name":"Fetch groups that contain 'testing' in the name.","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups?name=testing","host":["{{api_v3.host}}"],"path":["mv","groups"],"query":[{"key":"name","value":"testing","description":"String. "},{"key":"key","value":null,"disabled":true},{"key":"resolution","value":null,"disabled":true},{"key":"from","value":null,"disabled":true},{"key":"to","value":null,"disabled":true},{"key":"start","value":null,"disabled":true},{"key":"limit","value":null,"disabled":true},{"key":"order","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 19 May 2020 11:27:21 GMT"},{"key":"Content-Length","value":"1191"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"demonstrative_period\": {\n      \"from\": \"2020-01-01\",\n      \"to\": \"2020-12-31\"\n    },\n    \"id\": 1,\n    \"key\": \"MVG-123456\",\n    \"name\": \"first group\",\n    \"projects\": [\n      {\n        \"id\": 123\n      },\n      {\n        \"id\": 666\n      }\n    ],\n    \"resolution\": \"H\",\n    \"targets\": [\n      {\n        \"default\": true,\n        \"reporting_units\": {\n          \"source\": \"ENERGY_SOURCE\",\n          \"type\": \"ELECTRICITY\",\n          \"units\": \"kWh\"\n        },\n        \"value\": 2\n      }\n    ]\n  },\n  {\n    \"demonstrative_period\": {\n      \"from\": \"2020-01-01\",\n      \"to\": \"2020-12-31\"\n    },\n    \"id\": 2,\n    \"key\": \"MVG-123457\",\n    \"name\": \"Group with three projects\",\n    \"projects\": [\n      {\n        \"id\": 123\n      },\n      {\n        \"id\": 666\n      },\n      {\n        \"id\": 231\n      }\n    ],\n    \"resolution\": \"H\",\n    \"targets\": [\n      {\n        \"default\": true,\n        \"reporting_units\": {\n          \"source\": \"ENERGY_SOURCE\",\n          \"type\": \"FINAL_ENERGY\",\n          \"units\": \"MWh\"\n        },\n        \"value\": 2\n      }\n    ]\n  },\n  {\n    \"demonstrative_period\": {\n      \"from\": \"2016-01-01\",\n      \"to\": \"2020-12-31\"\n    },\n    \"id\": 3,\n    \"key\": \"MVG-123459\",\n    \"name\": \"Group long monitoring\",\n    \"projects\": [\n      {\n        \"id\": 123\n      },\n      {\n        \"id\": 321\n      }\n    ],\n    \"resolution\": \"D\",\n    \"targets\": [\n      {\n        \"default\": true,\n        \"reporting_units\": {\n          \"source\": \"ENERGY_SOURCE\",\n          \"type\": \"ELECTRICITY\",\n          \"units\": \"kWh\"\n        },\n        \"value\": 2.5\n      }\n    ]\n  },\n  {\n    \"demonstrative_period\": {\n      \"from\": \"2020-01-01\",\n      \"to\": \"2020-12-31\"\n    },\n    \"id\": 4,\n    \"key\": \"MVG-123416\",\n    \"name\": \"Group for monthly projects and large name to be self explained\",\n    \"projects\": [\n      {\n        \"id\": 123\n      },\n      {\n        \"id\": 666\n      }\n    ],\n    \"resolution\": \"M\",\n    \"targets\": [\n      {\n        \"default\": true,\n        \"reporting_units\": {\n          \"source\": \"ENERGY_SOURCE\",\n          \"type\": \"ELECTRICITY\",\n          \"units\": \"kWh\"\n        },\n        \"value\": 2.5\n      },\n      {\n        \"default\": false,\n        \"reporting_units\": {\n          \"source\": \"CONVERSION_FACTOR\",\n          \"type\": \"FINAL_ENERGY\",\n          \"units\": \"MWh\"\n        },\n        \"value\": 3\n      }\n    ]\n  }\n]"},{"id":"dcf39da9-909e-40b4-9750-aa0ba549ba5e","name":"Fetch groups that contains the name 'test'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups?name=test","host":["{{api_v3.host}}"],"path":["mv","groups"],"query":[{"key":"name","value":"test","description":"String. "},{"key":"key","value":"key","description":"String.","disabled":true},{"key":"resolution","value":"HH","description":"Enum: HH, H, D, W, M. ","disabled":true},{"key":"from","value":"2016-05-01","description":"Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.","disabled":true},{"key":"to","value":"2016-05-31","description":"Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.","disabled":true},{"key":"start","value":null,"description":"Integer; Pagination start. Default 0.","disabled":true},{"key":"limit","value":null,"description":"Integer; Pagination end. Default 20.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 09 Jun 2020 15:36:05 GMT"},{"key":"Content-Length","value":"1575"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"demonstrative_period\": {\n            \"from\": \"2020-01-01\",\n            \"to\": \"2020-12-31\"\n        },\n        \"id\": 10,\n        \"key\": \"MVG-c36b32\",\n        \"name\": \"Group All Elec Test\",\n        \"projects\": [\n            {\n                \"id\": 6156\n            },\n            {\n                \"id\": 686\n            }\n        ],\n        \"resolution\": \"M\",\n        \"targets\": [\n            {\n                \"default\": true,\n                \"reporting_units\": {\n                    \"source\": \"ENERGY_SOURCE\",\n                    \"type\": \"ELECTRICITY\",\n                    \"units\": \"kWh\"\n                },\n                \"value\": 10\n            }\n        ]\n    },\n    {\n        \"demonstrative_period\": {\n            \"from\": \"2020-06-01\",\n            \"to\": \"2020-07-31\"\n        },\n        \"id\": 3,\n        \"key\": \"MVG-6e08e5\",\n        \"name\": \"test\",\n        \"projects\": [\n            {\n                \"id\": 6046\n            },\n            {\n                \"id\": 6232\n            }\n        ],\n        \"resolution\": \"M\",\n        \"targets\": [\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"FINAL_ENERGY\",\n                    \"units\": \"MWh\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": true,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"PRIMARY_ENERGY\",\n                    \"units\": \"MWh\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"CARBON_EQUIVALENT\",\n                    \"units\": \"tCO2e\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"ENERGY_SOURCE\",\n                    \"type\": \"ELECTRICITY\",\n                    \"units\": \"kWh\"\n                },\n                \"value\": 12\n            }\n        ]\n    },\n    {\n        \"demonstrative_period\": {\n            \"from\": \"2020-06-01\",\n            \"to\": \"2020-07-31\"\n        },\n        \"id\": 4,\n        \"key\": \"MVG-b9f7f9\",\n        \"name\": \"test ac\",\n        \"projects\": [\n            {\n                \"id\": 6046\n            },\n            {\n                \"id\": 687\n            }\n        ],\n        \"resolution\": \"M\",\n        \"targets\": [\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"FINAL_ENERGY\",\n                    \"units\": \"MWh\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": true,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"PRIMARY_ENERGY\",\n                    \"units\": \"MWh\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"CARBON_EQUIVALENT\",\n                    \"units\": \"tCO2e\"\n                },\n                \"value\": 12\n            },\n            {\n                \"default\": false,\n                \"reporting_units\": {\n                    \"source\": \"ENERGY_SOURCE\",\n                    \"type\": \"ELECTRICITY\",\n                    \"units\": \"kWh\"\n                },\n                \"value\": 12\n            }\n        ]\n    }\n]"},{"id":"f4a6767e-fe36-47ba-9d3f-1ecfd020063f","name":"Fetch 2 groups with the projects that compose the group embeded.","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups?start=0&limit=2&embed=PROJECTS","host":["{{api_v3.host}}"],"path":["mv","groups"],"query":[{"key":"name","value":"testing","description":"String. ","disabled":true},{"key":"key","value":"key","description":"String.","disabled":true},{"key":"resolution","value":"HH","description":"Enum: HH, H, D, W, M. ","disabled":true},{"key":"from","value":"2016-05-01","description":"Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.","disabled":true},{"key":"to","value":"2016-05-31","description":"Date.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive.","disabled":true},{"key":"start","value":"0","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"2","description":"Integer; Pagination end. Default 20."},{"key":"embed","value":"PROJECTS","description":"Enum: PROJECTS, PROJECTS_INCLUDING_REPORTING_UNITS"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 01 Jul 2020 15:10:44 GMT"},{"key":"Content-Length","value":"4070"}],"cookie":[],"responseTime":null,"body":"[{\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"id\":22,\"key\":\"my_project_client_code\",\"name\":\"Global prevented Carbon Emissions\",\"projects\":[{\"baseline_configuration\":{\"error\":6.0,\"formula\":\"713.864 -49.493 * CDD_498686 + 2.460 * Math.pow(TEM_490186, 2.0)\",\"non_routine_adjustments\":[],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"conditionals\":[{\"formula\":\"-360.758 -49.493 * CDD_498686 + 2.460 * Math.pow(TEM_490186, 2.0)\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"Default Season\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":498686},\"name\":\"CDD_498686\",\"parameter\":{\"id\":18021}},{\"device\":{\"id\":490186},\"name\":\"TEM_490186\",\"parameter\":{\"id\":30122}}]},\"conversion_factors\":[{\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\",\"value\":0.0099},{\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\",\"value\":0.0026},{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":3.5E-4}],\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"device\":{\"id\":75998},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6287,\"key\":\"ABC_75998_EACTIVE_D_20200612142625\",\"name\":\"HVAC revamping\",\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":10.0}},{\"baseline_configuration\":{\"error\":5.0,\"formula\":\"1800.3 + 24.45 * CDD - 32.33 * CDD*HDD\",\"non_routine_adjustments\":[],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"conditionals\":[{\"formula\":\"1318.2480995 - 343.0678374 + 23.7437317 * CDD - 32.3372285 * CDD*HDD\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"Default Season\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":498686},\"name\":\"HDD\",\"parameter\":{\"id\":18121}},{\"device\":{\"id\":498686},\"name\":\"CDD\",\"parameter\":{\"id\":18021}}]},\"conversion_factors\":[{\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\",\"value\":1.0},{\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\",\"value\":0.0025},{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":3.0E-4}],\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"device\":{\"id\":12005},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6156,\"key\":\"MVP-e02a55\",\"name\":\"2nd Floor - Retrofits\",\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":5.0}}],\"resolution\":\"M\",\"targets\":[{\"default\":false,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\"},\"value\":10.0},{\"default\":true,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\"},\"value\":5.0},{\"default\":false,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\"},\"value\":5.0},{\"default\":false,\"reporting_units\":{\"source\":\"ENERGY_SOURCE\",\"type\":\"ELECTRICITY\",\"units\":\"kWh\"},\"value\":10.0}]},{\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"id\":21,\"key\":\"MVG-ec49f9\",\"name\":\"Region Nord - Total Savings\",\"projects\":[{\"baseline_configuration\":{\"error\":5.0,\"formula\":\"1818.248 + 23.744 * CDD_498686 -32.337 * CDD_498686 * HDD_498686\",\"non_routine_adjustments\":[],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"conditionals\":[{\"formula\":\"975.180 + 23.744 * CDD_498686\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"Default Season\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":498686},\"name\":\"CDD_498686\",\"parameter\":{\"id\":18021}},{\"device\":{\"id\":498686},\"name\":\"HDD_498686\",\"parameter\":{\"id\":18121}}]},\"conversion_factors\":[],\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"device\":{\"id\":12005},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6258,\"key\":\"ABC_12005_EACTIVE_D_20200610132718\",\"name\":\"1st Floor - Retrofits\",\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":5.0}}],\"resolution\":\"D\",\"targets\":[{\"default\":true,\"reporting_units\":{\"source\":\"ENERGY_SOURCE\",\"type\":\"ELECTRICITY\",\"units\":\"kWh\"},\"value\":5.0}]}]"}],"_postman_id":"e9ce64f5-b782-4ceb-b604-c195ecf8fd9d"},{"name":"Retrieve a Group","id":"0a460a10-3ef5-4cc2-97e5-7f5c402baccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/groups/59?embed=PROJECTS_INCLUDING_REPORTING_UNITS","urlObject":{"path":["mv","groups","59"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Enum: PROJECTS, PROJECTS_INCLUDING_REPORTING_UNITS</p>\n","type":"text/plain"},"key":"embed","value":"PROJECTS_INCLUDING_REPORTING_UNITS"}],"variable":[]}},"response":[{"id":"eb52676b-73c0-40d3-9815-a3fbdc8be2e0","name":"Get a group with the projects with reporting units that compose the group","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups/22?embed=PROJECTS_INCLUDING_REPORTING_UNITS","host":["{{api_v3.host}}"],"path":["mv","groups","22"],"query":[{"key":"embed","value":"PROJECTS_INCLUDING_REPORTING_UNITS","description":"Enum: PROJECTS, PROJECTS_INCLUDING_REPORTING_UNITS"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 01 Jul 2020 15:13:52 GMT"},{"key":"Content-Length","value":"3439"}],"cookie":[],"responseTime":null,"body":"{\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"id\":22,\"key\":\"my_project_client_code\",\"name\":\"Global prevented Carbon Emissions\",\"projects\":[{\"baseline_configuration\":{\"error\":6.0,\"formula\":\"713.864 -49.493 * CDD_498686 + 2.460 * Math.pow(TEM_490186, 2.0)\",\"non_routine_adjustments\":[],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"conditionals\":[{\"formula\":\"-360.758 -49.493 * CDD_498686 + 2.460 * Math.pow(TEM_490186, 2.0)\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"Default Season\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":498686},\"name\":\"CDD_498686\",\"parameter\":{\"id\":18021}},{\"device\":{\"id\":490186},\"name\":\"TEM_490186\",\"parameter\":{\"id\":30122}}]},\"conversion_factors\":[{\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\",\"value\":0.0099},{\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\",\"value\":0.0026},{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":3.5E-4}],\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"device\":{\"id\":75998},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6287,\"key\":\"ABC_75998_EACTIVE_D_20200612142625\",\"name\":\"HVAC revamping\",\"reporting_units\":[{\"source\":\"CONVERSION_FACTOR\",\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\"},{\"source\":\"CONVERSION_FACTOR\",\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\"},{\"source\":\"CONVERSION_FACTOR\",\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\"},{\"source\":\"ENERGY_SOURCE\",\"type\":\"ELECTRICITY\",\"units\":\"kWh\"}],\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":10.0}},{\"baseline_configuration\":{\"error\":5.0,\"formula\":\"1800.3 + 24.45 * CDD - 32.33 * CDD*HDD\",\"non_routine_adjustments\":[],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"conditionals\":[{\"formula\":\"1318.2480995 - 343.0678374 + 23.7437317 * CDD - 32.3372285 * CDD*HDD\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"Default Season\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":498686},\"name\":\"HDD\",\"parameter\":{\"id\":18121}},{\"device\":{\"id\":498686},\"name\":\"CDD\",\"parameter\":{\"id\":18021}}]},\"conversion_factors\":[{\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\",\"value\":1.0},{\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\",\"value\":0.0025},{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":3.0E-4}],\"demonstrative_period\":{\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"},\"device\":{\"id\":12005},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6156,\"key\":\"MVP-e02a55\",\"name\":\"2nd Floor - Retrofits\",\"reporting_units\":[{\"source\":\"CONVERSION_FACTOR\",\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\"},{\"source\":\"CONVERSION_FACTOR\",\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\"},{\"source\":\"CONVERSION_FACTOR\",\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\"},{\"source\":\"ENERGY_SOURCE\",\"type\":\"ELECTRICITY\",\"units\":\"kWh\"}],\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":5.0}}],\"resolution\":\"M\",\"targets\":[{\"default\":false,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"FINAL_ENERGY\",\"units\":\"MWh\"},\"value\":10.0},{\"default\":true,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"PRIMARY_ENERGY\",\"units\":\"MWh\"},\"value\":5.0},{\"default\":false,\"reporting_units\":{\"source\":\"CONVERSION_FACTOR\",\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\"},\"value\":5.0},{\"default\":false,\"reporting_units\":{\"source\":\"ENERGY_SOURCE\",\"type\":\"ELECTRICITY\",\"units\":\"kWh\"},\"value\":10.0}]}"},{"id":"f38f0566-9911-41fb-9f2b-80cb43142dbd","name":"Get a group","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups/59?embed=PROJECTS_INCLUDING_REPORTING_UNITS","host":["{{api_v3.host}}"],"path":["mv","groups","59"],"query":[{"key":"embed","value":"PROJECTS_INCLUDING_REPORTING_UNITS","description":"Enum: PROJECTS, PROJECTS_INCLUDING_REPORTING_UNITS"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 19 Aug 2020 11:11:33 GMT"},{"key":"Content-Length","value":"1198"}],"cookie":[],"responseTime":null,"body":"{\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2021-12-31\"\n    },\n    \"id\": 59,\n    \"key\": \"MVG-df8e65\",\n    \"name\": \"name of the group\",\n    \"projects\": [\n        {\n            \"baseline_configuration\": {\n                \"aggregation\": \"AVERAGE\",\n                \"error\": 6.15,\n                \"from\": \"2014-06-01\",\n                \"time_frame\": \"W\",\n                \"to\": \"2014-12-31\",\n                \"type\": \"TIME_RANGE\"\n            },\n            \"conversion_factors\": [\n                {\n                    \"type\": \"FINAL_ENERGY\",\n                    \"units\": \"MWh\",\n                    \"value\": 1\n                }\n            ],\n            \"demonstrative_period\": {\n                \"from\": \"2016-01-01\",\n                \"to\": \"2019-12-31\"\n            },\n            \"device\": {\n                \"id\": 76008\n            },\n            \"discipline_group\": \"COOLING\",\n            \"energy_source\": \"ELECTRICITY\",\n            \"id\": 687,\n            \"key\": \"47833ac9ec3c5d22134d0701ff5edd9d\",\n            \"name\": \"Refrigeration Project\",\n            \"reporting_units\": [\n                {\n                    \"source\": \"CONVERSION_FACTOR\",\n                    \"type\": \"FINAL_ENERGY\",\n                    \"units\": \"MWh\"\n                },\n                {\n                    \"source\": \"ENERGY_SOURCE\",\n                    \"type\": \"ELECTRICITY\",\n                    \"units\": \"kWh\"\n                }\n            ],\n            \"resolution\": \"D\",\n            \"target\": {\n                \"type\": \"ENERGY_PERCENTAGE\",\n                \"units\": \"%\",\n                \"value\": 10\n            }\n        }\n    ],\n    \"resolution\": \"D\",\n    \"targets\": [\n        {\n            \"default\": true,\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\",\n                \"units\": \"kWh\"\n            },\n            \"secondary_target\": 57,\n            \"value\": 2.5\n        },\n        {\n            \"default\": false,\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"FINAL_ENERGY\",\n                \"units\": \"MWh\"\n            },\n            \"value\": 3\n        },\n        {\n            \"default\": false,\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"CARBON_EQUIVALENT\",\n                \"units\": \"tCO2e\"\n            },\n            \"value\": 3\n        }\n    ]\n}"}],"_postman_id":"0a460a10-3ef5-4cc2-97e5-7f5c402baccc"},{"name":"Create a Group","id":"e95132f9-5c38-45b8-ba71-aeff228294fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Name of the group\",\n    \"resolution\": \"D\",\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2021-12-31\"\n    },\n    \"projects\": [\n        {\n            \"id\": 687\n        }\n    ],\n    \"targets\": [\n        {\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"default\": true,\n            \"value\": 2.5\n        },\n        {\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"FINAL_ENERGY\"\n            },\n            \"default\": false,\n            \"value\": 3.0, \n            \"secondary_target\": 50.0\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/groups","description":"<h1 id=\"payload-structure\">Payload structure</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>key</td>\n<td>NO</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resolution</td>\n<td>YES</td>\n<td>Enum: <code>H, D, W, M, Y</code></td>\n</tr>\n<tr>\n<td>demonstrative_period</td>\n<td>YES</td>\n<td>Look below -&gt; DemonstrativePeriod</td>\n</tr>\n<tr>\n<td>projects</td>\n<td>YES</td>\n<td>List&lt;Project&gt;. Look below -&gt; Project</td>\n</tr>\n<tr>\n<td>targets</td>\n<td>YES</td>\n<td>List&lt;Target&gt;. Look below -&gt; Target</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"demonstrativeperiod\">DemonstrativePeriod</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>to</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"target\">Target</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reporting_units</td>\n<td>YES</td>\n<td>Look below -&gt; ReportingUnit</td>\n</tr>\n<tr>\n<td>defautl</td>\n<td>YES</td>\n<td>boolean: true / false</td>\n</tr>\n<tr>\n<td>value</td>\n<td>YES</td>\n<td>Double</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"reportingunits\">ReportingUnits</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>source</td>\n<td>YES</td>\n<td>Enum: <code>ENERGY_SOURCE, CONVERSION_FACTOR</code></td>\n</tr>\n<tr>\n<td>type</td>\n<td>YES</td>\n<td>Enum: <code>ELECTRICITY, GAS, WATER, GASOIL, GAS_VOL, GAS_NOR, GASOIL_VOL, PRODUCTION , HEAT , COOLING, AIRVOLUME, LNG_ENERGY, BIOMASS</code>, <code>FINAL_ENERGY</code>, <code>CARBON_EQUIVALENT</code>, <code>PRIMARY_ENERGY</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"project\">Project</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>YES</td>\n<td>Integer</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mv","groups"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"0068bb43-dd53-43fd-be15-c3906b087b48","name":"Create a Group","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Name of the group\",\n    \"resolution\": \"D\",\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2021-12-31\"\n    },\n    \"projects\": [\n        {\n            \"id\": 687\n        }\n    ],\n    \"targets\": [\n        {\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"default\": true,\n            \"value\": 2.5\n        },\n        {\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"FINAL_ENERGY\"\n            },\n            \"default\": false,\n            \"value\": 3.0, \n            \"secondary_target\": 50.0\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"4999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"357"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"5000"},{"key":"Date","value":"Mon, 14 Sep 2020 14:54:02 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre"},{"key":"X-Ratelimit-Day-Remaining","value":"9999"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"32757"},{"key":"X-Backend","value":"api-internal-nodes/api02-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"391"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2021-12-31\"\n    },\n    \"id\": 73,\n    \"key\": \"MVG-8fd6a9\",\n    \"name\": \"Name of the group\",\n    \"projects\": [\n        {\n            \"id\": 687\n        }\n    ],\n    \"resolution\": \"D\",\n    \"targets\": [\n        {\n            \"default\": true,\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"value\": 2.5\n        },\n        {\n            \"default\": false,\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"FINAL_ENERGY\"\n            },\n            \"secondary_target\": 50,\n            \"value\": 3\n        }\n    ]\n}"}],"_postman_id":"e95132f9-5c38-45b8-ba71-aeff228294fb"},{"name":"Update a Group","id":"20032125-dcdc-4602-bff9-0ca0538d68e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"NameUpdated\",\n    \"key\": \"MVG-Key_Updated\",\n    \"resolution\": \"D\",\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2020-12-31\"\n    },\n    \"projects\": [\n        {\n            \"id\": 6046\n        }\n    ],\n    \"targets\": [\n        {\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"default\": true,\n            \"value\": 2.5,\n            \"secondary_target\": 40.0\n        },\n        {\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"FINAL_ENERGY\"\n            },\n            \"default\": false,\n            \"value\": 3.0\n        },\n        {\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"CARBON_EQUIVALENT\"\n            },\n            \"default\": false,\n            \"value\": 3.0,\n            \"secondary_target\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/groups/14","description":"<p>Same as objects as [POST] mv/projects except the key cannot be null.</p>\n<h1 id=\"payload-structure\">Payload structure</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>key</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>resolution</td>\n<td>YES</td>\n<td>Enum: <code>H, D, W, M, Y</code></td>\n</tr>\n<tr>\n<td>demonstrative_period</td>\n<td>YES</td>\n<td>Look [POST - groups]</td>\n</tr>\n<tr>\n<td>projects</td>\n<td>YES</td>\n<td>List&lt;Project&gt;. Look [POST - groups]</td>\n</tr>\n<tr>\n<td>targets</td>\n<td>YES</td>\n<td>List&lt;Target&gt;. Look [POST - groups]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mv","groups","14"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"d5024a43-78b8-4f6b-a2eb-a4f67060d6dd","name":"Update a group","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"NameUpdated\",\n    \"key\": \"MVG-Key_Updated\",\n    \"resolution\": \"D\",\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2020-12-31\"\n    },\n    \"projects\": [\n        {\n            \"id\": 6046\n        }\n    ],\n    \"targets\": [\n        {\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"default\": true,\n            \"value\": 2.5\n        },\n        {\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"CARBON_EQUIVALENT\"\n            },\n            \"default\": false,\n            \"value\": 3.0\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/groups/14"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 09 Jun 2020 15:32:09 GMT"},{"key":"Content-Length","value":"372"}],"cookie":[],"responseTime":null,"body":"{\n    \"demonstrative_period\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2020-12-31\"\n    },\n    \"id\": 14,\n    \"key\": \"MVG-Key_Updated\",\n    \"name\": \"NameUpdated\",\n    \"projects\": [\n        {\n            \"id\": 6046\n        }\n    ],\n    \"resolution\": \"D\",\n    \"targets\": [\n        {\n            \"default\": true,\n            \"reporting_units\": {\n                \"source\": \"ENERGY_SOURCE\",\n                \"type\": \"ELECTRICITY\"\n            },\n            \"value\": 2.5\n        },\n        {\n            \"default\": false,\n            \"reporting_units\": {\n                \"source\": \"CONVERSION_FACTOR\",\n                \"type\": \"CARBON_EQUIVALENT\"\n            },\n            \"value\": 3\n        }\n    ]\n}"}],"_postman_id":"20032125-dcdc-4602-bff9-0ca0538d68e4"},{"name":"Delete a Group","id":"ca11255e-ce52-4e60-a46e-8e0ebb15280a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/mv/groups/8","urlObject":{"path":["mv","groups","8"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca11255e-ce52-4e60-a46e-8e0ebb15280a"},{"name":"Retrieve Readings of a Group","id":"06a0530e-208f-4713-9b23-383dc4aed266","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/groups/2745/readings?from=2018-01-01T00:00:00&to=2018-01-05T00:00:00&resolution=H&format=DISCRETE&reporting_units=ENERGY_SOURCE-ELECTRICITY&savings_by=REFERENCE","urlObject":{"path":["mv","groups","2745","readings"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period</p>\n","type":"text/plain"},"key":"from","value":"2018-01-01T00:00:00"},{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period</p>\n","type":"text/plain"},"key":"to","value":"2018-01-05T00:00:00"},{"description":{"content":"<p>Enum: <code>H, D, W, M</code>. Default Group Resolution</p>\n","type":"text/plain"},"key":"resolution","value":"H"},{"description":{"content":"<p>Enum: <code>DISCRETE, CUMULATIVE</code>, default value DISCRETE</p>\n","type":"text/plain"},"key":"format","value":"DISCRETE"},{"description":{"content":"<p>Enum Combination from reporting units natural key: <em>SOURCE-TYPE</em>, Default value is the reporting units set it on the group</p>\n","type":"text/plain"},"key":"reporting_units","value":"ENERGY_SOURCE-ELECTRICITY"},{"description":{"content":"<p>Enum: 'REFERENCE, DEFAULT_TARGET, SECONDARY_TARGET'. Default value REFERENCE</p>\n","type":"text/plain"},"key":"savings_by","value":"REFERENCE"}],"variable":[]}},"response":[{"id":"67652b9b-00df-4c26-b55e-d131632813de","name":"get readings from group 2745","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups/2745/readings?to=2018-01-05T00:00:00&resolution=H&format=DEFAULT&conversion=NONE","host":["{{api_v3.host}}"],"path":["mv","groups","2745","readings"],"query":[{"key":"to","value":"2018-01-05T00:00:00","description":"this is a test"},{"key":"resolution","value":"H"},{"key":"format","value":"DEFAULT"},{"key":"conversion","value":"NONE"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"units\": \"kw\",\n    \"timezone\": \"Europe/Madrid\",\n    \"settings\": {\n        \"error\": {\n            \"value\": 2,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        },\n        \"target\": {\n            \"value\": 5,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        }\n    },\n    \"values\": [\n        {\n            \"baseline\": 2.4,\n            \"real\": 2.1,\n            \"savings\": 0.3,\n            \"savings_percent\": 5.6,\n            \"target\": 2.2,\n            \"ts\": \"2019-11-15T00:00:00+01:00\",\n            \"saving_status\": \"GOOD\"\n        },\n        {\n            \"baseline\": 2.8,\n            \"real\": 2.1,\n            \"savings\": 0.6,\n            \"savings_percent\": 10.2,\n            \"target\": 2.2,\n            \"ts\": \"2019-11-16T00:00:00+01:00\",\n            \"saving_status\": \"BAD\"\n        }\n    ]\n}"}],"_postman_id":"06a0530e-208f-4713-9b23-383dc4aed266"},{"name":"Retrieve Summary of a Group","id":"cc96b2a1-6087-4dd7-a41c-85df597cef6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/groups/22/summary?from=2020-01-01T00:00:00&to=2020-12-31T23:59:59&reporting_units=ENERGY_SOURCE-ELECTRICITY&embed=PROJECTS&savings_by=REFERENCE","urlObject":{"path":["mv","groups","22","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period</p>\n","type":"text/plain"},"key":"to","value":"2020-12-31T23:59:59"},{"description":{"content":"<p>Check on project description for more information</p>\n","type":"text/plain"},"key":"reporting_units","value":"ENERGY_SOURCE-ELECTRICITY"},{"description":{"content":"<p>Enum: PROJECTS</p>\n","type":"text/plain"},"key":"embed","value":"PROJECTS"},{"description":{"content":"<p>Enum: 'REFERENCE, DEFAULT_TARGET, SECONDARY_TARGET'. Default value REFERENCE</p>\n","type":"text/plain"},"key":"savings_by","value":"REFERENCE"}],"variable":[]}},"response":[{"id":"364c60fe-a3df-4332-892f-3950429bc67f","name":"Get summary of a group with the summaries of the projects that compose the group","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups/22/summary?from=2020-01-01T00:00:00&to=2020-12-31T23:59:59&reporting_units=ENERGY_SOURCE-ELECTRICITY&embed=PROJECTS","host":["{{api_v3.host}}"],"path":["mv","groups","22","summary"],"query":[{"key":"from","value":"2020-01-01T00:00:00","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period"},{"key":"to","value":"2020-12-31T23:59:59","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period"},{"key":"reporting_units","value":"ENERGY_SOURCE-ELECTRICITY","description":"Check on project description for more information"},{"key":"embed","value":"PROJECTS"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Cache-Control","value":"private, no-transform, max-age=300000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 15 Jul 2020 11:47:34 GMT"},{"key":"Content-Length","value":"2159"}],"cookie":[],"responseTime":null,"body":"{\"days_between\":366,\"from\":\"2020-01-01T00:00:00+01:00\",\"group_id\":22,\"projects\":[{\"days_between\":153,\"from\":\"2020-01-01T00:00:00+01:00\",\"project_id\":6287,\"settings\":{\"error\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":6.0},\"target\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":10.0}},\"timezone\":\"Europe/Madrid\",\"to\":\"2020-12-31T23:59:59+01:00\",\"units\":\"kWh\",\"values\":{\"baseline\":{\"accum\":41837.638319,\"avg\":13945.87944,\"count\":3,\"max\":14502.478476,\"median\":13934.463827,\"min\":13400.696016},\"days_elapsed\":153,\"real\":{\"accum\":27933.1,\"avg\":9311.033333,\"count\":3,\"max\":9634.3,\"median\":9591.4,\"min\":8707.4},\"savings\":{\"accum\":13904.538319,\"avg\":4634.846106,\"count\":3,\"max\":5227.063827,\"median\":4868.178476,\"min\":3809.296016},\"savings_percent\":33.23,\"savings_status\":\"GOOD\",\"target\":37653.874487}},{\"days_between\":153,\"from\":\"2020-01-01T00:00:00+01:00\",\"project_id\":6156,\"settings\":{\"error\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":5.0},\"target\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":5.0}},\"timezone\":\"Europe/Madrid\",\"to\":\"2020-12-31T23:59:59+01:00\",\"units\":\"kWh\",\"values\":{\"baseline\":{\"accum\":135172.986815,\"avg\":45057.662272,\"count\":3,\"max\":45607.742097,\"median\":44782.622359,\"min\":44782.622359},\"days_elapsed\":153,\"real\":{\"accum\":131508.9216,\"avg\":43836.3072,\"count\":3,\"max\":45758.4195,\"median\":44058.9978,\"min\":41691.5043},\"savings\":{\"accum\":3664.065215,\"avg\":1221.355072,\"count\":3,\"max\":3091.118059,\"median\":1548.744297,\"min\":-975.797141},\"savings_percent\":2.71,\"savings_status\":\"GOOD\",\"target\":128414.337474}}],\"settings\":{\"error\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":0.0},\"target\":{\"type\":\"PERCENTAGE\",\"units\":\"%\",\"value\":10.0}},\"timezone\":\"Europe/Madrid\",\"to\":\"2020-12-31T23:59:59+01:00\",\"units\":\"kWh\",\"values\":{\"baseline\":{\"accum\":177010.625133,\"avg\":59003.541711,\"count\":3,\"max\":59285.100835,\"median\":59008.438112,\"min\":58717.086186},\"days_elapsed\":153,\"real\":{\"accum\":159442.0216,\"avg\":53147.340533,\"count\":3,\"max\":54465.8195,\"median\":53650.3978,\"min\":51325.8043},\"savings\":{\"accum\":17568.603533,\"avg\":5856.201178,\"count\":3,\"max\":7959.296535,\"median\":5358.040312,\"min\":4251.266686},\"savings_percent\":9.93,\"savings_status\":\"GOOD\",\"target\":159309.56262}}"},{"id":"544b638a-cd1e-47a9-be5b-421c5e8674fd","name":"get summary from group 5006","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/groups/5006/summary?from=2019-10-01T00:00:00&to=2019-11-30T23:59:59&conversion_factor=","host":["{{api_v3.host}}"],"path":["mv","groups","5006","summary"],"query":[{"key":"from","value":"2019-10-01T00:00:00","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period"},{"key":"to","value":"2019-11-30T23:59:59","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period"},{"key":"conversion_factor","value":"","description":"Enum: `PRIMARY_ENERGY, FINAL_ENERGY, CARBON_EQUIVALENT`, by default this value is not passed to the API so not conversion factor is applied."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"from\": \"2019-10-01T00:00:00+01:00\",\n    \"to\": \"2019-11-30T23:59:59+01:00\",\n    \"days_between\": 60,\n    \"units\": \"kw\",\n    \"timezone\": \"Europe/Madrid\",\n    \"settings\": {\n        \"error\": {\n            \"value\": 2,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        },\n        \"target\": {\n            \"value\": 5,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        }\n    },\n    \"values\": {\n        \"real\": {\n            \"accum\": 25,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"baseline\": {\n            \"accum\": 30,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"savings\": {\n            \"accum\": 5,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"savings_percent\": 16.66,\n        \"target\": 28.5,\n        \"days_elapsed\": 3\n    }\n}"}],"_postman_id":"cc96b2a1-6087-4dd7-a41c-85df597cef6e"}],"id":"69af419c-0778-426a-9e20-ad3366df34be","description":"<h1 id=\"mv-service-that-allows-to-get-create-update-and-delete-measure-and-verification-groups\">MV service that allows to get, create, update and delete Measure and Verification groups.</h1>\n<p>The minimum licence that allows the use of MV Group services: <strong>FULL</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Description</th>\n<th>Endpoint</th>\n<th>User Roles</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get a single group</td>\n<td><code>[GET]  groups/{id}</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER, ROLE_CLIENT, ROLE_MINIMAL, ROLE_DEMO</td>\n</tr>\n<tr>\n<td>Fetch all groups by criteria</td>\n<td><code>[GET]  groups</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER, ROLE_CLIENT, ROLE_MINIMAL, ROLE_DEMO</td>\n</tr>\n<tr>\n<td>Create a group</td>\n<td><code>[POST] groups</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n<tr>\n<td>Update a group</td>\n<td><code>[PUT]  groups</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n<tr>\n<td>Delete a group</td>\n<td><code>[DEL]  groups/{id}</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e3c4b80d-0592-4042-bc87-2e0e2fd76d6c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e3dc9b83-9800-4607-b41f-7c10606e6559","type":"text/javascript","exec":[""]}}],"_postman_id":"69af419c-0778-426a-9e20-ad3366df34be"},{"name":"Projects","item":[{"name":"List all Projects","event":[{"listen":"prerequest","script":{"id":"63ea704c-f17e-40b2-abb8-cb26d8df802a","exec":[""],"type":"text/javascript"}}],"id":"bc2237a2-dfdc-4af4-9289-ca2c13c081b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-security-Deployment","value":"147","type":"text"}],"url":"http://localhost:8080/mv/projects/?start=0&limit=20&name=Blanes&include=REPORTING_UNITS","description":"<p>Check the parameters that filter the project.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["mv","projects",""],"host":["localhost"],"query":[{"key":"start","value":"0"},{"key":"limit","value":"20"},{"key":"name","value":"Blanes"},{"key":"include","value":"REPORTING_UNITS"}],"variable":[]}},"response":[{"id":"1ed73027-8c2b-485e-a64b-d938b124b3d2","name":"Get 3 projects type TIME_RANGE.","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/projects?type=TIME_RANGE&start=1&limit=3","host":["{{api_v3.host}}"],"path":["mv","projects"],"query":[{"key":"type","value":"TIME_RANGE","description":"Enum: `FORMULA, TIME_RANGE` . Baseline_configuration type."},{"key":"device_id","value":"75998","description":"Integer; Id of the device.","disabled":true},{"key":"discipline_group","value":"ENERGY_MANAGEMENT","description":"Enum: `ENERGY_MANAGEMENT, LIGHTING, HEATING, AIR_CONDITIONING, COOLING, AIR_HANDLING, BUILDING_ENVELOPE, CONTROL, MACHINERY, OTHER`","disabled":true},{"key":"energy_source","value":"ELECTRICITY","description":"Enum: `ELECTRICITY, GAS, WATER, GASOIL, GAS_VOL, GAS_NOR, GASOIL_VOL, PRODUCTION, HEAT, COOLING, AIRVOLUME, LNG_ENERGY, BIOMASS`","disabled":true},{"key":"resolution","value":"D","description":"Enum: `H, D, W, M`. Resolution","disabled":true},{"key":"from","value":"2016-05-01","description":"LocalDate.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive. ","disabled":true},{"key":"to","value":"2016-08-31","description":"LocalDate.ISO8601 [yyyy-MM-dd]; End day of the interval inclusive.","disabled":true},{"key":"start","value":"1","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"3","description":"Integer; Pagination end. Default 20."},{"key":"order","value":"ASC","description":"Enum: `ASC, DESC`.  Order of pagination.","disabled":true},{"key":"name","value":"name","description":"String; Name of the project","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, no-transform, max-age=30000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 17 Mar 2020 08:45:12 GMT"},{"key":"Content-Length","value":"1416"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"baseline_configuration\": {\n            \"aggregation\": \"AVERAGE\",\n            \"error\": 6.15,\n            \"from\": \"2014-06-01\",\n            \"time_frame\": \"W\",\n            \"to\": \"2014-12-31\",\n            \"type\": \"TIME_RANGE\"\n        },\n        \"conversion_factors\": [],\n        \"demonstrative_period\": {\n            \"from\": \"2016-01-01\",\n            \"to\": \"2019-12-31\"\n        },\n        \"device\": {\n            \"id\": 76008\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"ELECTRICITY\",\n        \"id\": 687,\n        \"key\": \"47833ac9ec3c5d22134d0701ff5edd9d\",\n        \"name\": \"Refrigeration Project\",\n        \"resolution\": \"D\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": 10\n        }\n    },\n    {\n        \"baseline_configuration\": {\n            \"aggregation\": \"AVERAGE\",\n            \"error\": 3.9,\n            \"from\": \"2012-01-01\",\n            \"time_frame\": \"W\",\n            \"to\": \"2012-12-31\",\n            \"type\": \"TIME_RANGE\"\n        },\n        \"conversion_factors\": [],\n        \"demonstrative_period\": {\n            \"from\": \"2018-01-01\",\n            \"to\": \"2018-12-31\"\n        },\n        \"device\": {\n            \"id\": 75993\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"WATER\",\n        \"id\": 683,\n        \"key\": \"43dd65aaed6fd6aaee1338a9b78a170d\",\n        \"name\": \"Building 2 - 1st Floor\",\n        \"resolution\": \"H\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": 35\n        }\n    },\n    {\n        \"baseline_configuration\": {\n            \"aggregation\": \"AVERAGE\",\n            \"error\": 28.48,\n            \"from\": \"2018-01-01\",\n            \"time_frame\": \"W\",\n            \"to\": \"2018-12-31\",\n            \"type\": \"TIME_RANGE\"\n        },\n        \"conversion_factors\": [],\n        \"demonstrative_period\": {\n            \"from\": \"2019-01-01\",\n            \"to\": \"2019-12-31\"\n        },\n        \"device\": {\n            \"id\": 489073\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"PRODUCTION\",\n        \"id\": 4685,\n        \"key\": \"414a7637e033d3d662ff986eed8bd697\",\n        \"name\": \"PV\",\n        \"resolution\": \"D\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": -10\n        }\n    }\n]"},{"id":"47680ff6-2bff-42c1-b134-698c7544f1dc","name":"Get 3 project type FORMULA and Device_id 75998.","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/projects?type=FORMULA&device_id=75998&start=1&limit=3","host":["{{api_v3.host}}"],"path":["mv","projects"],"query":[{"key":"type","value":"FORMULA","description":"Enum: `FORMULA, TIME_RANGE` . Baseline_configuration type."},{"key":"device_id","value":"75998","description":"Integer; Id of the device."},{"key":"discipline_group","value":"ENERGY_MANAGEMENT","description":"Enum: `ENERGY_MANAGEMENT, LIGHTING, HEATING, AIR_CONDITIONING, COOLING, AIR_HANDLING, BUILDING_ENVELOPE, CONTROL, MACHINERY, OTHER`","disabled":true},{"key":"energy_source","value":"ELECTRICITY","description":"Enum: `ELECTRICITY, GAS, WATER, GASOIL, GAS_VOL, GAS_NOR, GASOIL_VOL, PRODUCTION, HEAT, COOLING, AIRVOLUME, LNG_ENERGY, BIOMASS`","disabled":true},{"key":"resolution","value":"D","description":"Enum: `H, D, W, M`. Resolution","disabled":true},{"key":"from","value":"2016-05-01","description":"LocalDate.ISO8601 [yyyy-MM-dd]; Start date of the interval inclusive. ","disabled":true},{"key":"to","value":"2016-08-31","description":"LocalDate.ISO8601 [yyyy-MM-dd]; End day of the interval inclusive.","disabled":true},{"key":"start","value":"1","description":"Integer; Pagination start. Default 0."},{"key":"limit","value":"3","description":"Integer; Pagination end. Default 20."},{"key":"order","value":"ASC","description":"Enum: `ASC, DESC`.  Order of pagination.","disabled":true},{"key":"name","value":"name","description":"String; Name of the project","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, no-transform, max-age=30000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 17 Mar 2020 08:43:22 GMT"},{"key":"Content-Length","value":"3101"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"baseline_configuration\": {\n            \"error\": 5.9,\n            \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n            \"non_routine_adjustments\": [\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj1\",\n                    \"to\": \"2017-10-09\",\n                    \"variables\": []\n                },\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj2\",\n                    \"to\": \"2017-10-16\",\n                    \"variables\": []\n                }\n            ],\n            \"routine_adjustments\": {\n                \"seasons\": [\n                    {\n                        \"applicable_dates\": {\n                            \"from\": \"2017-01-01\",\n                            \"to\": \"2019-12-31\"\n                        },\n                        \"conditionals\": [\n                            {\n                                \"formula\": \"250\",\n                                \"operation\": \"BETWEEN\",\n                                \"time_unit\": \"DAY\",\n                                \"week_day_end\": \"SUNDAY\",\n                                \"week_day_start\": \"SATURDAY\"\n                            }\n                        ],\n                        \"name\": \"untitled\"\n                    }\n                ]\n            },\n            \"type\": \"FORMULA\",\n            \"variables\": [\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"HDD\",\n                    \"parameter\": {\n                        \"id\": 18121\n                    }\n                },\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"CDD\",\n                    \"parameter\": {\n                        \"id\": 18021\n                    }\n                }\n            ]\n        },\n        \"conversion_factors\": [],\n        \"demonstrative_period\": {\n            \"from\": \"2017-01-01\",\n            \"to\": \"2019-12-31\"\n        },\n        \"device\": {\n            \"id\": 75998\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"ELECTRICITY\",\n        \"id\": 5736,\n        \"key\": \"key_34f41011dea69267149\",\n        \"name\": \"HVAC - by formula One_TEstREsol\",\n        \"resolution\": \"D\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": 10\n        }\n    },\n    {\n        \"baseline_configuration\": {\n            \"error\": 5.9,\n            \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n            \"non_routine_adjustments\": [\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj1\",\n                    \"to\": \"2017-10-09\",\n                    \"variables\": []\n                },\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj2\",\n                    \"to\": \"2017-10-16\",\n                    \"variables\": []\n                }\n            ],\n            \"routine_adjustments\": {\n                \"seasons\": [\n                    {\n                        \"applicable_dates\": {\n                            \"from\": \"2017-01-01\",\n                            \"to\": \"2019-12-31\"\n                        },\n                        \"conditionals\": [\n                            {\n                                \"formula\": \"250\",\n                                \"operation\": \"BETWEEN\",\n                                \"time_unit\": \"DAY\",\n                                \"week_day_end\": \"SUNDAY\",\n                                \"week_day_start\": \"SATURDAY\"\n                            }\n                        ],\n                        \"name\": \"untitled\"\n                    }\n                ]\n            },\n            \"type\": \"FORMULA\",\n            \"variables\": [\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"HDD\",\n                    \"parameter\": {\n                        \"id\": 18121\n                    }\n                },\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"CDD\",\n                    \"parameter\": {\n                        \"id\": 18021\n                    }\n                }\n            ]\n        },\n        \"conversion_factors\": [],\n        \"demonstrative_period\": {\n            \"from\": \"2017-01-01\",\n            \"to\": \"2019-12-31\"\n        },\n        \"device\": {\n            \"id\": 75998\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"ELECTRICITY\",\n        \"id\": 5737,\n        \"key\": \"key_34f41044xea69267149\",\n        \"name\": \"HVAC - by formula Two\",\n        \"resolution\": \"D\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": 10\n        }\n    },\n    {\n        \"baseline_configuration\": {\n            \"error\": 5.9,\n            \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n            \"non_routine_adjustments\": [\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj1\",\n                    \"to\": \"2017-10-09\",\n                    \"variables\": []\n                },\n                {\n                    \"formula\": \"1100\",\n                    \"from\": \"2017-06-01\",\n                    \"name\": \"adj2\",\n                    \"to\": \"2017-10-16\",\n                    \"variables\": []\n                }\n            ],\n            \"routine_adjustments\": {\n                \"seasons\": [\n                    {\n                        \"applicable_dates\": {\n                            \"from\": \"2017-01-01\",\n                            \"to\": \"2019-12-31\"\n                        },\n                        \"conditionals\": [\n                            {\n                                \"formula\": \"250\",\n                                \"operation\": \"BETWEEN\",\n                                \"time_unit\": \"DAY\",\n                                \"week_day_end\": \"SUNDAY\",\n                                \"week_day_start\": \"SATURDAY\"\n                            }\n                        ],\n                        \"name\": \"untitled\"\n                    }\n                ]\n            },\n            \"type\": \"FORMULA\",\n            \"variables\": [\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"HDD\",\n                    \"parameter\": {\n                        \"id\": 18121\n                    }\n                },\n                {\n                    \"device\": {\n                        \"id\": 76501\n                    },\n                    \"name\": \"CDD\",\n                    \"parameter\": {\n                        \"id\": 18021\n                    }\n                }\n            ]\n        },\n        \"conversion_factors\": [\n            {\n                \"type\": \"CARBON_EQUIVALENT\",\n                \"value\": 30\n            }\n        ],\n        \"demonstrative_period\": {\n            \"from\": \"2017-01-01\",\n            \"to\": \"2019-12-31\"\n        },\n        \"device\": {\n            \"id\": 75998\n        },\n        \"discipline_group\": \"ENERGY_MANAGEMENT\",\n        \"energy_source\": \"ELECTRICITY\",\n        \"id\": 2745,\n        \"key\": \"key_34f41011dea692_Updated\",\n        \"name\": \"HVAC - by formula OneUpdated\",\n        \"resolution\": \"D\",\n        \"target\": {\n            \"type\": \"ENERGY_PERCENTAGE\",\n            \"units\": \"%\",\n            \"value\": 10\n        }\n    }\n]"}],"_postman_id":"bc2237a2-dfdc-4af4-9289-ca2c13c081b0"},{"name":"Retrieve a Project","event":[{"listen":"prerequest","script":{"id":"98e12f7c-66f1-40c6-8368-f669efa17239","exec":[""],"type":"text/javascript"}}],"id":"93970e81-3758-440a-9302-4eeb15949927","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/projects/6587","description":"<p>Get the project by Id. Project must belong to the deployment.</p>\n","urlObject":{"path":["mv","projects","6587"],"host":["{{api_v3.host}}"],"query":[{"disabled":true,"description":{"content":"<p>List. Options : <code>REPORTING_UNITS</code>. Currently it only has one option.</p>\n","type":"text/plain"},"key":"include","value":"REPORTING_UNITS"}],"variable":[]}},"response":[{"id":"bc2708ae-b444-4f17-b9b8-050b0f9993f4","name":"Get project by Id.","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/projects/5792"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"994"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"699"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Thu, 16 Apr 2020 09:48:21 GMT"},{"key":"X-Loadbalancer","value":"internallb00-pre.dexmatech.com"},{"key":"X-Loadbalancer","value":"weblb00-pre.dexmatech.com"},{"key":"Cache-Control","value":"private, no-transform, max-age=30000"},{"key":"X-Ratelimit-Day-Remaining","value":"9994"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"51099"},{"key":"X-Backend","value":"api-internal-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1110"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"routine_adjustments\": {\n            \"seasons\": [\n                {\n                    \"applicable_dates\": {\n                        \"from\": \"2017-01-01\",\n                        \"to\": \"2019-12-31\"\n                    },\n                    \"conditionals\": [\n                        {\n                            \"formula\": \"250\",\n                            \"operation\": \"BETWEEN\",\n                            \"time_unit\": \"DAY\",\n                            \"week_day_end\": \"SUNDAY\",\n                            \"week_day_start\": \"SATURDAY\"\n                        }\n                    ],\n                    \"name\": \"untitled\"\n                }\n            ]\n        },\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"units\": \"tCO2-eq\",\n            \"value\": 30\n        },\n        {\n            \"type\": \"PRIMARY_ENERGY\",\n            \"units\": \"MWh\",\n            \"value\": 10\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"id\": 5792,\n    \"key\": \"MVP-939e0a\",\n    \"name\": \"HVAC - by formula 2\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"type\": \"ENERGY_PERCENTAGE\",\n        \"units\": \"%\",\n        \"value\": 10\n    }\n}"}],"_postman_id":"93970e81-3758-440a-9302-4eeb15949927"},{"name":"Create a Project","id":"ecada255-912d-46cf-aac8-23375c0256ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"routine_adjustments\": {\n            \"seasons\": [\n                {\n                    \"applicable_dates\": {\n                        \"from\": \"2017-01-01\",\n                        \"to\": \"2019-12-31\"\n                    },\n                    \"conditionals\": [\n                        {\n                            \"formula\": \"250\",\n                            \"operation\": \"BETWEEN\",\n                            \"time_unit\": \"DAY\",\n                            \"week_day_end\": \"SUNDAY\",\n                            \"week_day_start\": \"SATURDAY\"\n                        }\n                    ],\n                    \"name\": \"untitled\"\n                }\n            ]\n        },\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30\n        },\n        {\n            \"type\": \"PRIMARY_ENERGY\",\n            \"value\": 10\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"name\": \"HVAC - by formula 2\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 10\n    }\n}"},"url":"{{api_v3.host}}/mv/projects","description":"<p>Save a project. The project must follow the rules that are described in the following article.\n<a href=\"https://support.dexma.com/hc/en-gb\">Dexma support</a></p>\n<h1 id=\"payload-structure\">Payload structure</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>key</td>\n<td>NO</td>\n<td>String</td>\n</tr>\n<tr>\n<td>discipline_group</td>\n<td>YES</td>\n<td>Enum: <code>ENERGY_MANAGEMENT, LIGHTING, HEATING, AIR_CONDITIONING, COOLING, AIR_HANDLING , BUILDING_ENVELOPE, CONTROL, MACHINERY, OTHER</code></td>\n</tr>\n<tr>\n<td>energy_source</td>\n<td>YES</td>\n<td>Enum: <code>ELECTRICITY, GAS, WATER, GASOIL, GAS_VOL, GAS_NOR, GASOIL_VOL, PRODUCTION, HEAT, COOLING, AIRVOLUME, LNG_ENERGY, BIOMASS</code></td>\n</tr>\n<tr>\n<td>resolution</td>\n<td>YES</td>\n<td>Enum: <code>H, D, W, M</code></td>\n</tr>\n<tr>\n<td>device</td>\n<td>YES</td>\n<td>Look below Device</td>\n</tr>\n<tr>\n<td>demonstrative_period</td>\n<td>YES</td>\n<td>Look below DemonstrativePeriod.</td>\n</tr>\n<tr>\n<td>target</td>\n<td>YES</td>\n<td>Look below Target.</td>\n</tr>\n<tr>\n<td>secondary_target</td>\n<td>NO</td>\n<td>Look below Target.</td>\n</tr>\n<tr>\n<td>conversion_factors</td>\n<td>NO</td>\n<td>List&lt;ConversionFactor&gt;. Look below.</td>\n</tr>\n<tr>\n<td>baseline_configuration</td>\n<td>YES</td>\n<td><code>FORMULA</code> or <code>TIME_RANGE</code>. Look below</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"device\">Device</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>YES</td>\n<td>Integer</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"demonstrativeperiod\">DemonstrativePeriod</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>to</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"target\">Target</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>YES</td>\n<td>Double</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"baseline_configuration\">baseline_configuration</h2>\n<p> This is multi shape object that the field that decides the shape is:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>YES</td>\n<td>Enum: <code>FORMULA, TIME_RANGE</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"formula\">formula</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>YES</td>\n<td>EnumValue: <code>FORMULA</code></td>\n</tr>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>error</td>\n<td>YES</td>\n<td>Double</td>\n</tr>\n<tr>\n<td>variables</td>\n<td>NO</td>\n<td>List&lt;Variable&gt;. Look below</td>\n</tr>\n<tr>\n<td>routine_adjustments</td>\n<td>NO</td>\n<td>List&lt;Season&gt;. Look below</td>\n</tr>\n<tr>\n<td>non_routine_adjustments</td>\n<td>NO</td>\n<td>List&lt;NonRoutineAdjustments&gt;. Look below</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"time-range\">time range</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>YES</td>\n<td>EnumValue: <code>TIME_RANGE</code></td>\n</tr>\n<tr>\n<td>error</td>\n<td>YES</td>\n<td>Double</td>\n</tr>\n<tr>\n<td>from</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>to</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>time_frame</td>\n<td>YES</td>\n<td>Enum: <code>D, W, M</code></td>\n</tr>\n<tr>\n<td>aggregation</td>\n<td>YES</td>\n<td>Enum: <code>AVERAGE, MEDIAN</code></td>\n</tr>\n<tr>\n<td>non_routine_adjustments</td>\n<td>NO</td>\n<td>List&lt;NonRoutineAdjustments&gt;. Look below</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"nonroutineadjustment\">NonRoutineAdjustment</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>from</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>to</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>variables</td>\n<td>YES</td>\n<td>List&lt;Variable&gt;. Look below</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"convesrionfactor\">ConvesrionFactor</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>YES</td>\n<td>Enum: <code>FINAL_ENERGY, CARBON_EQUIVALENT, PRIMARY_ENERGY</code></td>\n</tr>\n<tr>\n<td>value</td>\n<td>YES</td>\n<td>Double</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"variable\">Variable</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>device.id</td>\n<td>YES</td>\n<td>Long</td>\n</tr>\n<tr>\n<td>parameter.id</td>\n<td>YES</td>\n<td>Integer</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"season\">Season</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>from</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>to</td>\n<td>YES</td>\n<td>Date.ISO8601 [yyyy-MM-dd]</td>\n</tr>\n<tr>\n<td>conditionals</td>\n<td>YES</td>\n<td>List&lt;Conditional&gt;. Look below.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"conditional\">Conditional</h5>\n<p> This is a multi shape object. That the shape is decided by the combination of:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>time_unit</td>\n<td>YES</td>\n<td>Enum: <code>DAY, MONTH</code></td>\n</tr>\n<tr>\n<td>operation</td>\n<td>YES</td>\n<td>Enum: <code>EQUALS, BETWEEN</code></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"day--equals\">DAY &amp; EQUALS</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>time_unit</td>\n<td>YES</td>\n<td>EnumValue: <code>DAY</code></td>\n</tr>\n<tr>\n<td>operation</td>\n<td>YES</td>\n<td>EnumValue: <code>EQUALS</code></td>\n</tr>\n<tr>\n<td>week_day</td>\n<td>YES</td>\n<td>Enum: <code>MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY</code></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"day--between\">DAY &amp; BETWEEN</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>time_unit</td>\n<td>YES</td>\n<td>EnumValue: <code>DAY</code></td>\n</tr>\n<tr>\n<td>operation</td>\n<td>YES</td>\n<td>EnumValue: <code>BETWEEN</code></td>\n</tr>\n<tr>\n<td>week_day_start</td>\n<td>YES</td>\n<td>Enum: <code>MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY</code></td>\n</tr>\n<tr>\n<td>week_day_end</td>\n<td>YES</td>\n<td>Enum: <code>MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY</code></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"month--equals\">MONTH &amp; EQUALS</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>time_unit</td>\n<td>YES</td>\n<td>EnumValue: <code>MONTH</code></td>\n</tr>\n<tr>\n<td>operation</td>\n<td>YES</td>\n<td>EnumValue: <code>EQUALS</code></td>\n</tr>\n<tr>\n<td>month</td>\n<td>YES</td>\n<td>Enum: <code>JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER</code></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"month--between\">MONTH &amp; BETWEEN</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula</td>\n<td>YES</td>\n<td>String</td>\n</tr>\n<tr>\n<td>time_unit</td>\n<td>YES</td>\n<td>EnumValue: <code>MONTH</code></td>\n</tr>\n<tr>\n<td>operation</td>\n<td>YES</td>\n<td>EnumValue: <code>BETWEEN</code></td>\n</tr>\n<tr>\n<td>month_start</td>\n<td>YES</td>\n<td>Enum: <code>JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER , NOVEMBER, DECEMBER</code></td>\n</tr>\n<tr>\n<td>month_end</td>\n<td>YES</td>\n<td>Enum: <code>JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER , NOVEMBER, DECEMBER</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mv","projects"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"91fff313-a4ae-4415-a7a6-f70b2992a141","name":"Create a mv project type FORMULA.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"routine_adjustments\": {\n            \"seasons\": [\n                {\n                    \"applicable_dates\": {\n                        \"from\": \"2017-01-01\",\n                        \"to\": \"2019-12-31\"\n                    },\n                    \"conditionals\": [\n                        {\n                            \"formula\": \"250\",\n                            \"operation\": \"BETWEEN\",\n                            \"time_unit\": \"DAY\",\n                            \"week_day_end\": \"SUNDAY\",\n                            \"week_day_start\": \"SATURDAY\"\n                        }\n                    ],\n                    \"name\": \"untitled\"\n                }\n            ]\n        },\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30\n        },\n        {\n            \"type\": \"PRIMARY_ENERGY\",\n            \"value\": 10\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"key\": \"key_34f41011dea692_Created\",\n    \"name\": \"HVAC - by formula OneUpdated Created\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 17 Mar 2020 08:35:54 GMT"},{"key":"Content-Length","value":"1110"}],"cookie":[],"responseTime":null,"body":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"routine_adjustments\": {\n            \"seasons\": [\n                {\n                    \"applicable_dates\": {\n                        \"from\": \"2017-01-01\",\n                        \"to\": \"2019-12-31\"\n                    },\n                    \"conditionals\": [\n                        {\n                            \"formula\": \"250\",\n                            \"operation\": \"BETWEEN\",\n                            \"time_unit\": \"DAY\",\n                            \"week_day_end\": \"SUNDAY\",\n                            \"week_day_start\": \"SATURDAY\"\n                        }\n                    ],\n                    \"name\": \"untitled\"\n                }\n            ]\n        },\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30\n        },\n        {\n            \"type\": \"PRIMARY_ENERGY\",\n            \"value\": 10\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"id\": 5748,\n    \"key\": \"key_34f41011dea692_Created\",\n    \"name\": \"HVAC - by formula OneUpdated Created\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"type\": \"ENERGY_PERCENTAGE\",\n        \"units\": \"%\",\n        \"value\": 10\n    },    \n    \"secondary_target\": {\n        \"type\": \"ENERGY_PERCENTAGE\",\n        \"units\": \"%\",\n        \"value\": 10\n    }\n}"},{"id":"c443f5a5-02b2-4bbb-9bd0-263a070506c8","name":"Fail to create a project due the following errors.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100 + x\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"routine_adjustments\": {\n            \"seasons\": [\n                {\n                    \"applicable_dates\": {\n                        \"from\": \"2016-01-01\",\n                        \"to\": \"2019-12-31\"\n                    },\n                    \"conditionals\": [\n                        {\n                            \"formula\": \"250\",\n                            \"operation\": \"BETWEEN\",\n                            \"time_unit\": \"DAY\",\n                            \"week_day_end\": \"SUNDAY\",\n                            \"week_day_start\": \"SATURDAY\"\n                        }\n                    ],\n                    \"name\": \"untitled\"\n                }\n            ]\n        },\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 181121\n                }\n            }\n        ]\n    },\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"key\": \"key_34f41011dea6926714555c84a149\",\n    \"name\": \"HVAC - by formula One\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"type\": \"ENERGY_PERCENTAGE\",\n        \"unit\": \"%\",\n        \"value\": 10.0\n    }\n}"},"url":"{{api_v3.host}}/mv/projects"},"status":"CUSTOM","code":422,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"4986"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1818"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"5000"},{"key":"Date","value":"Mon, 09 Mar 2020 07:29:41 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Loadbalancer","value":"weblb00-pre.dexmatech.com"},{"key":"X-Ratelimit-Day-Remaining","value":"9986"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"59418"},{"key":"X-Backend","value":"api-nodes/api03-pre"},{"key":"X-Backend","value":"apigateway-nodes/apigateway01-pre"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"557"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E422\",\n    \"errors\": [\n        {\n            \"field\": \"key\",\n            \"message\": \"Key: [key_34f41011dea6926714555c84a149] must be unique by deployment.\"\n        },\n        {\n            \"field\": \"project\",\n            \"message\": \"[name]: [HVAC - by formula one] must be unique by deployment.\"\n        },\n        {\n            \"field\": \"baseline_configuration.variable\",\n            \"message\": \"[parameter]: [181121] is not accepted.\"\n        },\n        {\n            \"field\": \"baseline_configuration.non_routine_adjustments.formula\",\n            \"message\": \"Formula has invalid syntax. please check that all variable are defined, parentheses and square brackets are closed.\"\n        }\n    ],\n    \"message\": \"Entity validation error\",\n    \"status\": 422\n}"},{"id":"c44fbfa5-f760-44b2-80f7-29952f717771","name":"Create a project type TIME_RANGE.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"aggregation\": \"MEDIAN\",\n        \"error\": 5.0,\n        \"from\": \"2015-11-23\",\n        \"time_frame\": \"W\",\n        \"to\": \"2015-11-30\",\n        \"type\": \"TIME_RANGE\"\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30.0\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2016-11-01\",\n        \"to\": \"2017-05-31\"\n    },\n    \"device\": {\n        \"id\": 76001\n    },\n    \"discipline_group\": \"HEATING\",\n    \"energy_source\": \"HEAT\",\n    \"key\": \"f99e7782f03cf8f8db16\",\n    \"name\": \"Gas Burner Project\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 20.0\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 17 Mar 2020 08:37:26 GMT"},{"key":"Content-Length","value":"486"}],"cookie":[],"responseTime":null,"body":"{\n    \"baseline_configuration\": {\n        \"aggregation\": \"MEDIAN\",\n        \"error\": 5,\n        \"from\": \"2015-11-23\",\n        \"time_frame\": \"W\",\n        \"to\": \"2015-11-30\",\n        \"type\": \"TIME_RANGE\"\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2016-11-01\",\n        \"to\": \"2017-05-31\"\n    },\n    \"device\": {\n        \"id\": 76001\n    },\n    \"discipline_group\": \"HEATING\",\n    \"energy_source\": \"HEAT\",\n    \"id\": 5749,\n    \"key\": \"f99e7782f03cf8f8db16\",\n    \"name\": \"Gas Burner Project\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"type\": \"ENERGY_PERCENTAGE\",\n        \"units\": \"%\",\n        \"value\": 20\n    }\n}"}],"_postman_id":"ecada255-912d-46cf-aac8-23375c0256ae"},{"name":"Update a Project","id":"2a206d5f-ce42-4354-814b-c1bdca885c02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"key\": \"key_34f41011dea692_Updated\",\n    \"name\": \"HVAC - by formula OneUpdated\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 10\n    },\n    \"secondary_target\": null\n}"},"url":"{{api_v3.host}}/mv/projects/6587","description":"<p>Same logic as creating [POST] mv/projects. All mandatory fields must be in the request. </p>\n<p>If the field does not come in the request, the value will be the current value of the project.\nIn some cases, some optional field must be deleted. Some fields we can set a value that indicates that this value is empty/deleted, as a list with zero elements, others we need to use the value null. \nThe next table indicates the optional fields and if you want to delete an optional field which values you should use.</p>\n<h1 id=\"optional-fields\">Optional fields</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Value to delete</th>\n<th>Example:</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>key</td>\n<td>String</td>\n<td></td>\n<td>Despite is optional when creating a project, the key cannot be deleted or set a null value. But you can set a new value.</td>\n</tr>\n<tr>\n<td>conversion_factors</td>\n<td>List</td>\n<td>[]</td>\n<td>{ \"conversion_factors: []\"}</td>\n</tr>\n<tr>\n<td>secondary_target</td>\n<td>Double</td>\n<td>null</td>\n<td>{ \"secondary_target\": null}</td>\n</tr>\n<tr>\n<td>baseline_configuration.variables</td>\n<td>List</td>\n<td>[]</td>\n<td>{ \"baseline_configuration\": { \"variables\": []}}</td>\n</tr>\n<tr>\n<td>baseline_configuration.routine_adjustments</td>\n<td>Object</td>\n<td>[]</td>\n<td>{ \"baseline_configuration\": { \"routine_adjustments\": { \"seasons\": []}}}</td>\n</tr>\n<tr>\n<td>baseline_configuration.non_routine_adjustments</td>\n<td>List</td>\n<td>[]</td>\n<td>{ \"baseline_configuration\": { \"non_routine_adjustments\": []}}</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mv","projects","6587"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"5d530c22-30d3-4c4e-ae10-e42f7d1387b7","name":"Update a project.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"non_routine_adjustments\": [\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj1\",\n                \"to\": \"2017-10-09\",\n                \"variables\": []\n            },\n            {\n                \"formula\": \"1100\",\n                \"from\": \"2017-06-01\",\n                \"name\": \"adj2\",\n                \"to\": \"2017-10-16\",\n                \"variables\": []\n            }\n        ],\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"conversion_factors\": [\n        {\n            \"type\": \"CARBON_EQUIVALENT\",\n            \"value\": 30\n        }\n    ],\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"key\": \"key_34f41011dea692_Updated\",\n    \"name\": \"HVAC - by formula OneUpdated\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 10\n    },\n    \"secondary_target\": {\n        \"value\": 10\n    }\n}"},"url":"{{api_v3.host}}/mv/projects/6587"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Cache-Control","value":"private, no-transform, max-age=30000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 05 Aug 2020 12:11:34 GMT"},{"key":"Content-Length","value":"1153"}],"cookie":[],"responseTime":null,"body":"{\"baseline_configuration\":{\"error\":5.9,\"formula\":\"500 + 32*HDD +20*Math.pow(CDD,2)\",\"non_routine_adjustments\":[{\"formula\":\"1100\",\"from\":\"2017-06-01\",\"name\":\"adj1\",\"to\":\"2017-10-09\",\"variables\":[]},{\"formula\":\"1100\",\"from\":\"2017-06-01\",\"name\":\"adj2\",\"to\":\"2017-10-16\",\"variables\":[]}],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2017-01-01\",\"to\":\"2019-12-31\"},\"conditionals\":[{\"formula\":\"250\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"untitled\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":76501},\"name\":\"HDD\",\"parameter\":{\"id\":18121}},{\"device\":{\"id\":76501},\"name\":\"CDD\",\"parameter\":{\"id\":18021}}]},\"conversion_factors\":[{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":30.0}],\"demonstrative_period\":{\"from\":\"2017-01-01\",\"to\":\"2019-12-31\"},\"device\":{\"id\":75998},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6587,\"key\":\"key_34f41011dea692_Updated\",\"name\":\"HVAC - by formula OneUpdated\",\"resolution\":\"D\",\"secondary_target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":10.0},\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":10.0}}"},{"id":"fd7a1685-5c1f-4d09-904a-1b85fdc13778","name":"Update a project, do not change mandatory fields, so do not sent \"non_routine_adjustments\"  and \"routine_adjustments\" and delete \"seconday_target\".","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"baseline_configuration\": {\n        \"error\": 5.9,\n        \"formula\": \"500 + 32*HDD +20*Math.pow(CDD,2)\",\n        \"type\": \"FORMULA\",\n        \"variables\": [\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"HDD\",\n                \"parameter\": {\n                    \"id\": 18121\n                }\n            },\n            {\n                \"device\": {\n                    \"id\": 76501\n                },\n                \"name\": \"CDD\",\n                \"parameter\": {\n                    \"id\": 18021\n                }\n            }\n        ]\n    },\n    \"demonstrative_period\": {\n        \"from\": \"2017-01-01\",\n        \"to\": \"2019-12-31\"\n    },\n    \"device\": {\n        \"id\": 75998\n    },\n    \"discipline_group\": \"ENERGY_MANAGEMENT\",\n    \"energy_source\": \"ELECTRICITY\",\n    \"key\": \"key_34f41011dea692_Updated\",\n    \"name\": \"HVAC - by formula OneUpdated\",\n    \"resolution\": \"D\",\n    \"target\": {\n        \"value\": 10\n    },\n    \"secondary_target\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/mv/projects/6587"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Cache-Control","value":"private, no-transform, max-age=30000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 05 Aug 2020 12:13:54 GMT"},{"key":"Content-Length","value":"1080"}],"cookie":[],"responseTime":null,"body":"{\"baseline_configuration\":{\"error\":5.9,\"formula\":\"500 + 32*HDD +20*Math.pow(CDD,2)\",\"non_routine_adjustments\":[{\"formula\":\"1100\",\"from\":\"2017-06-01\",\"name\":\"adj1\",\"to\":\"2017-10-09\",\"variables\":[]},{\"formula\":\"1100\",\"from\":\"2017-06-01\",\"name\":\"adj2\",\"to\":\"2017-10-16\",\"variables\":[]}],\"routine_adjustments\":{\"seasons\":[{\"applicable_dates\":{\"from\":\"2017-01-01\",\"to\":\"2019-12-31\"},\"conditionals\":[{\"formula\":\"250\",\"operation\":\"BETWEEN\",\"time_unit\":\"DAY\",\"week_day_end\":\"SUNDAY\",\"week_day_start\":\"SATURDAY\"}],\"name\":\"untitled\"}]},\"type\":\"FORMULA\",\"variables\":[{\"device\":{\"id\":76501},\"name\":\"HDD\",\"parameter\":{\"id\":18121}},{\"device\":{\"id\":76501},\"name\":\"CDD\",\"parameter\":{\"id\":18021}}]},\"conversion_factors\":[{\"type\":\"CARBON_EQUIVALENT\",\"units\":\"tCO2e\",\"value\":30.0}],\"demonstrative_period\":{\"from\":\"2017-01-01\",\"to\":\"2019-12-31\"},\"device\":{\"id\":75998},\"discipline_group\":\"ENERGY_MANAGEMENT\",\"energy_source\":\"ELECTRICITY\",\"id\":6587,\"key\":\"key_34f41011dea692_Updated\",\"name\":\"HVAC - by formula OneUpdated\",\"resolution\":\"D\",\"target\":{\"type\":\"ENERGY_PERCENTAGE\",\"units\":\"%\",\"value\":10.0}}"}],"_postman_id":"2a206d5f-ce42-4354-814b-c1bdca885c02"},{"name":"Delete a Project","id":"6e2e5aac-3d49-44f8-abb0-6a44168083af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/mv/projects/1883","description":"<p>Delete a project that belongs to the deployment.</p>\n","urlObject":{"path":["mv","projects","1883"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"699d7f36-a7e5-4cd2-9477-0e2a3b1e7391","name":"projects/{id}","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/mv/projects/1883"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 25 May 2020 14:23:30 GMT"},{"key":"Content-Length","value":"195"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E422\",\n    \"errors\": [\n        {\n            \"field\": \"id\",\n            \"message\": \"The project is part of the groups [6, 3, 5], please remove them before deleting the project.\"\n        }\n    ],\n    \"message\": \"Entity validation error\",\n    \"status\": 422\n}"}],"_postman_id":"6e2e5aac-3d49-44f8-abb0-6a44168083af"},{"name":"Retrieve Readings of a Project","id":"fe40fd2b-c37d-4ee0-96ea-2e40e0ffb015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/projects/2745/readings?from=2018-01-01T00:00:00&to=2018-01-05T00:00:00&resolution=D&format=DISCRETE&reporting_units=ENERGY_SOURCE-ELECTRICITY&savings_by=SECONDARY_TARGET","urlObject":{"path":["mv","projects","2745","readings"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period</p>\n","type":"text/plain"},"key":"from","value":"2018-01-01T00:00:00"},{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period</p>\n","type":"text/plain"},"key":"to","value":"2018-01-05T00:00:00"},{"description":{"content":"<p>Enum: <code>H, D, W, M</code>. Default Project Resolution</p>\n","type":"text/plain"},"key":"resolution","value":"D"},{"description":{"content":"<p>Enum: <code>DISCRETE, CUMULATIVE</code>, default value DISCRETE</p>\n","type":"text/plain"},"key":"format","value":"DISCRETE"},{"description":{"content":"<p>Enum Combination from reporting units natural key: <em>SOURCE-TYPE</em>, Default value is any setting by default the reporting unit to the energy source of the project</p>\n","type":"text/plain"},"key":"reporting_units","value":"ENERGY_SOURCE-ELECTRICITY"},{"description":{"content":"<p>Enum: 'REFERENCE, DEFAULT_TARGET, SECONDARY_TARGET'. Default value REFERENCE</p>\n","type":"text/plain"},"key":"savings_by","value":"SECONDARY_TARGET"}],"variable":[]}},"response":[{"id":"c0fbf5a8-3005-460f-9c15-535c05620fc5","name":"readings","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/projects/2745/readings?to=2018-01-05T00:00:00&resolution=H&format=DEFAULT&conversion=NONE","host":["{{api_v3.host}}"],"path":["mv","projects","2745","readings"],"query":[{"key":"to","value":"2018-01-05T00:00:00","description":"this is a test"},{"key":"resolution","value":"H"},{"key":"format","value":"DEFAULT"},{"key":"conversion","value":"NONE"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"units\": \"kw\",\n    \"timezone\": \"Europe/Madrid\",\n    \"settings\": {\n        \"error\": {\n            \"value\": 2,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        },\n        \"target\": {\n            \"value\": 5,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        }\n    },\n    \"values\": [\n        {\n            \"baseline\": 2.4,\n            \"real\": 2.1,\n            \"savings\": 0.3,\n            \"savings_percent\": 5.6,\n            \"target\": 2.2,\n            \"ts\": \"2019-11-15T00:00:00+01:00\",\n            \"saving_status\": \"GOOD\"\n        },\n        {\n            \"baseline\": 2.8,\n            \"real\": 2.1,\n            \"savings\": 0.6,\n            \"savings_percent\": 10.2,\n            \"target\": 2.2,\n            \"ts\": \"2019-11-16T00:00:00+01:00\",\n            \"saving_status\": \"BAD\"\n        }\n    ]\n}"}],"_postman_id":"fe40fd2b-c37d-4ee0-96ea-2e40e0ffb015"},{"name":"Retrieve Summary of a Project","id":"8d3c1d00-0287-4358-8bf0-7ff7780e439b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/mv/projects/6587/summary?from=2017-10-01T00:00:00&to=2018-11-30T23:59:59&reporting_units=ENERGY_SOURCE-ELECTRICITY&savings_by=SECONDARY_TARGET","urlObject":{"path":["mv","projects","6587","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period</p>\n","type":"text/plain"},"key":"from","value":"2017-10-01T00:00:00"},{"description":{"content":"<p>DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period</p>\n","type":"text/plain"},"key":"to","value":"2018-11-30T23:59:59"},{"description":{"content":"<p>Check on projects description for more information</p>\n","type":"text/plain"},"key":"reporting_units","value":"ENERGY_SOURCE-ELECTRICITY"},{"description":{"content":"<p>Enum: 'REFERENCE, DEFAULT_TARGET, SECONDARY_TARGET'. Default value REFERENCE</p>\n","type":"text/plain"},"key":"savings_by","value":"SECONDARY_TARGET"}],"variable":[]}},"response":[{"id":"75c72361-e394-4554-9b76-7b44391e19a9","name":"summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/mv/projects/5006/summary?from=2019-10-01T00:00:00&to=2019-11-30T23:59:59&conversion_factor=","host":["{{api_v3.host}}"],"path":["mv","projects","5006","summary"],"query":[{"key":"from","value":"2019-10-01T00:00:00","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. Default start of Demonstrative Period"},{"key":"to","value":"2019-11-30T23:59:59","description":"DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. Default End of Demonstrative Period"},{"key":"conversion_factor","value":"","description":"Enum: `PRIMARY_ENERGY, FINAL_ENERGY, CARBON_EQUIVALENT`, by default this value is not passed to the API so not conversion factor is applied."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"project_id\": 5006,\n    \"from\": \"2019-10-01T00:00:00+01:00\",\n    \"to\": \"2019-11-30T23:59:59+01:00\",\n    \"days_between\": 60,\n    \"units\": \"kw\",\n    \"timezone\": \"Europe/Madrid\",\n    \"settings\": {\n        \"error\": {\n            \"value\": 2,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        },\n        \"target\": {\n            \"value\": 5,\n            \"units\": \"%\",\n            \"type\": \"PERCENTAGE\"\n        }\n    },\n    \"values\": {\n        \"real\": {\n            \"accum\": 25,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"baseline\": {\n            \"accum\": 30,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"savings\": {\n            \"accum\": 5,\n            \"avg\": 10,\n            \"median\": 10,\n            \"max\": 12,\n            \"min\": 2,\n            \"count\": 3\n        },\n        \"savings_percent\": 16.66,\n        \"target\": 28.5,\n        \"days_elapsed\": 3\n    }\n}"}],"_postman_id":"8d3c1d00-0287-4358-8bf0-7ff7780e439b"}],"id":"a9e6a29d-99ff-408c-942c-c5bfcaf50d7e","description":"<h1 id=\"mv-service-that-allows-to-get-create-update-and-delete-measure-and-verification-projects\">MV service that allows to get, create, update and delete Measure and Verification projects.</h1>\n<p>The minimum licence that allows the use of MV Project services: <strong>FULL</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Description</th>\n<th>Endpoint</th>\n<th>User Roles</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get a single project</td>\n<td><code>[GET]  projects/{id}</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER, ROLE_CLIENT, ROLE_MINIMAL, ROLE_DEMO</td>\n</tr>\n<tr>\n<td>Fetch all projects by criteria</td>\n<td><code>[GET]  projects</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER, ROLE_CLIENT, ROLE_MINIMAL, ROLE_DEMO</td>\n</tr>\n<tr>\n<td>Create a project</td>\n<td><code>[POST] projects</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n<tr>\n<td>Update a project</td>\n<td><code>[PUT]  projects</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n<tr>\n<td>Delete a project</td>\n<td><code>[DEL]  projects/{id}</code></td>\n<td>ROLE_SUPERADMIN, ROLE_SUPERVISOR, ROLE_USER</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"reportingunits\">ReportingUnits</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reporting_units</td>\n<td>YES</td>\n<td><code>source</code>-<code>type</code> Check below for possible combinations, <em>dash is mandatory</em></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"source-values\">Source values</h2>\n<p>Enum: <code>ENERGY_SOURCE, CONVERSION_FACTOR</code></p>\n<h2 id=\"type-values-for-energysource\">Type values for EnergySource</h2>\n<p>Enum: <code>ELECTRICITY, GAS, WATER, GASOIL, GAS_VOL, GAS_NOR, GASOIL_VOL, PRODUCTION, HEAT, COOLING, AIRVOLUME, LNG_ENERGY, BIOMASS</code></p>\n<h2 id=\"type-values-for-conversionfactor\">Type values for ConversionFactor</h2>\n<p>Enum: <code>FINAL_ENERGY, CARBON_EQUIVALENT, PRIMARY_ENERGY</code></p>\n","event":[{"listen":"prerequest","script":{"id":"192db832-cf1c-4fb5-a2d5-5e6fa3ab86eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"698537b6-cbd0-44e6-8aae-0dfb725f95d3","type":"text/javascript","exec":[""]}}],"_postman_id":"a9e6a29d-99ff-408c-942c-c5bfcaf50d7e"}],"id":"6143a81b-762f-4136-ac7f-86c5139b9b6d","event":[{"listen":"prerequest","script":{"id":"02516da2-404b-48d9-885e-96844bdcfe3d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ca9db02e-1085-49fb-a516-8d1df88b8e37","type":"text/javascript","exec":[""]}}],"_postman_id":"6143a81b-762f-4136-ac7f-86c5139b9b6d","description":""},{"name":"Parameters","item":[{"name":"List all Parameters","id":"8cd04945-1972-40dd-9602-b35b3c0acdda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/parameters?device_id=489085&start=&limit=&name=&limit=20","description":"<p>Retrieve list of parameters for the selected device and the selected filters.</p>\n","urlObject":{"path":["parameters"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[MANDATORY] - Integer</p>\n","type":"text/plain"},"key":"device_id","value":"489085"},{"description":{"content":"<p>min 0</p>\n","type":"text/plain"},"key":"start","value":""},{"description":{"content":"<p>default 20, max 500</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Name filtering</p>\n","type":"text/plain"},"key":"name","value":""},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"a5dfe682-e038-43eb-bd40-5410a7d13dba","name":"List all Parameters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/parameters?start=&limit=&name","host":["{{api_v3.host}}"],"path":["parameters"],"query":[{"key":"device_id","value":"27663","disabled":true},{"key":"start","value":"","description":"min 0"},{"key":"limit","value":"","description":"default 20, max 500"},{"key":"name","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[""],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": 2001,\n        \"key\": \"CUSTOM_PARAMETER_2001\",\n        \"name\": \"Active Energy\",\n        \"nature\": \"ACCUMULATED\",\n        \"i18n_name_key\": \"servicetype.active-energy\",\n        \"units\": \"kWh\",\n        \"color\": null,\n        \"icon\": \"data_point\"\n    },\n    {\n        \"id\": 420,\n        \"key\": \"GASENERGY\",\n        \"name\": \"Gas energy\",\n        \"nature\": \"ACCUMULATED\",\n        \"i18n_name_key\": \"servicetype.gas-energy\",\n        \"units\": \"kWh\",\n        \"color\": \"#00FF00\",\n        \"icon\": \"gas\"\n    },\n    {\n        \"id\": 302,\n        \"key\": \"HUMID\",\n        \"name\": \"Humidity\",\n        \"nature\": \"INSTANTANEOUS\",\n        \"i18n_name_key\": \"servicetype.humidity\",\n        \"units\": \"ºC\",\n        \"color\": \"#0000FF\",\n        \"icon\": \"humidity\"\n    },\n    {\n        \"id\": 2000,\n        \"key\": \"CUSTOM_PARAMETER_2000\",\n        \"name\": \"Temperature\",\n        \"nature\": \"ACCUMULATED\",\n        \"i18n_name_key\": \"servicetype.temperature\",\n        \"units\": \"ºC\",\n        \"color\": \"#FFFF00\",\n        \"icon\": \"temp\"\n    }\n]"}],"_postman_id":"8cd04945-1972-40dd-9602-b35b3c0acdda"},{"name":"List available data Resolutions for a specific Parameter and Device","id":"92294194-c9b5-4339-9239-c67e46f72025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/parameters/CDD/resolutions?device_id=500098&from=2018-03-12T00:00:00&to=2018-03-13T10:00:00","description":"<p>Retrieves a list of basic resolutions for a chosen device.</p>\n<p>The field <strong>API-KEY</strong> in the request, \n{api_v3.host}}/parameters/<strong>API-KEY</strong>/resolutions?device_id=500098&amp;from=2018-03-12T00:00:00&amp;to=2018-03-13T10:00:00,\ncan be a value from the column 'API Key' of the sheet \n<a href=\"https://docs.google.com/spreadsheets/d/1W97Yv9UWR9iwmXzknxSQSiIzjt4capmWuaZsAwNJD0g/pub?hl=en&amp;hl=en&amp;single=true&amp;gid=0&amp;output=html\">https://docs.google.com/spreadsheets/d/1W97Yv9UWR9iwmXzknxSQSiIzjt4capmWuaZsAwNJD0g/pub?hl=en&amp;hl=en&amp;single=true&amp;gid=0&amp;output=html</a> .</p>\n","urlObject":{"path":["parameters","CDD","resolutions"],"host":["{{api_v3.host}}"],"query":[{"key":"device_id","value":"500098"},{"description":{"content":"<p>Only year and month are applied to filter</p>\n","type":"text/plain"},"key":"from","value":"2018-03-12T00:00:00"},{"description":{"content":"<p>Only year and month are applied to filter</p>\n","type":"text/plain"},"key":"to","value":"2018-03-13T10:00:00"}],"variable":[]}},"response":[{"id":"fc3b9f1b-1396-4883-ba82-4bc2a2477bdf","name":"List available data Resolutions for a specific Parameter and Device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/parameters/CDD/resolutions?device_id=500098&from=2018-03-12T00:00:00&to=2018-03-13T10:00:00","host":["{{api_v3.host}}"],"path":["parameters","CDD","resolutions"],"query":[{"key":"device_id","value":"500098"},{"key":"from","value":"2018-03-12T00:00:00","description":"Only year and month are applied to filter"},{"key":"to","value":"2018-03-13T10:00:00","description":"Only year and month are applied to filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"device_id\": 787,\n        \"raw_resolutions\": [\n            \"TM\", \"H\"\n        ],\n        \"available_resolutions\": [\n            \"TM\", \"QH\", \"HH\", \"H\", \"D\", \"M\"\n        ]\n    }\n]"}],"_postman_id":"92294194-c9b5-4339-9239-c67e46f72025"}],"id":"d49b3e3d-7f4d-4711-bfac-f2bd2b549b89","event":[{"listen":"prerequest","script":{"id":"46af1f25-e214-421a-aa0b-5991e40aba90","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f54cae87-ea8d-458f-8091-861f4d0109ff","type":"text/javascript","exec":[""]}}],"_postman_id":"d49b3e3d-7f4d-4711-bfac-f2bd2b549b89","description":""},{"name":"Readings","item":[{"name":"Retrieve the Readings using a Parameter key for a specific time period","id":"359359c9-eb88-4a19-8c8e-225a5d6ac0e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/readings?device_id=&operation=&parameter_key=&resolution=&from=&to=&rounded","urlObject":{"path":["readings"],"host":["{{api_v3.host}}"],"query":[{"key":"device_id","value":""},{"description":{"content":"<p>operation one of (AVG, MAX, MIN, DELTA, RAW)</p>\n","type":"text/plain"},"key":"operation","value":""},{"key":"parameter_key","value":""},{"description":{"content":"<p>resolution one of (FM, TM, QH, HH, H, D, W, M, B)</p>\n","type":"text/plain"},"key":"resolution","value":""},{"description":{"content":"<p>Start date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"from","value":""},{"description":{"content":"<p>End date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"to","value":""},{"description":{"content":"<p>NONE, DECIMALS_0, ..., DECIMALS_8. Default: DECIMALS_6</p>\n","type":"text/plain"},"key":"rounded","value":null}],"variable":[]}},"response":[{"id":"3950d900-67b0-4443-9c55-b0b5ae33c396","name":"Retrieve the Readings using a Parameter key for a specific time period by month","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","value":"b2bcc46f162cf64c6599","type":"text"}],"url":{"raw":"{{api_v3.host}}/readings?device_id=945976&operation=DELTA&parameter_key=EACTIVE&resolution=M&from=2011-08-10T00:00:00&to=2020-08-11T23:59:59","host":["{{api_v3.host}}"],"path":["readings"],"query":[{"key":"device_id","value":"945976"},{"key":"operation","value":"DELTA"},{"key":"parameter_key","value":"EACTIVE"},{"key":"resolution","value":"M"},{"key":"from","value":"2011-08-10T00:00:00"},{"key":"to","value":"2020-08-11T23:59:59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"980"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1832"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:29:27 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9927"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"48632"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"100"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"timezone\": \"Europe/Madrid\",\n    \"units\": \"kWh\",\n    \"values\": [\n        {\n            \"ts\": \"2012-01-01T00:00:00+01:00\",\n            \"v\": 15869\n        }\n    ]\n}"},{"id":"3e226b71-6902-4d78-9af0-a8a82aee3358","name":"Retrieve the Readings using a Parameter key for a specific time period","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/readings?device_id=945976&operation=DELTA&parameter_key=EACTIVE&resolution=D&from=2011-08-10T00:00:00&to=2020-08-11T23:59:59","host":["{{api_v3.host}}"],"path":["readings"],"query":[{"key":"device_id","value":"945976"},{"key":"operation","value":"DELTA"},{"key":"parameter_key","value":"EACTIVE"},{"key":"resolution","value":"D"},{"key":"from","value":"2011-08-10T00:00:00"},{"key":"to","value":"2020-08-11T23:59:59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"995"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2491"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:18:28 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9942"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"49291"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"640"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"timezone\": \"Europe/Madrid\",\n    \"units\": \"kWh\",\n    \"values\": [\n        {\n            \"ts\": \"2012-01-01T00:00:00+01:00\",\n            \"v\": 1313\n        },\n        {\n            \"ts\": \"2012-01-02T00:00:00+01:00\",\n            \"v\": 1319.533333\n        },\n        {\n            \"ts\": \"2012-01-03T00:00:00+01:00\",\n            \"v\": 1350.6\n        },\n        {\n            \"ts\": \"2012-01-04T00:00:00+01:00\",\n            \"v\": 1368.466667\n        },\n        {\n            \"ts\": \"2012-01-05T00:00:00+01:00\",\n            \"v\": 1337.266667\n        },\n        {\n            \"ts\": \"2012-01-06T00:00:00+01:00\",\n            \"v\": 1320.666667\n        },\n        {\n            \"ts\": \"2012-01-07T00:00:00+01:00\",\n            \"v\": 1373.6\n        },\n        {\n            \"ts\": \"2012-01-08T00:00:00+01:00\",\n            \"v\": 1444.2\n        },\n        {\n            \"ts\": \"2012-01-09T00:00:00+01:00\",\n            \"v\": 1371.2\n        },\n        {\n            \"ts\": \"2012-01-10T00:00:00+01:00\",\n            \"v\": 1284.733333\n        },\n        {\n            \"ts\": \"2012-01-11T00:00:00+01:00\",\n            \"v\": 1305.266667\n        },\n        {\n            \"ts\": \"2012-01-12T00:00:00+01:00\",\n            \"v\": 1080.466667\n        }\n    ]\n}"}],"_postman_id":"359359c9-eb88-4a19-8c8e-225a5d6ac0e8"},{"name":"Retrieve the Readings using a Parameter IDs for a specific time period","id":"9a39980a-3003-4d0a-8976-755a819f47ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/readings/by-parameter-id?device_id=12008&parameter_id=40221&from=2020-01-01T00:00:00&to=2020-05-01T00:00:00&rounded=","urlObject":{"path":["readings","by-parameter-id"],"host":["{{api_v3.host}}"],"query":[{"key":"device_id","value":"12008"},{"key":"parameter_id","value":"40221"},{"description":{"content":"<p>Start date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>End date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"to","value":"2020-05-01T00:00:00"},{"description":{"content":"<p>NONE, DECIMALS_0, ..., DECIMALS_8. Default: DECIMALS_6</p>\n","type":"text/plain"},"key":"rounded","value":""}],"variable":[]}},"response":[{"id":"247222c6-ae04-4bbb-bed4-e85e09977fd5","name":"Retrieve the Readings using a Parameter IDs for a specific time period","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/readings/by-parameter-id?device_id=945976&parameter_id=40205&from=2012-01-01T00:00:00&to=2012-12-06T00:00:00","host":["{{api_v3.host}}"],"path":["readings","by-parameter-id"],"query":[{"key":"device_id","value":"945976"},{"key":"parameter_id","value":"40205"},{"key":"from","value":"2012-01-01T00:00:00"},{"key":"to","value":"2012-12-06T00:00:00"},{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"986"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2272"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:22:07 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9933"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"49072"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"timezone\": \"Europe/Madrid\",\n    \"units\": \"kW\",\n    \"values\": [\n        {\n            \"ts\": \"2012-01-01T00:00:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-01T00:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T00:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T00:45:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-01T01:00:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T01:15:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-01T01:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T01:45:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-01T02:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T02:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T02:30:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T02:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T03:00:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T03:15:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T03:30:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T03:45:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T04:00:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T04:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T04:30:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-01T04:45:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T05:00:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-01T05:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T05:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T05:45:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T06:00:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-01T06:15:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-01T06:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T06:45:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-01T07:00:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T07:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T07:30:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-01T07:45:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-01T08:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T08:15:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T08:30:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T08:45:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T09:00:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T09:15:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T09:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T09:45:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T10:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T10:15:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T10:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T10:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T11:00:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T11:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T11:30:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-01T11:45:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-01T12:00:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-01T12:15:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T12:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T12:45:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-01T13:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T13:15:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T13:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T13:45:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T14:00:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T14:15:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-01T14:30:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T14:45:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-01T15:00:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-01T15:15:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-01T15:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T15:45:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T16:00:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T16:15:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T16:30:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T16:45:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-01T17:00:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T17:15:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T17:30:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T17:45:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T18:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T18:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T18:30:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T18:45:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T19:00:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T19:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T19:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T19:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T20:00:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T20:15:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T20:30:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-01T20:45:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T21:00:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T21:15:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T21:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-01T21:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-01T22:00:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T22:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-01T22:30:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-01T22:45:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-01T23:00:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-01T23:15:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-01T23:30:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-01T23:45:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-02T00:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-02T00:15:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-02T00:30:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-02T00:45:00+01:00\",\n            \"v\": 45.066667\n        },\n        {\n            \"ts\": \"2012-01-02T01:00:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-02T01:15:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-02T01:30:00+01:00\",\n            \"v\": 64.533333\n        },\n        {\n            \"ts\": \"2012-01-02T01:45:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-02T02:00:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-02T02:15:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-02T02:30:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-02T02:45:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-02T03:00:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-02T03:15:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-02T03:30:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-02T03:45:00+01:00\",\n            \"v\": 67.2\n        },\n        {\n            \"ts\": \"2012-01-02T04:00:00+01:00\",\n            \"v\": 56.8\n        },\n        {\n            \"ts\": \"2012-01-02T04:15:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-02T04:30:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-02T04:45:00+01:00\",\n            \"v\": 64.533333\n        },\n        {\n            \"ts\": \"2012-01-02T05:00:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-02T05:15:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-02T05:30:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-02T05:45:00+01:00\",\n            \"v\": 47.2\n        },\n        {\n            \"ts\": \"2012-01-02T06:00:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-02T06:15:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-02T06:30:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-02T06:45:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-02T07:00:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-02T07:15:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-02T07:30:00+01:00\",\n            \"v\": 74.133333\n        },\n        {\n            \"ts\": \"2012-01-02T07:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-02T08:00:00+01:00\",\n            \"v\": 47.2\n        },\n        {\n            \"ts\": \"2012-01-02T08:15:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-02T08:30:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-02T08:45:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-02T09:00:00+01:00\",\n            \"v\": 42.133333\n        },\n        {\n            \"ts\": \"2012-01-02T09:15:00+01:00\",\n            \"v\": 70.933333\n        },\n        {\n            \"ts\": \"2012-01-02T09:30:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-02T09:45:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-02T10:00:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-02T10:15:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-02T10:30:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-02T10:45:00+01:00\",\n            \"v\": 32.266667\n        },\n        {\n            \"ts\": \"2012-01-02T11:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-02T11:15:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-02T11:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-02T11:45:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-02T12:00:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-02T12:15:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-02T12:30:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-02T12:45:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-02T13:00:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-02T13:15:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-02T13:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-02T13:45:00+01:00\",\n            \"v\": 36.266667\n        },\n        {\n            \"ts\": \"2012-01-02T14:00:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-02T14:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-02T14:30:00+01:00\",\n            \"v\": 47.2\n        },\n        {\n            \"ts\": \"2012-01-02T14:45:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-02T15:00:00+01:00\",\n            \"v\": 34.4\n        },\n        {\n            \"ts\": \"2012-01-02T15:15:00+01:00\",\n            \"v\": 66.4\n        },\n        {\n            \"ts\": \"2012-01-02T15:30:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-02T15:45:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-02T16:00:00+01:00\",\n            \"v\": 57.333333\n        },\n        {\n            \"ts\": \"2012-01-02T16:15:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-02T16:30:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-02T16:45:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-02T17:00:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-02T17:15:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-02T17:30:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-02T17:45:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-02T18:00:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-02T18:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-02T18:30:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-02T18:45:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-02T19:00:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-02T19:15:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-02T19:30:00+01:00\",\n            \"v\": 62.133333\n        },\n        {\n            \"ts\": \"2012-01-02T19:45:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-02T20:00:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-02T20:15:00+01:00\",\n            \"v\": 69.866667\n        },\n        {\n            \"ts\": \"2012-01-02T20:30:00+01:00\",\n            \"v\": 39.733333\n        },\n        {\n            \"ts\": \"2012-01-02T20:45:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-02T21:00:00+01:00\",\n            \"v\": 59.733333\n        },\n        {\n            \"ts\": \"2012-01-02T21:15:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-02T21:30:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-02T21:45:00+01:00\",\n            \"v\": 67.2\n        },\n        {\n            \"ts\": \"2012-01-02T22:00:00+01:00\",\n            \"v\": 54.933333\n        },\n        {\n            \"ts\": \"2012-01-02T22:15:00+01:00\",\n            \"v\": 41.066667\n        },\n        {\n            \"ts\": \"2012-01-02T22:30:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-02T22:45:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-02T23:00:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-02T23:15:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-02T23:30:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-02T23:45:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-03T00:00:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-03T00:15:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-03T00:30:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-03T00:45:00+01:00\",\n            \"v\": 74.666667\n        },\n        {\n            \"ts\": \"2012-01-03T01:00:00+01:00\",\n            \"v\": 56.266667\n        },\n        {\n            \"ts\": \"2012-01-03T01:15:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-03T01:30:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-03T01:45:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-03T02:00:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-03T02:15:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-03T02:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-03T02:45:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-03T03:00:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-03T03:15:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-03T03:30:00+01:00\",\n            \"v\": 59.733333\n        },\n        {\n            \"ts\": \"2012-01-03T03:45:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-03T04:00:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-03T04:15:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-03T04:30:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-03T04:45:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-03T05:00:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-03T05:15:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-03T05:30:00+01:00\",\n            \"v\": 54.666667\n        },\n        {\n            \"ts\": \"2012-01-03T05:45:00+01:00\",\n            \"v\": 37.866667\n        },\n        {\n            \"ts\": \"2012-01-03T06:00:00+01:00\",\n            \"v\": 62.133333\n        },\n        {\n            \"ts\": \"2012-01-03T06:15:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-03T06:30:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-03T06:45:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-03T07:00:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-03T07:15:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-03T07:30:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-03T07:45:00+01:00\",\n            \"v\": 45.6\n        },\n        {\n            \"ts\": \"2012-01-03T08:00:00+01:00\",\n            \"v\": 67.2\n        },\n        {\n            \"ts\": \"2012-01-03T08:15:00+01:00\",\n            \"v\": 55.2\n        },\n        {\n            \"ts\": \"2012-01-03T08:30:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-03T08:45:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-03T09:00:00+01:00\",\n            \"v\": 65.066667\n        },\n        {\n            \"ts\": \"2012-01-03T09:15:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-03T09:30:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-03T09:45:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-03T10:00:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-03T10:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-03T10:30:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-03T10:45:00+01:00\",\n            \"v\": 56.8\n        },\n        {\n            \"ts\": \"2012-01-03T11:00:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-03T11:15:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-03T11:30:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-03T11:45:00+01:00\",\n            \"v\": 38.666667\n        },\n        {\n            \"ts\": \"2012-01-03T12:00:00+01:00\",\n            \"v\": 73.6\n        },\n        {\n            \"ts\": \"2012-01-03T12:15:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-03T12:30:00+01:00\",\n            \"v\": 53.6\n        },\n        {\n            \"ts\": \"2012-01-03T12:45:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-03T13:00:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-03T13:15:00+01:00\",\n            \"v\": 50.666667\n        },\n        {\n            \"ts\": \"2012-01-03T13:30:00+01:00\",\n            \"v\": 32.266667\n        },\n        {\n            \"ts\": \"2012-01-03T13:45:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-03T14:00:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-03T14:15:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-03T14:30:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-03T14:45:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-03T15:00:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-03T15:15:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-03T15:30:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-03T15:45:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-03T16:00:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-03T16:15:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-03T16:30:00+01:00\",\n            \"v\": 71.466667\n        },\n        {\n            \"ts\": \"2012-01-03T16:45:00+01:00\",\n            \"v\": 63.2\n        },\n        {\n            \"ts\": \"2012-01-03T17:00:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-03T17:15:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-03T17:30:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-03T17:45:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-03T18:00:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-03T18:15:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-03T18:30:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-03T18:45:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-03T19:00:00+01:00\",\n            \"v\": 62.133333\n        },\n        {\n            \"ts\": \"2012-01-03T19:15:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-03T19:30:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-03T19:45:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-03T20:00:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-03T20:15:00+01:00\",\n            \"v\": 74.133333\n        },\n        {\n            \"ts\": \"2012-01-03T20:30:00+01:00\",\n            \"v\": 48.8\n        },\n        {\n            \"ts\": \"2012-01-03T20:45:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-03T21:00:00+01:00\",\n            \"v\": 39.733333\n        },\n        {\n            \"ts\": \"2012-01-03T21:15:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-03T21:30:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-03T21:45:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-03T22:00:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-03T22:15:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-03T22:30:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-03T22:45:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-03T23:00:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-03T23:15:00+01:00\",\n            \"v\": 36.266667\n        },\n        {\n            \"ts\": \"2012-01-03T23:30:00+01:00\",\n            \"v\": 42.133333\n        },\n        {\n            \"ts\": \"2012-01-03T23:45:00+01:00\",\n            \"v\": 71.733333\n        },\n        {\n            \"ts\": \"2012-01-04T00:00:00+01:00\",\n            \"v\": 66.933333\n        },\n        {\n            \"ts\": \"2012-01-04T00:15:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-04T00:30:00+01:00\",\n            \"v\": 47.2\n        },\n        {\n            \"ts\": \"2012-01-04T00:45:00+01:00\",\n            \"v\": 37.866667\n        },\n        {\n            \"ts\": \"2012-01-04T01:00:00+01:00\",\n            \"v\": 63.2\n        },\n        {\n            \"ts\": \"2012-01-04T01:15:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-04T01:30:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-04T01:45:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-04T02:00:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-04T02:15:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-04T02:30:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-04T02:45:00+01:00\",\n            \"v\": 33.866667\n        },\n        {\n            \"ts\": \"2012-01-04T03:00:00+01:00\",\n            \"v\": 58.133333\n        },\n        {\n            \"ts\": \"2012-01-04T03:15:00+01:00\",\n            \"v\": 34.4\n        },\n        {\n            \"ts\": \"2012-01-04T03:30:00+01:00\",\n            \"v\": 66.933333\n        },\n        {\n            \"ts\": \"2012-01-04T03:45:00+01:00\",\n            \"v\": 52.533333\n        },\n        {\n            \"ts\": \"2012-01-04T04:00:00+01:00\",\n            \"v\": 61.066667\n        },\n        {\n            \"ts\": \"2012-01-04T04:15:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-04T04:30:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-04T04:45:00+01:00\",\n            \"v\": 71.466667\n        },\n        {\n            \"ts\": \"2012-01-04T05:00:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-04T05:15:00+01:00\",\n            \"v\": 57.6\n        },\n        {\n            \"ts\": \"2012-01-04T05:30:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-04T05:45:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-04T06:00:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-04T06:15:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-04T06:30:00+01:00\",\n            \"v\": 78.133333\n        },\n        {\n            \"ts\": \"2012-01-04T06:45:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-04T07:00:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-04T07:15:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-04T07:30:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-04T07:45:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-04T08:00:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-04T08:15:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-04T08:30:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-04T08:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-04T09:00:00+01:00\",\n            \"v\": 48.8\n        },\n        {\n            \"ts\": \"2012-01-04T09:15:00+01:00\",\n            \"v\": 60.8\n        },\n        {\n            \"ts\": \"2012-01-04T09:30:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-04T09:45:00+01:00\",\n            \"v\": 59.733333\n        },\n        {\n            \"ts\": \"2012-01-04T10:00:00+01:00\",\n            \"v\": 54.4\n        },\n        {\n            \"ts\": \"2012-01-04T10:15:00+01:00\",\n            \"v\": 32.266667\n        },\n        {\n            \"ts\": \"2012-01-04T10:30:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-04T10:45:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-04T11:00:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-04T11:15:00+01:00\",\n            \"v\": 52\n        },\n        {\n            \"ts\": \"2012-01-04T11:30:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-04T11:45:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-04T12:00:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-04T12:15:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-04T12:30:00+01:00\",\n            \"v\": 71.466667\n        },\n        {\n            \"ts\": \"2012-01-04T12:45:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-04T13:00:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-04T13:15:00+01:00\",\n            \"v\": 38.4\n        },\n        {\n            \"ts\": \"2012-01-04T13:30:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-04T13:45:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-04T14:00:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-04T14:15:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-04T14:30:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-04T14:45:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-04T15:00:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-04T15:15:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-04T15:30:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-04T15:45:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-04T16:00:00+01:00\",\n            \"v\": 69.866667\n        },\n        {\n            \"ts\": \"2012-01-04T16:15:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-04T16:30:00+01:00\",\n            \"v\": 76.266667\n        },\n        {\n            \"ts\": \"2012-01-04T16:45:00+01:00\",\n            \"v\": 78.666667\n        },\n        {\n            \"ts\": \"2012-01-04T17:00:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-04T17:15:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-04T17:30:00+01:00\",\n            \"v\": 33.066667\n        },\n        {\n            \"ts\": \"2012-01-04T17:45:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-04T18:00:00+01:00\",\n            \"v\": 41.866667\n        },\n        {\n            \"ts\": \"2012-01-04T18:15:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-04T18:30:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-04T18:45:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-04T19:00:00+01:00\",\n            \"v\": 56.8\n        },\n        {\n            \"ts\": \"2012-01-04T19:15:00+01:00\",\n            \"v\": 67.466667\n        },\n        {\n            \"ts\": \"2012-01-04T19:30:00+01:00\",\n            \"v\": 58.133333\n        },\n        {\n            \"ts\": \"2012-01-04T19:45:00+01:00\",\n            \"v\": 34.4\n        },\n        {\n            \"ts\": \"2012-01-04T20:00:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-04T20:15:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-04T20:30:00+01:00\",\n            \"v\": 58.933333\n        },\n        {\n            \"ts\": \"2012-01-04T20:45:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-04T21:00:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-04T21:15:00+01:00\",\n            \"v\": 52.266667\n        },\n        {\n            \"ts\": \"2012-01-04T21:30:00+01:00\",\n            \"v\": 57.333333\n        },\n        {\n            \"ts\": \"2012-01-04T21:45:00+01:00\",\n            \"v\": 74.666667\n        },\n        {\n            \"ts\": \"2012-01-04T22:00:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-04T22:15:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-04T22:30:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-04T22:45:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-04T23:00:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-04T23:15:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-04T23:30:00+01:00\",\n            \"v\": 54.933333\n        },\n        {\n            \"ts\": \"2012-01-04T23:45:00+01:00\",\n            \"v\": 39.733333\n        },\n        {\n            \"ts\": \"2012-01-05T00:00:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-05T00:15:00+01:00\",\n            \"v\": 58.133333\n        },\n        {\n            \"ts\": \"2012-01-05T00:30:00+01:00\",\n            \"v\": 34.666667\n        },\n        {\n            \"ts\": \"2012-01-05T00:45:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-05T01:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-05T01:15:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-05T01:30:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-05T01:45:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-05T02:00:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-05T02:15:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-05T02:30:00+01:00\",\n            \"v\": 52.533333\n        },\n        {\n            \"ts\": \"2012-01-05T02:45:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-05T03:00:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-05T03:15:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-05T03:30:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-05T03:45:00+01:00\",\n            \"v\": 62.4\n        },\n        {\n            \"ts\": \"2012-01-05T04:00:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-05T04:15:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-05T04:30:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-05T04:45:00+01:00\",\n            \"v\": 32.533333\n        },\n        {\n            \"ts\": \"2012-01-05T05:00:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-05T05:15:00+01:00\",\n            \"v\": 52.266667\n        },\n        {\n            \"ts\": \"2012-01-05T05:30:00+01:00\",\n            \"v\": 56.266667\n        },\n        {\n            \"ts\": \"2012-01-05T05:45:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-05T06:00:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-05T06:15:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-05T06:30:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-05T06:45:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-05T07:00:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-05T07:15:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-05T07:30:00+01:00\",\n            \"v\": 44.533333\n        },\n        {\n            \"ts\": \"2012-01-05T07:45:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-05T08:00:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-05T08:15:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-05T08:30:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-05T08:45:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-05T09:00:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-05T09:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-05T09:30:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-05T09:45:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-05T10:00:00+01:00\",\n            \"v\": 78.133333\n        },\n        {\n            \"ts\": \"2012-01-05T10:15:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-05T10:30:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-05T10:45:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-05T11:00:00+01:00\",\n            \"v\": 65.6\n        },\n        {\n            \"ts\": \"2012-01-05T11:15:00+01:00\",\n            \"v\": 34.666667\n        },\n        {\n            \"ts\": \"2012-01-05T11:30:00+01:00\",\n            \"v\": 71.466667\n        },\n        {\n            \"ts\": \"2012-01-05T11:45:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-05T12:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-05T12:15:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-05T12:30:00+01:00\",\n            \"v\": 48.8\n        },\n        {\n            \"ts\": \"2012-01-05T12:45:00+01:00\",\n            \"v\": 61.066667\n        },\n        {\n            \"ts\": \"2012-01-05T13:00:00+01:00\",\n            \"v\": 74.666667\n        },\n        {\n            \"ts\": \"2012-01-05T13:15:00+01:00\",\n            \"v\": 55.2\n        },\n        {\n            \"ts\": \"2012-01-05T13:30:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-05T13:45:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-05T14:00:00+01:00\",\n            \"v\": 34.666667\n        },\n        {\n            \"ts\": \"2012-01-05T14:15:00+01:00\",\n            \"v\": 71.733333\n        },\n        {\n            \"ts\": \"2012-01-05T14:30:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-05T14:45:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-05T15:00:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-05T15:15:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-05T15:30:00+01:00\",\n            \"v\": 78.4\n        },\n        {\n            \"ts\": \"2012-01-05T15:45:00+01:00\",\n            \"v\": 56.266667\n        },\n        {\n            \"ts\": \"2012-01-05T16:00:00+01:00\",\n            \"v\": 59.466667\n        },\n        {\n            \"ts\": \"2012-01-05T16:15:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-05T16:30:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-05T16:45:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-05T17:00:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-05T17:15:00+01:00\",\n            \"v\": 44\n        },\n        {\n            \"ts\": \"2012-01-05T17:30:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-05T17:45:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-05T18:00:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-05T18:15:00+01:00\",\n            \"v\": 54.666667\n        },\n        {\n            \"ts\": \"2012-01-05T18:30:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-05T18:45:00+01:00\",\n            \"v\": 38.666667\n        },\n        {\n            \"ts\": \"2012-01-05T19:00:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-05T19:15:00+01:00\",\n            \"v\": 37.333333\n        },\n        {\n            \"ts\": \"2012-01-05T19:30:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-05T19:45:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-05T20:00:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-05T20:15:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-05T20:30:00+01:00\",\n            \"v\": 39.733333\n        },\n        {\n            \"ts\": \"2012-01-05T20:45:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-05T21:00:00+01:00\",\n            \"v\": 60.8\n        },\n        {\n            \"ts\": \"2012-01-05T21:15:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-05T21:30:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-05T21:45:00+01:00\",\n            \"v\": 55.2\n        },\n        {\n            \"ts\": \"2012-01-05T22:00:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-05T22:15:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-05T22:30:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-05T22:45:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-05T23:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-05T23:15:00+01:00\",\n            \"v\": 45.066667\n        },\n        {\n            \"ts\": \"2012-01-05T23:30:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-05T23:45:00+01:00\",\n            \"v\": 78.133333\n        },\n        {\n            \"ts\": \"2012-01-06T00:00:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-06T00:15:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-06T00:30:00+01:00\",\n            \"v\": 68\n        },\n        {\n            \"ts\": \"2012-01-06T00:45:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-06T01:00:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-06T01:15:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-06T01:30:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-06T01:45:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-06T02:00:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-06T02:15:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-06T02:30:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-06T02:45:00+01:00\",\n            \"v\": 33.866667\n        },\n        {\n            \"ts\": \"2012-01-06T03:00:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-06T03:15:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-06T03:30:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-06T03:45:00+01:00\",\n            \"v\": 45.066667\n        },\n        {\n            \"ts\": \"2012-01-06T04:00:00+01:00\",\n            \"v\": 58.933333\n        },\n        {\n            \"ts\": \"2012-01-06T04:15:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-06T04:30:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-06T04:45:00+01:00\",\n            \"v\": 46.4\n        },\n        {\n            \"ts\": \"2012-01-06T05:00:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-06T05:15:00+01:00\",\n            \"v\": 74.666667\n        },\n        {\n            \"ts\": \"2012-01-06T05:30:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-06T05:45:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-06T06:00:00+01:00\",\n            \"v\": 41.6\n        },\n        {\n            \"ts\": \"2012-01-06T06:15:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-06T06:30:00+01:00\",\n            \"v\": 54.666667\n        },\n        {\n            \"ts\": \"2012-01-06T06:45:00+01:00\",\n            \"v\": 38.666667\n        },\n        {\n            \"ts\": \"2012-01-06T07:00:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-06T07:15:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-06T07:30:00+01:00\",\n            \"v\": 44.533333\n        },\n        {\n            \"ts\": \"2012-01-06T07:45:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-06T08:00:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-06T08:15:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-06T08:30:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-06T08:45:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-06T09:00:00+01:00\",\n            \"v\": 32.533333\n        },\n        {\n            \"ts\": \"2012-01-06T09:15:00+01:00\",\n            \"v\": 41.6\n        },\n        {\n            \"ts\": \"2012-01-06T09:30:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-06T09:45:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-06T10:00:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-06T10:15:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-06T10:30:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-06T10:45:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-06T11:00:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-06T11:15:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-06T11:30:00+01:00\",\n            \"v\": 33.866667\n        },\n        {\n            \"ts\": \"2012-01-06T11:45:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-06T12:00:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-06T12:15:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-06T12:30:00+01:00\",\n            \"v\": 53.6\n        },\n        {\n            \"ts\": \"2012-01-06T12:45:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-06T13:00:00+01:00\",\n            \"v\": 75.733333\n        },\n        {\n            \"ts\": \"2012-01-06T13:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-06T13:30:00+01:00\",\n            \"v\": 50.666667\n        },\n        {\n            \"ts\": \"2012-01-06T13:45:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-06T14:00:00+01:00\",\n            \"v\": 62.133333\n        },\n        {\n            \"ts\": \"2012-01-06T14:15:00+01:00\",\n            \"v\": 37.333333\n        },\n        {\n            \"ts\": \"2012-01-06T14:30:00+01:00\",\n            \"v\": 55.733333\n        },\n        {\n            \"ts\": \"2012-01-06T14:45:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-06T15:00:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-06T15:15:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-06T15:30:00+01:00\",\n            \"v\": 50.666667\n        },\n        {\n            \"ts\": \"2012-01-06T15:45:00+01:00\",\n            \"v\": 34.933333\n        },\n        {\n            \"ts\": \"2012-01-06T16:00:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-06T16:15:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-06T16:30:00+01:00\",\n            \"v\": 66.933333\n        },\n        {\n            \"ts\": \"2012-01-06T16:45:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-06T17:00:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-06T17:15:00+01:00\",\n            \"v\": 41.6\n        },\n        {\n            \"ts\": \"2012-01-06T17:30:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-06T17:45:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-06T18:00:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-06T18:15:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-06T18:30:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-06T18:45:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-06T19:00:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-06T19:15:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-06T19:30:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-06T19:45:00+01:00\",\n            \"v\": 32.266667\n        },\n        {\n            \"ts\": \"2012-01-06T20:00:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-06T20:15:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-06T20:30:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-06T20:45:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-06T21:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-06T21:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-06T21:30:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-06T21:45:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-06T22:00:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-06T22:15:00+01:00\",\n            \"v\": 74.133333\n        },\n        {\n            \"ts\": \"2012-01-06T22:30:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-06T22:45:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-06T23:00:00+01:00\",\n            \"v\": 65.066667\n        },\n        {\n            \"ts\": \"2012-01-06T23:15:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-06T23:30:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-06T23:45:00+01:00\",\n            \"v\": 46.933333\n        },\n        {\n            \"ts\": \"2012-01-07T00:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-07T00:15:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-07T00:30:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-07T00:45:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-07T01:00:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-07T01:15:00+01:00\",\n            \"v\": 50.933333\n        },\n        {\n            \"ts\": \"2012-01-07T01:30:00+01:00\",\n            \"v\": 38.4\n        },\n        {\n            \"ts\": \"2012-01-07T01:45:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-07T02:00:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-07T02:15:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-07T02:30:00+01:00\",\n            \"v\": 65.6\n        },\n        {\n            \"ts\": \"2012-01-07T02:45:00+01:00\",\n            \"v\": 33.066667\n        },\n        {\n            \"ts\": \"2012-01-07T03:00:00+01:00\",\n            \"v\": 49.066667\n        },\n        {\n            \"ts\": \"2012-01-07T03:15:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-07T03:30:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-07T03:45:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-07T04:00:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-07T04:15:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-07T04:30:00+01:00\",\n            \"v\": 46.4\n        },\n        {\n            \"ts\": \"2012-01-07T04:45:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-07T05:00:00+01:00\",\n            \"v\": 37.333333\n        },\n        {\n            \"ts\": \"2012-01-07T05:15:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-07T05:30:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-07T05:45:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-07T06:00:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-07T06:15:00+01:00\",\n            \"v\": 57.333333\n        },\n        {\n            \"ts\": \"2012-01-07T06:30:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-07T06:45:00+01:00\",\n            \"v\": 34.933333\n        },\n        {\n            \"ts\": \"2012-01-07T07:00:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-07T07:15:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-07T07:30:00+01:00\",\n            \"v\": 78.666667\n        },\n        {\n            \"ts\": \"2012-01-07T07:45:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-07T08:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-07T08:15:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-07T08:30:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-07T08:45:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-07T09:00:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-07T09:15:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-07T09:30:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-07T09:45:00+01:00\",\n            \"v\": 36.533333\n        },\n        {\n            \"ts\": \"2012-01-07T10:00:00+01:00\",\n            \"v\": 45.6\n        },\n        {\n            \"ts\": \"2012-01-07T10:15:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-07T10:30:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-07T10:45:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-07T11:00:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-07T11:15:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-07T11:30:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-07T11:45:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-07T12:00:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-07T12:15:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-07T12:30:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-07T12:45:00+01:00\",\n            \"v\": 71.733333\n        },\n        {\n            \"ts\": \"2012-01-07T13:00:00+01:00\",\n            \"v\": 66.666667\n        },\n        {\n            \"ts\": \"2012-01-07T13:15:00+01:00\",\n            \"v\": 48.8\n        },\n        {\n            \"ts\": \"2012-01-07T13:30:00+01:00\",\n            \"v\": 58.933333\n        },\n        {\n            \"ts\": \"2012-01-07T13:45:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-07T14:00:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-07T14:15:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-07T14:30:00+01:00\",\n            \"v\": 47.2\n        },\n        {\n            \"ts\": \"2012-01-07T14:45:00+01:00\",\n            \"v\": 36.533333\n        },\n        {\n            \"ts\": \"2012-01-07T15:00:00+01:00\",\n            \"v\": 46.4\n        },\n        {\n            \"ts\": \"2012-01-07T15:15:00+01:00\",\n            \"v\": 78.666667\n        },\n        {\n            \"ts\": \"2012-01-07T15:30:00+01:00\",\n            \"v\": 61.066667\n        },\n        {\n            \"ts\": \"2012-01-07T15:45:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-07T16:00:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-07T16:15:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-07T16:30:00+01:00\",\n            \"v\": 75.733333\n        },\n        {\n            \"ts\": \"2012-01-07T16:45:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-07T17:00:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-07T17:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-07T17:30:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-07T17:45:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-07T18:00:00+01:00\",\n            \"v\": 78.4\n        },\n        {\n            \"ts\": \"2012-01-07T18:15:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-07T18:30:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-07T18:45:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-07T19:00:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-07T19:15:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-07T19:30:00+01:00\",\n            \"v\": 58.933333\n        },\n        {\n            \"ts\": \"2012-01-07T19:45:00+01:00\",\n            \"v\": 46.4\n        },\n        {\n            \"ts\": \"2012-01-07T20:00:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-07T20:15:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-07T20:30:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-07T20:45:00+01:00\",\n            \"v\": 41.066667\n        },\n        {\n            \"ts\": \"2012-01-07T21:00:00+01:00\",\n            \"v\": 56.266667\n        },\n        {\n            \"ts\": \"2012-01-07T21:15:00+01:00\",\n            \"v\": 61.066667\n        },\n        {\n            \"ts\": \"2012-01-07T21:30:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-07T21:45:00+01:00\",\n            \"v\": 58.133333\n        },\n        {\n            \"ts\": \"2012-01-07T22:00:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-07T22:15:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-07T22:30:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-07T22:45:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-07T23:00:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-07T23:15:00+01:00\",\n            \"v\": 63.2\n        },\n        {\n            \"ts\": \"2012-01-07T23:30:00+01:00\",\n            \"v\": 53.866667\n        },\n        {\n            \"ts\": \"2012-01-07T23:45:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-08T00:00:00+01:00\",\n            \"v\": 65.6\n        },\n        {\n            \"ts\": \"2012-01-08T00:15:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-08T00:30:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-08T00:45:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-08T01:00:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-08T01:15:00+01:00\",\n            \"v\": 75.733333\n        },\n        {\n            \"ts\": \"2012-01-08T01:30:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-08T01:45:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-08T02:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-08T02:15:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-08T02:30:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-08T02:45:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-08T03:00:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-08T03:15:00+01:00\",\n            \"v\": 65.066667\n        },\n        {\n            \"ts\": \"2012-01-08T03:30:00+01:00\",\n            \"v\": 78.4\n        },\n        {\n            \"ts\": \"2012-01-08T03:45:00+01:00\",\n            \"v\": 57.6\n        },\n        {\n            \"ts\": \"2012-01-08T04:00:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-08T04:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-08T04:30:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-08T04:45:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-08T05:00:00+01:00\",\n            \"v\": 64\n        },\n        {\n            \"ts\": \"2012-01-08T05:15:00+01:00\",\n            \"v\": 64.533333\n        },\n        {\n            \"ts\": \"2012-01-08T05:30:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-08T05:45:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-08T06:00:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-08T06:15:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-08T06:30:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-08T06:45:00+01:00\",\n            \"v\": 67.466667\n        },\n        {\n            \"ts\": \"2012-01-08T07:00:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-08T07:15:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-08T07:30:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-08T07:45:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-08T08:00:00+01:00\",\n            \"v\": 59.466667\n        },\n        {\n            \"ts\": \"2012-01-08T08:15:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-08T08:30:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-08T08:45:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-08T09:00:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-08T09:15:00+01:00\",\n            \"v\": 73.6\n        },\n        {\n            \"ts\": \"2012-01-08T09:30:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-08T09:45:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-08T10:00:00+01:00\",\n            \"v\": 37.866667\n        },\n        {\n            \"ts\": \"2012-01-08T10:15:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-08T10:30:00+01:00\",\n            \"v\": 57.333333\n        },\n        {\n            \"ts\": \"2012-01-08T10:45:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-08T11:00:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-08T11:15:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-08T11:30:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-08T11:45:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-08T12:00:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-08T12:15:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-08T12:30:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-08T12:45:00+01:00\",\n            \"v\": 70.933333\n        },\n        {\n            \"ts\": \"2012-01-08T13:00:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-08T13:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-08T13:30:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-08T13:45:00+01:00\",\n            \"v\": 65.066667\n        },\n        {\n            \"ts\": \"2012-01-08T14:00:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-08T14:15:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-08T14:30:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-08T14:45:00+01:00\",\n            \"v\": 66.4\n        },\n        {\n            \"ts\": \"2012-01-08T15:00:00+01:00\",\n            \"v\": 45.6\n        },\n        {\n            \"ts\": \"2012-01-08T15:15:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-08T15:30:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-08T15:45:00+01:00\",\n            \"v\": 60.8\n        },\n        {\n            \"ts\": \"2012-01-08T16:00:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-08T16:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-08T16:30:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-08T16:45:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-08T17:00:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-08T17:15:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-08T17:30:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-08T17:45:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-08T18:00:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-08T18:15:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-08T18:30:00+01:00\",\n            \"v\": 52.8\n        },\n        {\n            \"ts\": \"2012-01-08T18:45:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-08T19:00:00+01:00\",\n            \"v\": 34.666667\n        },\n        {\n            \"ts\": \"2012-01-08T19:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-08T19:30:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-08T19:45:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-08T20:00:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-08T20:15:00+01:00\",\n            \"v\": 76.266667\n        },\n        {\n            \"ts\": \"2012-01-08T20:30:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-08T20:45:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-08T21:00:00+01:00\",\n            \"v\": 57.6\n        },\n        {\n            \"ts\": \"2012-01-08T21:15:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-08T21:30:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-08T21:45:00+01:00\",\n            \"v\": 79.2\n        },\n        {\n            \"ts\": \"2012-01-08T22:00:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-08T22:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-08T22:30:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-08T22:45:00+01:00\",\n            \"v\": 34.666667\n        },\n        {\n            \"ts\": \"2012-01-08T23:00:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-08T23:15:00+01:00\",\n            \"v\": 53.6\n        },\n        {\n            \"ts\": \"2012-01-08T23:30:00+01:00\",\n            \"v\": 76.266667\n        },\n        {\n            \"ts\": \"2012-01-08T23:45:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-09T00:00:00+01:00\",\n            \"v\": 77.333333\n        },\n        {\n            \"ts\": \"2012-01-09T00:15:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-09T00:30:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-09T00:45:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-09T01:00:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-09T01:15:00+01:00\",\n            \"v\": 62.4\n        },\n        {\n            \"ts\": \"2012-01-09T01:30:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-09T01:45:00+01:00\",\n            \"v\": 76.266667\n        },\n        {\n            \"ts\": \"2012-01-09T02:00:00+01:00\",\n            \"v\": 78.133333\n        },\n        {\n            \"ts\": \"2012-01-09T02:15:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-09T02:30:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-09T02:45:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-09T03:00:00+01:00\",\n            \"v\": 42.133333\n        },\n        {\n            \"ts\": \"2012-01-09T03:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-09T03:30:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-09T03:45:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-09T04:00:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-09T04:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-09T04:30:00+01:00\",\n            \"v\": 53.6\n        },\n        {\n            \"ts\": \"2012-01-09T04:45:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-09T05:00:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-09T05:15:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-09T05:30:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-09T05:45:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-09T06:00:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-09T06:15:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-09T06:30:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-09T06:45:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-09T07:00:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-09T07:15:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-09T07:30:00+01:00\",\n            \"v\": 73.333333\n        },\n        {\n            \"ts\": \"2012-01-09T07:45:00+01:00\",\n            \"v\": 38.4\n        },\n        {\n            \"ts\": \"2012-01-09T08:00:00+01:00\",\n            \"v\": 72.266667\n        },\n        {\n            \"ts\": \"2012-01-09T08:15:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-09T08:30:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-09T08:45:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-09T09:00:00+01:00\",\n            \"v\": 78.133333\n        },\n        {\n            \"ts\": \"2012-01-09T09:15:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-09T09:30:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-09T09:45:00+01:00\",\n            \"v\": 39.733333\n        },\n        {\n            \"ts\": \"2012-01-09T10:00:00+01:00\",\n            \"v\": 37.866667\n        },\n        {\n            \"ts\": \"2012-01-09T10:15:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-09T10:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-09T10:45:00+01:00\",\n            \"v\": 36.533333\n        },\n        {\n            \"ts\": \"2012-01-09T11:00:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-09T11:15:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-09T11:30:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-09T11:45:00+01:00\",\n            \"v\": 32.533333\n        },\n        {\n            \"ts\": \"2012-01-09T12:00:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-09T12:15:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-09T12:30:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-09T12:45:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-09T13:00:00+01:00\",\n            \"v\": 36.266667\n        },\n        {\n            \"ts\": \"2012-01-09T13:15:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-09T13:30:00+01:00\",\n            \"v\": 33.333333\n        },\n        {\n            \"ts\": \"2012-01-09T13:45:00+01:00\",\n            \"v\": 50.933333\n        },\n        {\n            \"ts\": \"2012-01-09T14:00:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-09T14:15:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-09T14:30:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-09T14:45:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-09T15:00:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-09T15:15:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-09T15:30:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-09T15:45:00+01:00\",\n            \"v\": 78.666667\n        },\n        {\n            \"ts\": \"2012-01-09T16:00:00+01:00\",\n            \"v\": 59.466667\n        },\n        {\n            \"ts\": \"2012-01-09T16:15:00+01:00\",\n            \"v\": 52.533333\n        },\n        {\n            \"ts\": \"2012-01-09T16:30:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-09T16:45:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-09T17:00:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-09T17:15:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-09T17:30:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-09T17:45:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-09T18:00:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-09T18:15:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-09T18:30:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-09T18:45:00+01:00\",\n            \"v\": 41.6\n        },\n        {\n            \"ts\": \"2012-01-09T19:00:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-09T19:15:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-09T19:30:00+01:00\",\n            \"v\": 32.266667\n        },\n        {\n            \"ts\": \"2012-01-09T19:45:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-09T20:00:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-09T20:15:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-09T20:30:00+01:00\",\n            \"v\": 37.066667\n        },\n        {\n            \"ts\": \"2012-01-09T20:45:00+01:00\",\n            \"v\": 53.6\n        },\n        {\n            \"ts\": \"2012-01-09T21:00:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-09T21:15:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-09T21:30:00+01:00\",\n            \"v\": 76\n        },\n        {\n            \"ts\": \"2012-01-09T21:45:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-09T22:00:00+01:00\",\n            \"v\": 60.8\n        },\n        {\n            \"ts\": \"2012-01-09T22:15:00+01:00\",\n            \"v\": 71.466667\n        },\n        {\n            \"ts\": \"2012-01-09T22:30:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-09T22:45:00+01:00\",\n            \"v\": 34.933333\n        },\n        {\n            \"ts\": \"2012-01-09T23:00:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-09T23:15:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-09T23:30:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-09T23:45:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-10T00:00:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-10T00:15:00+01:00\",\n            \"v\": 77.333333\n        },\n        {\n            \"ts\": \"2012-01-10T00:30:00+01:00\",\n            \"v\": 41.066667\n        },\n        {\n            \"ts\": \"2012-01-10T00:45:00+01:00\",\n            \"v\": 55.2\n        },\n        {\n            \"ts\": \"2012-01-10T01:00:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-10T01:15:00+01:00\",\n            \"v\": 36.266667\n        },\n        {\n            \"ts\": \"2012-01-10T01:30:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-10T01:45:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-10T02:00:00+01:00\",\n            \"v\": 70.933333\n        },\n        {\n            \"ts\": \"2012-01-10T02:15:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-10T02:30:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-10T02:45:00+01:00\",\n            \"v\": 69.333333\n        },\n        {\n            \"ts\": \"2012-01-10T03:00:00+01:00\",\n            \"v\": 32\n        },\n        {\n            \"ts\": \"2012-01-10T03:15:00+01:00\",\n            \"v\": 33.066667\n        },\n        {\n            \"ts\": \"2012-01-10T03:30:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-10T03:45:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-10T04:00:00+01:00\",\n            \"v\": 42.133333\n        },\n        {\n            \"ts\": \"2012-01-10T04:15:00+01:00\",\n            \"v\": 71.733333\n        },\n        {\n            \"ts\": \"2012-01-10T04:30:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-10T04:45:00+01:00\",\n            \"v\": 75.733333\n        },\n        {\n            \"ts\": \"2012-01-10T05:00:00+01:00\",\n            \"v\": 71.733333\n        },\n        {\n            \"ts\": \"2012-01-10T05:15:00+01:00\",\n            \"v\": 66.933333\n        },\n        {\n            \"ts\": \"2012-01-10T05:30:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-10T05:45:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-10T06:00:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-10T06:15:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-10T06:30:00+01:00\",\n            \"v\": 74.666667\n        },\n        {\n            \"ts\": \"2012-01-10T06:45:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-10T07:00:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-10T07:15:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-10T07:30:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-10T07:45:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-10T08:00:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-10T08:15:00+01:00\",\n            \"v\": 44.533333\n        },\n        {\n            \"ts\": \"2012-01-10T08:30:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-10T08:45:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-10T09:00:00+01:00\",\n            \"v\": 74.933333\n        },\n        {\n            \"ts\": \"2012-01-10T09:15:00+01:00\",\n            \"v\": 59.466667\n        },\n        {\n            \"ts\": \"2012-01-10T09:30:00+01:00\",\n            \"v\": 50.933333\n        },\n        {\n            \"ts\": \"2012-01-10T09:45:00+01:00\",\n            \"v\": 37.6\n        },\n        {\n            \"ts\": \"2012-01-10T10:00:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-10T10:15:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-10T10:30:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-10T10:45:00+01:00\",\n            \"v\": 43.466667\n        },\n        {\n            \"ts\": \"2012-01-10T11:00:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-10T11:15:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-10T11:30:00+01:00\",\n            \"v\": 63.733333\n        },\n        {\n            \"ts\": \"2012-01-10T11:45:00+01:00\",\n            \"v\": 58.933333\n        },\n        {\n            \"ts\": \"2012-01-10T12:00:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-10T12:15:00+01:00\",\n            \"v\": 34.4\n        },\n        {\n            \"ts\": \"2012-01-10T12:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-10T12:45:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-10T13:00:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-10T13:15:00+01:00\",\n            \"v\": 36.266667\n        },\n        {\n            \"ts\": \"2012-01-10T13:30:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-10T13:45:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-10T14:00:00+01:00\",\n            \"v\": 61.866667\n        },\n        {\n            \"ts\": \"2012-01-10T14:15:00+01:00\",\n            \"v\": 33.333333\n        },\n        {\n            \"ts\": \"2012-01-10T14:30:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-10T14:45:00+01:00\",\n            \"v\": 44.266667\n        },\n        {\n            \"ts\": \"2012-01-10T15:00:00+01:00\",\n            \"v\": 48\n        },\n        {\n            \"ts\": \"2012-01-10T15:15:00+01:00\",\n            \"v\": 46.933333\n        },\n        {\n            \"ts\": \"2012-01-10T15:30:00+01:00\",\n            \"v\": 34.933333\n        },\n        {\n            \"ts\": \"2012-01-10T15:45:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-10T16:00:00+01:00\",\n            \"v\": 63.2\n        },\n        {\n            \"ts\": \"2012-01-10T16:15:00+01:00\",\n            \"v\": 52.533333\n        },\n        {\n            \"ts\": \"2012-01-10T16:30:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-10T16:45:00+01:00\",\n            \"v\": 62.666667\n        },\n        {\n            \"ts\": \"2012-01-10T17:00:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-10T17:15:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-10T17:30:00+01:00\",\n            \"v\": 33.066667\n        },\n        {\n            \"ts\": \"2012-01-10T17:45:00+01:00\",\n            \"v\": 48.266667\n        },\n        {\n            \"ts\": \"2012-01-10T18:00:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-10T18:15:00+01:00\",\n            \"v\": 45.6\n        },\n        {\n            \"ts\": \"2012-01-10T18:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-10T18:45:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-10T19:00:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-10T19:15:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-10T19:30:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-10T19:45:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-10T20:00:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-10T20:15:00+01:00\",\n            \"v\": 33.333333\n        },\n        {\n            \"ts\": \"2012-01-10T20:30:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-10T20:45:00+01:00\",\n            \"v\": 68.8\n        },\n        {\n            \"ts\": \"2012-01-10T21:00:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-10T21:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-10T21:30:00+01:00\",\n            \"v\": 50.666667\n        },\n        {\n            \"ts\": \"2012-01-10T21:45:00+01:00\",\n            \"v\": 32.533333\n        },\n        {\n            \"ts\": \"2012-01-10T22:00:00+01:00\",\n            \"v\": 40.533333\n        },\n        {\n            \"ts\": \"2012-01-10T22:15:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-10T22:30:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-10T22:45:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-10T23:00:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-10T23:15:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-10T23:30:00+01:00\",\n            \"v\": 60\n        },\n        {\n            \"ts\": \"2012-01-10T23:45:00+01:00\",\n            \"v\": 61.066667\n        },\n        {\n            \"ts\": \"2012-01-11T00:00:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-11T00:15:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-11T00:30:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-11T00:45:00+01:00\",\n            \"v\": 74.4\n        },\n        {\n            \"ts\": \"2012-01-11T01:00:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-11T01:15:00+01:00\",\n            \"v\": 46.133333\n        },\n        {\n            \"ts\": \"2012-01-11T01:30:00+01:00\",\n            \"v\": 75.733333\n        },\n        {\n            \"ts\": \"2012-01-11T01:45:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-11T02:00:00+01:00\",\n            \"v\": 50.666667\n        },\n        {\n            \"ts\": \"2012-01-11T02:15:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-11T02:30:00+01:00\",\n            \"v\": 63.733333\n        },\n        {\n            \"ts\": \"2012-01-11T02:45:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-11T03:00:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-11T03:15:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-11T03:30:00+01:00\",\n            \"v\": 48.533333\n        },\n        {\n            \"ts\": \"2012-01-11T03:45:00+01:00\",\n            \"v\": 54.666667\n        },\n        {\n            \"ts\": \"2012-01-11T04:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-11T04:15:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-11T04:30:00+01:00\",\n            \"v\": 77.6\n        },\n        {\n            \"ts\": \"2012-01-11T04:45:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-11T05:00:00+01:00\",\n            \"v\": 41.866667\n        },\n        {\n            \"ts\": \"2012-01-11T05:15:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-11T05:30:00+01:00\",\n            \"v\": 72.266667\n        },\n        {\n            \"ts\": \"2012-01-11T05:45:00+01:00\",\n            \"v\": 73.066667\n        },\n        {\n            \"ts\": \"2012-01-11T06:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-11T06:15:00+01:00\",\n            \"v\": 46.4\n        },\n        {\n            \"ts\": \"2012-01-11T06:30:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-11T06:45:00+01:00\",\n            \"v\": 78.4\n        },\n        {\n            \"ts\": \"2012-01-11T07:00:00+01:00\",\n            \"v\": 56\n        },\n        {\n            \"ts\": \"2012-01-11T07:15:00+01:00\",\n            \"v\": 57.6\n        },\n        {\n            \"ts\": \"2012-01-11T07:30:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-11T07:45:00+01:00\",\n            \"v\": 34.4\n        },\n        {\n            \"ts\": \"2012-01-11T08:00:00+01:00\",\n            \"v\": 67.733333\n        },\n        {\n            \"ts\": \"2012-01-11T08:15:00+01:00\",\n            \"v\": 64.266667\n        },\n        {\n            \"ts\": \"2012-01-11T08:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-11T08:45:00+01:00\",\n            \"v\": 37.333333\n        },\n        {\n            \"ts\": \"2012-01-11T09:00:00+01:00\",\n            \"v\": 56.266667\n        },\n        {\n            \"ts\": \"2012-01-11T09:15:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-11T09:30:00+01:00\",\n            \"v\": 66.133333\n        },\n        {\n            \"ts\": \"2012-01-11T09:45:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-11T10:00:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-11T10:15:00+01:00\",\n            \"v\": 34.133333\n        },\n        {\n            \"ts\": \"2012-01-11T10:30:00+01:00\",\n            \"v\": 64.533333\n        },\n        {\n            \"ts\": \"2012-01-11T10:45:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-11T11:00:00+01:00\",\n            \"v\": 52.266667\n        },\n        {\n            \"ts\": \"2012-01-11T11:15:00+01:00\",\n            \"v\": 54.933333\n        },\n        {\n            \"ts\": \"2012-01-11T11:30:00+01:00\",\n            \"v\": 41.333333\n        },\n        {\n            \"ts\": \"2012-01-11T11:45:00+01:00\",\n            \"v\": 58.666667\n        },\n        {\n            \"ts\": \"2012-01-11T12:00:00+01:00\",\n            \"v\": 41.066667\n        },\n        {\n            \"ts\": \"2012-01-11T12:15:00+01:00\",\n            \"v\": 54.4\n        },\n        {\n            \"ts\": \"2012-01-11T12:30:00+01:00\",\n            \"v\": 35.2\n        },\n        {\n            \"ts\": \"2012-01-11T12:45:00+01:00\",\n            \"v\": 77.333333\n        },\n        {\n            \"ts\": \"2012-01-11T13:00:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-11T13:15:00+01:00\",\n            \"v\": 39.466667\n        },\n        {\n            \"ts\": \"2012-01-11T13:30:00+01:00\",\n            \"v\": 32.533333\n        },\n        {\n            \"ts\": \"2012-01-11T13:45:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-11T14:00:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-11T14:15:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-11T14:30:00+01:00\",\n            \"v\": 70.133333\n        },\n        {\n            \"ts\": \"2012-01-11T14:45:00+01:00\",\n            \"v\": 45.066667\n        },\n        {\n            \"ts\": \"2012-01-11T15:00:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-11T15:15:00+01:00\",\n            \"v\": 77.066667\n        },\n        {\n            \"ts\": \"2012-01-11T15:30:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-11T15:45:00+01:00\",\n            \"v\": 47.466667\n        },\n        {\n            \"ts\": \"2012-01-11T16:00:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-11T16:15:00+01:00\",\n            \"v\": 50.933333\n        },\n        {\n            \"ts\": \"2012-01-11T16:30:00+01:00\",\n            \"v\": 36.8\n        },\n        {\n            \"ts\": \"2012-01-11T16:45:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-11T17:00:00+01:00\",\n            \"v\": 45.6\n        },\n        {\n            \"ts\": \"2012-01-11T17:15:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-11T17:30:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-11T17:45:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-11T18:00:00+01:00\",\n            \"v\": 33.333333\n        },\n        {\n            \"ts\": \"2012-01-11T18:15:00+01:00\",\n            \"v\": 51.2\n        },\n        {\n            \"ts\": \"2012-01-11T18:30:00+01:00\",\n            \"v\": 42.4\n        },\n        {\n            \"ts\": \"2012-01-11T18:45:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-11T19:00:00+01:00\",\n            \"v\": 65.066667\n        },\n        {\n            \"ts\": \"2012-01-11T19:15:00+01:00\",\n            \"v\": 78.933333\n        },\n        {\n            \"ts\": \"2012-01-11T19:30:00+01:00\",\n            \"v\": 63.733333\n        },\n        {\n            \"ts\": \"2012-01-11T19:45:00+01:00\",\n            \"v\": 59.2\n        },\n        {\n            \"ts\": \"2012-01-11T20:00:00+01:00\",\n            \"v\": 50.133333\n        },\n        {\n            \"ts\": \"2012-01-11T20:15:00+01:00\",\n            \"v\": 80\n        },\n        {\n            \"ts\": \"2012-01-11T20:30:00+01:00\",\n            \"v\": 78.666667\n        },\n        {\n            \"ts\": \"2012-01-11T20:45:00+01:00\",\n            \"v\": 58.4\n        },\n        {\n            \"ts\": \"2012-01-11T21:00:00+01:00\",\n            \"v\": 36\n        },\n        {\n            \"ts\": \"2012-01-11T21:15:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-11T21:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-11T21:45:00+01:00\",\n            \"v\": 38.933333\n        },\n        {\n            \"ts\": \"2012-01-11T22:00:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-11T22:15:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-11T22:30:00+01:00\",\n            \"v\": 65.866667\n        },\n        {\n            \"ts\": \"2012-01-11T22:45:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-11T23:00:00+01:00\",\n            \"v\": 33.866667\n        },\n        {\n            \"ts\": \"2012-01-11T23:15:00+01:00\",\n            \"v\": 59.466667\n        },\n        {\n            \"ts\": \"2012-01-11T23:30:00+01:00\",\n            \"v\": 50.933333\n        },\n        {\n            \"ts\": \"2012-01-11T23:45:00+01:00\",\n            \"v\": 35.733333\n        },\n        {\n            \"ts\": \"2012-01-12T00:00:00+01:00\",\n            \"v\": 33.866667\n        },\n        {\n            \"ts\": \"2012-01-12T00:15:00+01:00\",\n            \"v\": 61.333333\n        },\n        {\n            \"ts\": \"2012-01-12T00:30:00+01:00\",\n            \"v\": 79.466667\n        },\n        {\n            \"ts\": \"2012-01-12T00:45:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-12T01:00:00+01:00\",\n            \"v\": 51.466667\n        },\n        {\n            \"ts\": \"2012-01-12T01:15:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-12T01:30:00+01:00\",\n            \"v\": 54.933333\n        },\n        {\n            \"ts\": \"2012-01-12T01:45:00+01:00\",\n            \"v\": 40\n        },\n        {\n            \"ts\": \"2012-01-12T02:00:00+01:00\",\n            \"v\": 40.8\n        },\n        {\n            \"ts\": \"2012-01-12T02:15:00+01:00\",\n            \"v\": 51.733333\n        },\n        {\n            \"ts\": \"2012-01-12T02:30:00+01:00\",\n            \"v\": 46.933333\n        },\n        {\n            \"ts\": \"2012-01-12T02:45:00+01:00\",\n            \"v\": 33.6\n        },\n        {\n            \"ts\": \"2012-01-12T03:00:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-12T03:15:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-12T03:30:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-12T03:45:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-12T04:00:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-12T04:15:00+01:00\",\n            \"v\": 45.066667\n        },\n        {\n            \"ts\": \"2012-01-12T04:30:00+01:00\",\n            \"v\": 60.533333\n        },\n        {\n            \"ts\": \"2012-01-12T04:45:00+01:00\",\n            \"v\": 66.4\n        },\n        {\n            \"ts\": \"2012-01-12T05:00:00+01:00\",\n            \"v\": 45.866667\n        },\n        {\n            \"ts\": \"2012-01-12T05:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-12T05:30:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-12T05:45:00+01:00\",\n            \"v\": 66.4\n        },\n        {\n            \"ts\": \"2012-01-12T06:00:00+01:00\",\n            \"v\": 45.333333\n        },\n        {\n            \"ts\": \"2012-01-12T06:15:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-12T06:30:00+01:00\",\n            \"v\": 55.466667\n        },\n        {\n            \"ts\": \"2012-01-12T06:45:00+01:00\",\n            \"v\": 49.6\n        },\n        {\n            \"ts\": \"2012-01-12T07:00:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-12T07:15:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-12T07:30:00+01:00\",\n            \"v\": 53.333333\n        },\n        {\n            \"ts\": \"2012-01-12T07:45:00+01:00\",\n            \"v\": 70.4\n        },\n        {\n            \"ts\": \"2012-01-12T08:00:00+01:00\",\n            \"v\": 49.333333\n        },\n        {\n            \"ts\": \"2012-01-12T08:15:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-12T08:30:00+01:00\",\n            \"v\": 72.533333\n        },\n        {\n            \"ts\": \"2012-01-12T08:45:00+01:00\",\n            \"v\": 76.8\n        },\n        {\n            \"ts\": \"2012-01-12T09:00:00+01:00\",\n            \"v\": 33.333333\n        },\n        {\n            \"ts\": \"2012-01-12T09:15:00+01:00\",\n            \"v\": 52.266667\n        },\n        {\n            \"ts\": \"2012-01-12T09:30:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-12T09:45:00+01:00\",\n            \"v\": 63.466667\n        },\n        {\n            \"ts\": \"2012-01-12T10:00:00+01:00\",\n            \"v\": 57.066667\n        },\n        {\n            \"ts\": \"2012-01-12T10:15:00+01:00\",\n            \"v\": 72\n        },\n        {\n            \"ts\": \"2012-01-12T10:30:00+01:00\",\n            \"v\": 70.666667\n        },\n        {\n            \"ts\": \"2012-01-12T10:45:00+01:00\",\n            \"v\": 53.066667\n        },\n        {\n            \"ts\": \"2012-01-12T11:00:00+01:00\",\n            \"v\": 67.2\n        },\n        {\n            \"ts\": \"2012-01-12T11:15:00+01:00\",\n            \"v\": 54.933333\n        },\n        {\n            \"ts\": \"2012-01-12T11:30:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-12T11:45:00+01:00\",\n            \"v\": 77.866667\n        },\n        {\n            \"ts\": \"2012-01-12T12:00:00+01:00\",\n            \"v\": 47.733333\n        },\n        {\n            \"ts\": \"2012-01-12T12:15:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-12T12:30:00+01:00\",\n            \"v\": 41.066667\n        },\n        {\n            \"ts\": \"2012-01-12T12:45:00+01:00\",\n            \"v\": 56.8\n        },\n        {\n            \"ts\": \"2012-01-12T13:00:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-12T13:15:00+01:00\",\n            \"v\": 69.6\n        },\n        {\n            \"ts\": \"2012-01-12T13:30:00+01:00\",\n            \"v\": 38.133333\n        },\n        {\n            \"ts\": \"2012-01-12T13:45:00+01:00\",\n            \"v\": 68.533333\n        },\n        {\n            \"ts\": \"2012-01-12T14:00:00+01:00\",\n            \"v\": 75.466667\n        },\n        {\n            \"ts\": \"2012-01-12T14:15:00+01:00\",\n            \"v\": 68.266667\n        },\n        {\n            \"ts\": \"2012-01-12T14:30:00+01:00\",\n            \"v\": 71.2\n        },\n        {\n            \"ts\": \"2012-01-12T14:45:00+01:00\",\n            \"v\": 60.266667\n        },\n        {\n            \"ts\": \"2012-01-12T15:00:00+01:00\",\n            \"v\": 62.933333\n        },\n        {\n            \"ts\": \"2012-01-12T15:15:00+01:00\",\n            \"v\": 49.866667\n        },\n        {\n            \"ts\": \"2012-01-12T15:30:00+01:00\",\n            \"v\": 75.2\n        },\n        {\n            \"ts\": \"2012-01-12T15:45:00+01:00\",\n            \"v\": 62.4\n        },\n        {\n            \"ts\": \"2012-01-12T16:00:00+01:00\",\n            \"v\": 42.666667\n        },\n        {\n            \"ts\": \"2012-01-12T16:15:00+01:00\",\n            \"v\": 79.733333\n        },\n        {\n            \"ts\": \"2012-01-12T16:30:00+01:00\",\n            \"v\": 73.866667\n        },\n        {\n            \"ts\": \"2012-01-12T16:45:00+01:00\",\n            \"v\": 43.2\n        },\n        {\n            \"ts\": \"2012-01-12T17:00:00+01:00\",\n            \"v\": 32.8\n        },\n        {\n            \"ts\": \"2012-01-12T17:15:00+01:00\",\n            \"v\": 43.733333\n        },\n        {\n            \"ts\": \"2012-01-12T17:30:00+01:00\",\n            \"v\": 40.266667\n        },\n        {\n            \"ts\": \"2012-01-12T17:45:00+01:00\",\n            \"v\": 44.8\n        },\n        {\n            \"ts\": \"2012-01-12T18:00:00+01:00\",\n            \"v\": 56.533333\n        },\n        {\n            \"ts\": \"2012-01-12T18:15:00+01:00\",\n            \"v\": 64.8\n        },\n        {\n            \"ts\": \"2012-01-12T18:30:00+01:00\",\n            \"v\": 70.933333\n        }\n    ]\n}"}],"_postman_id":"9a39980a-3003-4d0a-8976-755a819f47ca"},{"name":"Retrieve the last reading using a Parameter key","id":"ec54c445-6826-4754-9df5-f91f9e107dce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/readings/last?device_id=&operation=&parameter_key=&resolution=&rounded=","urlObject":{"path":["readings","last"],"host":["{{api_v3.host}}"],"query":[{"key":"device_id","value":""},{"description":{"content":"<p>operation one of (AVG, MAX, MIN, DELTA, RAW)</p>\n","type":"text/plain"},"key":"operation","value":""},{"key":"parameter_key","value":""},{"description":{"content":"<p>resolution one of (FM, TM, QH, HH, H, D, W, M, B)</p>\n","type":"text/plain"},"key":"resolution","value":""},{"description":{"content":"<p>NONE, DECIMALS_0, ..., DECIMALS_8. Default: DECIMALS_6</p>\n","type":"text/plain"},"key":"rounded","value":""}],"variable":[]}},"response":[{"id":"76fa648e-7fdc-47fc-b57f-730e1bf2633b","name":"Retrieve the Readings using a Parameter key for a specific time period","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","value":"58e302f025dcb31f9bb0","type":"text"},{"key":"x-user-timezone","value":"Europe/Madrid","type":"text"},{"key":"x-accept-language","value":"es_ES","type":"text"},{"key":"X-security-Permissions","value":"READINGS_READ","type":"text"},{"key":"X-security-Deployment","value":"293","type":"text"}],"url":{"raw":"{{api_v3.host}}/readings/last?device_id=1055368&parameter_key=EACTIVE&resolution=H&operation=DELTA","host":["{{api_v3.host}}"],"path":["readings","last"],"query":[{"key":"device_id","value":"1055368"},{"key":"parameter_key","value":"EACTIVE"},{"key":"resolution","value":"H"},{"key":"operation","value":"DELTA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"995"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2491"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:18:28 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9942"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"49291"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"640"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"timezone\": \"Europe/Madrid\",\n    \"units\": \"kWh\",\n    \"values\": [\n        {\n            \"ts\": \"2021-11-17T11:00:00+01:00\",\n            \"v\": 107.9\n        }\n    ]\n}"}],"_postman_id":"ec54c445-6826-4754-9df5-f91f9e107dce"},{"name":"Insert Readings using parameter IDs","id":"e49354f3-0eb1-4a90-9960-0c6c9d8d773d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"did\": \"3a\",\n        \"sqn\": 1,\n        \"ts\": \"2014-10-02T10:30:00+02:00\",\n        \"values\": [\n            {\n                \"p\": 401,\n                \"v\": 3505\n            },\n            {\n                \"p\": 402,\n                \"v\": 5600012\n            },\n            {\n                \"p\": 404,\n                \"v\": 123504\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/readings","urlObject":{"path":["readings"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e49354f3-0eb1-4a90-9960-0c6c9d8d773d"}],"id":"52a49c7a-cfe9-4e0b-99dc-d401a753b637","description":"<p>Restrictions Month, week, day will return up to 10 years of data. Hour, Half hour, 15min and 10 minutes 1 year. 5 minutes and Basic data, 1 month</p>\n","event":[{"listen":"prerequest","script":{"id":"eefcf8cc-21ba-49f3-a091-796dd1b97d0f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5ef526da-8129-40da-bf23-2912dbffa978","type":"text/javascript","exec":[""]}}],"_postman_id":"52a49c7a-cfe9-4e0b-99dc-d401a753b637"},{"name":"Users","item":[{"name":"List all Users","id":"b48213a3-d975-42fe-8e14-efe6d7387095","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/users?start=0&limit=2","urlObject":{"path":["users"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"}],"variable":[]}},"response":[{"id":"c427c5ba-1e03-4879-8a25-7536aefe3a5f","name":"List users from deployment","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/users?start=0&limit=2","host":["{{api_v3.host}}"],"path":["users"],"query":[{"key":"start","value":"0","description":"Integer"},{"key":"limit","value":"2","description":"Integer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:34:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"459"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"access_policy\": {\n            \"locations\": [],\n            \"type\": \"FULL\"\n        },\n        \"email\": \"test@dexma.com\",\n        \"id\": 9871,\n        \"last_login_ts\": null,\n        \"lastname\": \"\",\n        \"locale\": \"it_IT\",\n        \"name\": \"\",\n        \"role\": \"DEMO\",\n        \"signup_date\": \"2018-03-01T11:36:26+00:00\",\n        \"username\": \"testDexma\"\n    },\n    {\n        \"access_policy\": {\n            \"locations\": [],\n            \"type\": \"FULL\"\n        },\n        \"email\": \"chuck@norris.com\",\n        \"id\": 10388,\n        \"last_login_ts\": \"2019-10-03T05:09:50+00:00\",\n        \"lastname\": \"\",\n        \"locale\": \"en_US\",\n        \"name\": \"\",\n        \"role\": \"SUPERADMIN\",\n        \"signup_date\": \"2018-03-01T11:36:26+00:00\",\n        \"username\": \"chuckNorris\"\n    }\n]"}],"_postman_id":"b48213a3-d975-42fe-8e14-efe6d7387095"},{"name":"Retrieve a User","id":"2ad7ba04-be0d-4199-a5b9-53e2524fe3df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/users/9871","urlObject":{"path":["users","9871"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a22287ba-7e11-4c6a-b524-87f0ae32ec15","name":"Retrieve a User","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/users/9871"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:36:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"221"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_policy\": {\n        \"locations\": [],\n        \"type\": \"FULL\"\n    },\n    \"email\": \"test@dexma.com\",\n    \"id\": 9871,\n    \"last_login_ts\": null,\n    \"lastname\": \"\",\n    \"locale\": \"it_IT\",\n    \"name\": \"\",\n    \"role\": \"DEMO\",\n    \"username\": \"testDexma\"\n}"}],"_postman_id":"2ad7ba04-be0d-4199-a5b9-53e2524fe3df"},{"name":"Validate the credentials of a user","id":"be82b459-60e8-4074-b4a4-344f7cf343fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"john.doe\",\n    \"password\": \"foobared\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/users/validate-credentials","urlObject":{"path":["users","validate-credentials"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"7091e4ec-0f96-428f-8e43-280743f76a1f","name":"Validate the credentials of a user succeed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"john.doe\",\n    \"password\": \"foobared\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/users/validate-credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:39:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"35"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"user\": {\n        \"id\": 1234\n    }\n}"},{"id":"7f9c712f-405c-4266-97e9-0e8cf7a07df7","name":"Validate the credentials of a user that fails","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"john.doe\",\n    \"password\": \"thisIsNotCorrect\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/users/validate-credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:40:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"86"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"attempts\": {\n        \"blocked-period\": 60,\n        \"limit\": 3,\n        \"remaining\": 2\n    },\n    \"success\": false,\n    \"user\": null\n}"}],"_postman_id":"be82b459-60e8-4074-b4a4-344f7cf343fd"},{"name":"Update the email address of a User","id":"acdb56cc-06f3-43fc-b518-5369df6d2b0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/merge-patch+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"newEmail@dexma.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/users/20435","urlObject":{"path":["users","20435"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"b10e3a16-80d6-4fb0-b62d-c68bced31995","name":"Update the email address of a User","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/merge-patch+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"newEmail@dexma.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/users/20435"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:50:16 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"acdb56cc-06f3-43fc-b518-5369df6d2b0d"}],"id":"430db287-1cbc-496a-84fe-ff41a52715b2","event":[{"listen":"prerequest","script":{"id":"6f8d8752-77a4-4643-90a0-8831673df7b4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c9d64d9d-4e48-4f29-98d1-2b677d8df112","type":"text/javascript","exec":[""]}}],"_postman_id":"430db287-1cbc-496a-84fe-ff41a52715b2","description":""},{"name":"Comments","item":[{"name":"List all Comments","id":"8477c7a6-b8f7-46ca-b724-7798baa8e4ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/comments?location_id=11906&user_id=23737&type=INFORMATIVE&visibility=PUBLIC&from=2018-01-01T00:00:00&to=2019-31-31T23:59:59&start&limit","urlObject":{"path":["comments"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"location_id","value":"11906"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"user_id","value":"23737"},{"description":{"content":"<p>Enum: <code>INFORMATIVE, EVENT, INCIDENCE</code></p>\n","type":"text/plain"},"key":"type","value":"INFORMATIVE"},{"description":{"content":"<p>Enum: <code>PUBLIC, PRIVATE</code></p>\n","type":"text/plain"},"key":"visibility","value":"PUBLIC"},{"description":{"content":"<p>ZoneDateTime.ISO8601 [yyyy-MM-ddThh:mm:ss+00:00]</p>\n","type":"text/plain"},"key":"from","value":"2018-01-01T00:00:00"},{"description":{"content":"<p>ZoneDateTime.ISO8601 [yyyy-MM-ddThh:mm:ss+00:00]</p>\n","type":"text/plain"},"key":"to","value":"2019-31-31T23:59:59"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":null},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":null}],"variable":[]}},"response":[{"id":"bd2f5aa3-736d-4610-8a8d-ddd1a82abd8e","name":"List all Commentss","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/comments?location_id=11906&type=INFORMATIVE&visibility=PUBLIC","host":["{{api_v3.host}}"],"path":["comments"],"query":[{"key":"location_id","value":"11906","description":"Integer"},{"key":"user_id","value":"23737","description":"Integer","disabled":true},{"key":"type","value":"INFORMATIVE","description":"Enum: `INFORMATIVE, EVENT, INCIDENCE`"},{"key":"visibility","value":"PUBLIC","description":"Enum: `PUBLIC, PRIVATE`"},{"key":"from","value":"2018-01-01T00:00:00","description":"ZoneDateTime.ISO8601 [yyyy-MM-ddThh:mm:ss+00:00]","disabled":true},{"key":"to","value":"2019-31-31T23:59:59","description":"ZoneDateTime.ISO8601 [yyyy-MM-ddThh:mm:ss+00:00]","disabled":true},{"key":"start","value":null,"description":"Integer","disabled":true},{"key":"limit","value":null,"description":"Integer","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 11:46:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2593"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[{\"comment\":\"El&egrave;ctrica, il&middot;luminaci&oacute;,  *\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-02-11T07:34:06.415\",\"reference_date\":\"2020-02-10T23:00:00\",\"subject\":\"Special characters test\",\"type\":\"INFORMATIVE\",\"visibility\":\"PRIVATE\"},{\"comment\":\"el&eacute;lectrica, il&middot;luminaci&oacute; * ^\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-02-11T07:14:34.91\",\"reference_date\":\"2020-02-10T23:00:00\",\"subject\":\"Prova accents\",\"type\":\"INFORMATIVE\",\"visibility\":\"PRIVATE\"},{\"comment\":\"Passage &agrave; une consigne de temperature d'eau glac&eacute;e fixe de 8&ordm;C\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:42:33.896\",\"reference_date\":\"2020-03-02T23:00:00\",\"subject\":\"modification\",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"},{\"comment\":\"Passage a une consigne de temperature d'eau glac&eacute;e fixe de 8 a une consigne d'eau glac&eacute;e fixe de 12  tout au long de l'annee\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:41:54.926\",\"reference_date\":\"2020-03-02T23:00:00\",\"subject\":\"test\",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"},{\"comment\":\"Passage &agrave; une consigne de temperature d'eau glac&eacute;e fixe de 8&ordm;C &agrave; une consigne d'eau glac&eacute;e fixe de 12&ordm;C tout au long de l'ann&eacute;e\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:41:17.31\",\"reference_date\":\"2020-03-02T23:00:00\",\"subject\":\"test\",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"},{\"comment\":\"Passage &agrave; une consigne de temperature d'eau glac&eacute;e fixe de 8&ordm;C\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:42:16.451\",\"reference_date\":\"2020-03-03T14:00:00\",\"subject\":\"modification\",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"},{\"comment\":\"Passage &agrave; une consigne de temperature d'eau glac&eacute;e fixe de 8&ordm;C &agrave; une consigne d'eau glac&eacute;e fixe de 12&ordm;C tout au long de l'ann&eacute;e: sur la PAC TRANE du b&acirc;timent pilote KU4.\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:40:51.58\",\"reference_date\":\"2020-03-03T14:00:00\",\"subject\":\"Modification \",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"},{\"comment\":\"Passage &agrave; une consigne de temperature d'eau glac&eacute;e fixe de 8&ordm;C &agrave; une consigne d'eau glac&eacute;e fixe de 12&ordm;C tout au long de l'ann&eacute;e: sur la PAC TRANE du b&acirc;timent pilote KU4.\",\"created_by\":\"\",\"location\":11906,\"post_date\":\"2020-03-05T10:52:26.28\",\"reference_date\":\"2020-03-03T14:00:00\",\"subject\":\"Modification consigne de temper&aacute;ture d'eau glace\",\"type\":\"INFORMATIVE\",\"visibility\":\"PUBLIC\"}]"}],"_postman_id":"8477c7a6-b8f7-46ca-b724-7798baa8e4ad"},{"name":"Retrieve a Comment","id":"db11a49b-f955-42e4-b783-a7e0fe7a3508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/comments/573","urlObject":{"path":["comments","573"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"d9c9a9d2-7615-4e20-8bdf-4c3ac547589b","name":"Retrieve a Comment","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/comments/573"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 11:44:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"339"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"comment\": \"Había un error en la lectura de Serigrafia, por tanto no vale lecturas desde 15 feb a las 17:00 hasta 19 feb a las 13:00h\",\n    \"created_by\": \"\",\n    \"location\": 12180,\n    \"post_date\": \"2013-02-19T12:06:16.639\",\n    \"reference_date\": \"2013-02-19T12:00:00\",\n    \"subject\": \"Resolución problema lectura SERIGRAFIA\",\n    \"type\": \"INCIDENCE\",\n    \"visibility\": \"PUBLIC\"\n}"}],"_postman_id":"db11a49b-f955-42e4-b783-a7e0fe7a3508"},{"name":"Create a Comment","id":"dd8c71f7-7ac4-4c9c-a3c7-6576a8986df6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Create a comment.\",\n    \"comment\": \"This comment is for testing proposals.\",\n    \"type\": \"INFORMATIVE\",\n    \"visibility\": \"PUBLIC\",\n    \"reference_date\": \"2020-01-01T12:00:01+00:00\",\n    \"post_date\": \"2020-01-01T12:06:16+00:00\",\n    \"user_id\": 12147,\n    \"location_id\": 26573\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/comments","urlObject":{"path":["comments"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"84182855-a7c8-48d6-aea8-d617e1c7339e","name":"Create a Comment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"subject\": \"Create a comment.\",\n    \"comment\": \"This comment is for testing proposals.\",\n    \"type\": \"INFORMATIVE\",\n    \"visibility\": \"PUBLIC\",\n    \"reference_date\": \"2020-01-01T12:00:01+00:00\",\n    \"post_date\": \"2020-01-01T12:06:16+00:00\",\n    \"user_id\": 12147,\n    \"location_id\": 26573\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/comments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 28 Aug 2020 11:45:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"231"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"comment\": \"This comment is for testing proposals.\",\n    \"created_by\": \"\",\n    \"location\": 26573,\n    \"post_date\": \"2020-01-01T12:06:16\",\n    \"reference_date\": \"2020-01-01T12:00:01\",\n    \"subject\": \"Create a comment.\",\n    \"type\": \"INFORMATIVE\",\n    \"visibility\": \"PUBLIC\"\n}"}],"_postman_id":"dd8c71f7-7ac4-4c9c-a3c7-6576a8986df6"}],"id":"ebca0187-c3fb-40ba-8969-01a6a03104f9","_postman_id":"ebca0187-c3fb-40ba-8969-01a6a03104f9","description":""},{"name":"Cost","item":[{"name":"Electricity","item":[{"name":"Calculate Cost Summary","id":"9619d433-7c2a-428a-b9b4-70adbdfc1376","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/summary?device_id=932606&resolution=H&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices&embed=device","urlObject":{"path":["cost","electricity","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"932606"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"H"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2019-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2019-01-10T23:59:59"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"prices"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"device"}],"variable":[]}},"response":[{"id":"3a5ea821-f29b-41ea-b0ee-49cd58cc5e23","name":"Basic Cost Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/summary?device_id=932606&resolution=H&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59","host":["{{api_v3.host}}"],"path":["cost","electricity","summary"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9998"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1011"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:43:08 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49994"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"55011"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"214"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18747\n        },\n        \"device\": {\n            \"id\": 932606\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"id\": \"5f47a66fd7efdd2735e1ee6c\"\n        },\n        \"supply\": {\n            \"id\": 13532\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"967a4c44-31f6-4175-8fc0-958df9bb9485","name":"Cost Summary with embedded prices and device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/summary?device_id=932606&resolution=H&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices&embed=device","host":["{{api_v3.host}}"],"path":["cost","electricity","summary"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9992"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"898"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:45:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49988"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"54898"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"604"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18747\n        },\n        \"device\": {\n            \"datasource\": {\n                \"id\": 32803\n            },\n            \"description\": \"\",\n            \"id\": 932606,\n            \"local_id\": \"Total\",\n            \"location\": {\n                \"id\": 114577\n            },\n            \"name\": \"Total\",\n            \"status\": \"ACCEPTED\"\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"TOU\"\n            },\n            \"contracted_demand\": {\n                \"type\": \"MULTIPLE_PERIOD\"\n            },\n            \"demand_excess_penalty\": {\n                \"type\": \"NONE\"\n            },\n            \"id\": \"5f47a66fd7efdd2735e1ee6c\",\n            \"name\": \"CP - By periods\",\n            \"num_of_periods\": 2,\n            \"reactive_penalty\": {\n                \"type\": \"NONE\"\n            },\n            \"tariff_structure\": {\n                \"id\": 735\n            },\n            \"type\": \"ELECTRICITY\"\n        },\n        \"supply\": {\n            \"id\": 13532\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"be26c9b0-2daf-4fcc-9c18-b1920b61a83b","name":"Cost Summary with embedded prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/summary?device_id=932606&resolution=H&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices","host":["{{api_v3.host}}"],"path":["cost","electricity","summary"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"985"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:43:34 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49993"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"54985"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"482"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18747\n        },\n        \"device\": {\n            \"id\": 932606\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"TOU\"\n            },\n            \"contracted_demand\": {\n                \"type\": \"MULTIPLE_PERIOD\"\n            },\n            \"demand_excess_penalty\": {\n                \"type\": \"NONE\"\n            },\n            \"id\": \"5f47a66fd7efdd2735e1ee6c\",\n            \"name\": \"CP - By periods\",\n            \"num_of_periods\": 2,\n            \"reactive_penalty\": {\n                \"type\": \"NONE\"\n            },\n            \"tariff_structure\": {\n                \"id\": 735\n            },\n            \"type\": \"ELECTRICITY\"\n        },\n        \"supply\": {\n            \"id\": 13532\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"}],"_postman_id":"9619d433-7c2a-428a-b9b4-70adbdfc1376"},{"name":"Calculate cost due to the Consumption concept","id":"7b069241-e20d-4571-90cb-66ead2578f90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/consumption?device_id=1012303&from=2020-01-01T00:00:00&to=2020-12-31T00:00:00&resolution=D","urlObject":{"path":["cost","electricity","consumption"],"host":["{{api_v3.host}}"],"query":[{"key":"device_id","value":"1012303"},{"key":"from","value":"2020-01-01T00:00:00"},{"key":"to","value":"2020-12-31T00:00:00"},{"key":"resolution","value":"D"}],"variable":[]}},"response":[{"id":"66ad5a7b-342d-4280-9c84-fa2e1ef63666","name":"Calculate consumption concept using \"based on tariff structure\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/consumption?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","consumption"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M, FM, TM,B`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9987"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"606"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 08:49:53 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49983"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"54606"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4774"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"type\": \"TOU\",\n        \"from\": \"2020-06-01T13:24:00\",\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 7745.978675,\n        \"units\": \"kWh\",\n        \"total_consumption\": 61016.92,\n        \"periods\": [\n            {\n                \"cost\": 4457.404786,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"price\": 0.1,\n                \"price_change\": null,\n                \"val\": 44574.05\n            },\n            {\n                \"cost\": 3288.573889,\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"price\": 0.2,\n                \"price_change\": null,\n                \"val\": 16442.87\n            }\n        ],\n        \"values\": [\n            {\n                \"c\": 14.431220215041936,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-01T00:00:00+02:00\",\n                \"v\": 72.15610000000001\n            },\n            {\n                \"c\": 122.76757182937934,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-01T00:00:00+02:00\",\n                \"v\": 1227.6757\n            },\n            {\n                \"c\": 230.08458842852744,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 2300.84585\n            },\n            {\n                \"c\": 71.03869105855898,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 355.19345\n            },\n            {\n                \"c\": 83.81792124898435,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 419.08959999999996\n            },\n            {\n                \"c\": 212.354253164325,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 2123.5425\n            },\n            {\n                \"c\": 167.8767225015581,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 1678.7672\n            },\n            {\n                \"c\": 72.76080108422042,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 363.80400000000003\n            },\n            {\n                \"c\": 71.07375105908139,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 355.36875\n            },\n            {\n                \"c\": 204.1246830416948,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 2041.2468000000001\n            },\n            {\n                \"c\": 237.02983353201975,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-06T00:00:00+02:00\",\n                \"v\": 1185.14915\n            },\n            {\n                \"c\": 193.2439428795591,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-07T00:00:00+02:00\",\n                \"v\": 966.2197000000001\n            },\n            {\n                \"c\": 66.27260098753868,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-08T00:00:00+02:00\",\n                \"v\": 331.36299999999994\n            },\n            {\n                \"c\": 137.0887620427817,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-08T00:00:00+02:00\",\n                \"v\": 1370.8876\n            },\n            {\n                \"c\": 68.26200101718305,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-09T00:00:00+02:00\",\n                \"v\": 341.30999999999995\n            },\n            {\n                \"c\": 158.78175736603248,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-09T00:00:00+02:00\",\n                \"v\": 1587.81755\n            },\n            {\n                \"c\": 70.54646105122418,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-10T00:00:00+02:00\",\n                \"v\": 352.7323\n            },\n            {\n                \"c\": 172.24048756658323,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-10T00:00:00+02:00\",\n                \"v\": 1722.4048500000001\n            },\n            {\n                \"c\": 65.22531097193286,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-11T00:00:00+02:00\",\n                \"v\": 326.12655\n            },\n            {\n                \"c\": 201.782598006795,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-11T00:00:00+02:00\",\n                \"v\": 2017.8259500000001\n            },\n            {\n                \"c\": 72.42339107919261,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-12T00:00:00+02:00\",\n                \"v\": 362.11695\n            },\n            {\n                \"c\": 114.40871170482266,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-12T00:00:00+02:00\",\n                \"v\": 1144.0871\n            },\n            {\n                \"c\": 202.05166301080433,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-13T00:00:00+02:00\",\n                \"v\": 1010.2583000000001\n            },\n            {\n                \"c\": 191.3670128515907,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-14T00:00:00+02:00\",\n                \"v\": 956.8350499999997\n            },\n            {\n                \"c\": 74.82032111490965,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-15T00:00:00+02:00\",\n                \"v\": 374.1016\n            },\n            {\n                \"c\": 178.2170126556404,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-15T00:00:00+02:00\",\n                \"v\": 1782.1700999999996\n            },\n            {\n                \"c\": 71.93845107196643,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-16T00:00:00+02:00\",\n                \"v\": 359.6922500000001\n            },\n            {\n                \"c\": 166.26413247752862,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-16T00:00:00+02:00\",\n                \"v\": 1662.6412999999998\n            },\n            {\n                \"c\": 152.34319727009049,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-17T00:00:00+02:00\",\n                \"v\": 1523.4319499999997\n            },\n            {\n                \"c\": 70.65893105290009,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-17T00:00:00+02:00\",\n                \"v\": 353.29465\n            },\n            {\n                \"c\": 75.57255112611873,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-18T00:00:00+02:00\",\n                \"v\": 377.86275\n            },\n            {\n                \"c\": 203.61370303408054,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-18T00:00:00+02:00\",\n                \"v\": 2036.1369999999997\n            },\n            {\n                \"c\": 72.31092107751667,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-19T00:00:00+02:00\",\n                \"v\": 361.55460000000005\n            },\n            {\n                \"c\": 224.8269633501828,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-19T00:00:00+02:00\",\n                \"v\": 2248.269600000001\n            },\n            {\n                \"c\": 267.01697397886295,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-20T00:00:00+02:00\",\n                \"v\": 1335.0848499999997\n            },\n            {\n                \"c\": 252.54340376319004,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-21T00:00:00+02:00\",\n                \"v\": 1262.7169999999996\n            },\n            {\n                \"c\": 87.22708129978479,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-22T00:00:00+02:00\",\n                \"v\": 436.1354\n            },\n            {\n                \"c\": 239.67612357145248,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-22T00:00:00+02:00\",\n                \"v\": 2396.7611999999995\n            },\n            {\n                \"c\": 264.9678039483279,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-23T00:00:00+02:00\",\n                \"v\": 2649.6780000000003\n            },\n            {\n                \"c\": 72.4935110802375,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-23T00:00:00+02:00\",\n                \"v\": 362.46754999999996\n            },\n            {\n                \"c\": 69.2318810316354,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-24T00:00:00+02:00\",\n                \"v\": 346.15940000000006\n            },\n            {\n                \"c\": 246.68639367591368,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-24T00:00:00+02:00\",\n                \"v\": 2466.8639\n            },\n            {\n                \"c\": 270.41825902954605,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-25T00:00:00+02:00\",\n                \"v\": 2704.1825499999995\n            },\n            {\n                \"c\": 72.04363107353375,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-25T00:00:00+02:00\",\n                \"v\": 360.2181499999999\n            },\n            {\n                \"c\": 244.18828363868897,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-26T00:00:00+02:00\",\n                \"v\": 2441.8828000000003\n            },\n            {\n                \"c\": 71.2563410618022,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-26T00:00:00+02:00\",\n                \"v\": 356.2817000000001\n            },\n            {\n                \"c\": 205.0810630559459,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-27T00:00:00+02:00\",\n                \"v\": 1025.4053\n            },\n            {\n                \"c\": 199.1128629670128,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-28T00:00:00+02:00\",\n                \"v\": 995.5642999999997\n            },\n            {\n                \"c\": 272.1105140547626,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-29T00:00:00+02:00\",\n                \"v\": 2721.1050999999993\n            },\n            {\n                \"c\": 74.63044111208022,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-29T00:00:00+02:00\",\n                \"v\": 373.1522\n            },\n            {\n                \"c\": 272.5822640617922,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-30T00:00:00+02:00\",\n                \"v\": 2725.8226\n            },\n            {\n                \"c\": 73.09092108913958,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-30T00:00:00+02:00\",\n                \"v\": 365.4546\n            }\n        ]\n    }\n]"},{"id":"ad092c10-235f-49b4-8b2f-d1e47dba36bf","name":"Calculate consumption concept using \"based in wholesale market\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/consumption?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-05T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","consumption"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-05T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M, FM, TM,B`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3471"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:02:08 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9994"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"50271"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1452"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"type\": \"TOU-WSM\",\n        \"from\": \"2020-06-01T13:24:00\",\n        \"to\": \"2020-06-05T23:59:59\",\n        \"total\": 78.03378,\n        \"units\": \"kWh\",\n        \"total_consumption\": 1314,\n        \"periods\": [\n            {\n                \"cost\": 19.623843,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"price\": 0.072413,\n                \"price_change\": null,\n                \"val\": 271\n            },\n            {\n                \"cost\": 42.34627,\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"price\": 0.060322,\n                \"price_change\": null,\n                \"val\": 702\n            },\n            {\n                \"cost\": 16.063666,\n                \"key\": \"P3\",\n                \"label\": \"P3\",\n                \"price\": 0.047108,\n                \"price_change\": null,\n                \"val\": 341\n            }\n        ],\n        \"values\": [\n            {\n                \"c\": 6.975983103199998,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-01T00:00:00+02:00\",\n                \"v\": 108\n            },\n            {\n                \"c\": 2.3058397842000002,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-01T00:00:00+02:00\",\n                \"v\": 31\n            },\n            {\n                \"c\": 4.6739344583,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 61\n            },\n            {\n                \"c\": 4.5737855253,\n                \"k\": \"P3\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 88\n            },\n            {\n                \"c\": 9.533218472400002,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 146\n            },\n            {\n                \"c\": 8.771922568300003,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 145\n            },\n            {\n                \"c\": 3.7632116221,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 50\n            },\n            {\n                \"c\": 4.473536360099999,\n                \"k\": \"P3\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 85\n            },\n            {\n                \"c\": 4.6126856977,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 67\n            },\n            {\n                \"c\": 3.2002489886000003,\n                \"k\": \"P3\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 81\n            },\n            {\n                \"c\": 8.483507074999999,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 157\n            },\n            {\n                \"c\": 8.5816389391,\n                \"k\": \"P2\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 146\n            },\n            {\n                \"c\": 4.2681718908,\n                \"k\": \"P1\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 62\n            },\n            {\n                \"c\": 3.81609552,\n                \"k\": \"P3\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 87\n            }\n        ]\n    }\n]"},{"id":"3ad06132-35e4-4c43-9dc2-eb91ef01c4ca","name":"Calculate consumption concept using \"Turpe\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/consumption?device_id=1012303&from=2020-01-01T00:00:00&to=2020-12-31T00:00:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","consumption"],"query":[{"key":"device_id","value":"1012303"},{"key":"from","value":"2020-01-01T00:00:00"},{"key":"to","value":"2020-12-31T00:00:00"},{"key":"resolution","value":"D"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"type\": \"TURPE_CONSUMPTION\",\n        \"from\": \"2020-01-01T00:00:00\",\n        \"to\": \"2020-01-31T23:59:59\",\n        \"total\": 3476,\n        \"units\": \"kWh\",\n        \"total_consumption\": 55,\n        \"periods\": [\n            {\n                \"label\": \"Peak\",\n                \"key\": \"P1\",\n                \"price\": 5,\n                \"val\": 3,\n                \"cost\": 15,\n                \"price_change\": null\n            },\n            {\n                \"label\": \"Middle\",\n                \"key\": \"P2\",\n                \"price\": 4,\n                \"val\": 7,\n                \"cost\": 28,\n                \"price_change\": null\n            },\n            {\n                \"label\": \"Valley\",\n                \"key\": \"P3\",\n                \"price\": 3,\n                \"val\": 11,\n                \"cost\": 33,\n                \"price_change\": null\n            },\n            {\n                \"label\": \"Valley\",\n                \"key\": \"P3@PC_1\",\n                \"price\": 100,\n                \"val\": 34,\n                \"cost\": 3400,\n                \"price_change\": {\n                    \"from\": \"2020-02-01\",\n                    \"key\": \"P3\"\n                }\n            }\n        ],\n        \"values\": [\n            {\n                \"ts\": \"2020-01-01T00:00:00+01:00\",\n                \"v\": 1,\n                \"c\": 5,\n                \"k\": \"P1\"\n            },\n            {\n                \"ts\": \"2020-01-01T00:10:00+01:00\",\n                \"v\": 2,\n                \"c\": 10,\n                \"k\": \"P1\"\n            },\n            {\n                \"ts\": \"2020-01-01T07:00:00+01:00\",\n                \"v\": 3,\n                \"c\": 12,\n                \"k\": \"P2\"\n            },\n            {\n                \"ts\": \"2020-01-01T07:10:00+01:00\",\n                \"v\": 4,\n                \"c\": 16,\n                \"k\": \"P2\"\n            },\n            {\n                \"ts\": \"2020-01-01T13:00:00+01:00\",\n                \"v\": 5,\n                \"c\": 15,\n                \"k\": \"P3\"\n            },\n            {\n                \"ts\": \"2020-01-01T13:10:00+01:00\",\n                \"v\": 6,\n                \"c\": 18,\n                \"k\": \"P3\"\n            },\n            {\n                \"ts\": \"2020-02-01T18:00:00+01:00\",\n                \"v\": 7,\n                \"c\": 700,\n                \"k\": \"P3@PC_1\"\n            },\n            {\n                \"ts\": \"2020-02-01T18:10:00+01:00\",\n                \"v\": 8,\n                \"c\": 800,\n                \"k\": \"P3@PC_1\"\n            },\n            {\n                \"ts\": \"2020-02-01T22:00:00+01:00\",\n                \"v\": 9,\n                \"c\": 900,\n                \"k\": \"P3@PC_1\"\n            },\n            {\n                \"ts\": \"2020-02-01T22:10:00+01:00\",\n                \"v\": 10,\n                \"c\": 1000,\n                \"k\": \"P3@PC_1\"\n            }\n        ],\n        \"distributor\": {\n            \"type\": \"HTA\",\n            \"subtype\": \"CU\",\n            \"total_consumption\": 55,\n            \"total\": 1250,\n            \"units\": \"kWh\",\n            \"periods\": [\n                {\n                    \"label\": \"Pointe\",\n                    \"key\": \"T1\",\n                    \"price\": 50,\n                    \"val\": 3,\n                    \"cost\": 150,\n                    \"price_change\": null\n                },\n                {\n                    \"label\": \"HPH\",\n                    \"key\": \"T2\",\n                    \"price\": 40,\n                    \"val\": 7,\n                    \"cost\": 280,\n                    \"price_change\": null\n                },\n                {\n                    \"label\": \"HCH\",\n                    \"key\": \"T3\",\n                    \"price\": 30,\n                    \"val\": 11,\n                    \"cost\": 330,\n                    \"price_change\": null\n                },\n                {\n                    \"label\": \"HPB\",\n                    \"key\": \"T4\",\n                    \"price\": 20,\n                    \"val\": 15,\n                    \"cost\": 300,\n                    \"price_change\": null\n                },\n                {\n                    \"label\": \"HCB\",\n                    \"key\": \"T5\",\n                    \"price\": 10,\n                    \"val\": 19,\n                    \"cost\": 190,\n                    \"price_change\": null\n                }\n            ],\n            \"values\": [\n                {\n                    \"ts\": \"2020-01-01T00:00:00+01:00\",\n                    \"v\": 1,\n                    \"c\": 50,\n                    \"k\": \"T1\"\n                },\n                {\n                    \"ts\": \"2020-01-01T00:10:00+01:00\",\n                    \"v\": 2,\n                    \"c\": 100,\n                    \"k\": \"T1\"\n                },\n                {\n                    \"ts\": \"2020-01-01T07:00:00+01:00\",\n                    \"v\": 3,\n                    \"c\": 120,\n                    \"k\": \"T2\"\n                },\n                {\n                    \"ts\": \"2020-01-01T07:10:00+01:00\",\n                    \"v\": 4,\n                    \"c\": 160,\n                    \"k\": \"T2\"\n                },\n                {\n                    \"ts\": \"2020-01-01T13:00:00+01:00\",\n                    \"v\": 5,\n                    \"c\": 150,\n                    \"k\": \"T3\"\n                },\n                {\n                    \"ts\": \"2020-01-01T13:10:00+01:00\",\n                    \"v\": 6,\n                    \"c\": 180,\n                    \"k\": \"T3\"\n                },\n                {\n                    \"ts\": \"2020-02-01T18:00:00+01:00\",\n                    \"v\": 7,\n                    \"c\": 140,\n                    \"k\": \"T4\"\n                },\n                {\n                    \"ts\": \"2020-02-01T18:10:00+01:00\",\n                    \"v\": 8,\n                    \"c\": 160,\n                    \"k\": \"T4\"\n                },\n                {\n                    \"ts\": \"2020-02-01T22:00:00+01:00\",\n                    \"v\": 9,\n                    \"c\": 90,\n                    \"k\": \"T5\"\n                },\n                {\n                    \"ts\": \"2020-02-01T22:10:00+01:00\",\n                    \"v\": 10,\n                    \"c\": 100,\n                    \"k\": \"T5\"\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"7b069241-e20d-4571-90cb-66ead2578f90"},{"name":"Calculate cost due to the Contracted Demand concept","id":"34a4392e-5c2a-42f2-a7ba-860fe2390070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","urlObject":{"path":["cost","electricity","demand"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"932606"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-06-01T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-06-30T13:24:00"}],"variable":[]}},"response":[{"id":"089b82cf-157f-41a5-bb03-e22f7994ea99","name":"Calculate contracted demand concept using \"unique period - Mexico\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9994"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3049"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:09:10 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49976"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"53449"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"266"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 30,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"contracted_demand\": 100,\n                \"cost\": 389.999986,\n                \"days_gap\": 30,\n                \"key\": \"UP\",\n                \"label\": \"NO_LABEL\",\n                \"price\": 0.13,\n                \"price_change\": null\n            }\n        ],\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 389.999986,\n        \"type\": \"SINGLE_PERIOD_MX\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"4803e5d5-19c9-447d-9eaa-dc22538bf718","name":"Calculate contracted demand concept using \"by periods\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9998"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3401"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:03:18 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49980"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"53801"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"371"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 30,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"contracted_demand\": 50,\n                \"cost\": 150.000002,\n                \"days_gap\": 30,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"price\": 0.1,\n                \"price_change\": null\n            },\n            {\n                \"contracted_demand\": 100,\n                \"cost\": 359.999992,\n                \"days_gap\": 30,\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"price\": 0.12,\n                \"price_change\": null\n            }\n        ],\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 509.999994,\n        \"type\": \"MULTI_PERIOD\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"586dd7ee-3966-4d97-ab45-92310cca75fe","name":"Calculate contracted demand concept using \"unique period [kVA]\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9995"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3127"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:07:52 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49977"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"53527"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"266"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 30,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"contracted_demand\": 120,\n                \"cost\": 360.000005,\n                \"days_gap\": 30,\n                \"key\": \"UP\",\n                \"label\": \"NO_LABEL\",\n                \"price\": 0.1,\n                \"price_change\": null\n            }\n        ],\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 360.000005,\n        \"type\": \"SINGLE_PERIOD_UK\",\n        \"units\": \"kVA\"\n    }\n]"},{"id":"98e990bd-c0ba-462c-a327-c2f3130f97f4","name":"Calculate contracted demand concept using \"by periods with reduction coefficient\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9993"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2958"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:10:41 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49975"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"53358"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"366"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 30,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"contracted_demand\": 100,\n                \"cost\": null,\n                \"days_gap\": null,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"price\": 0.1,\n                \"price_change\": null\n            },\n            {\n                \"contracted_demand\": 50,\n                \"cost\": null,\n                \"days_gap\": null,\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"price\": 0.1,\n                \"price_change\": null\n            }\n        ],\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 195.000005,\n        \"type\": \"SINGLE_PERIOD_FR\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"b0dbb653-2345-4003-a318-aad247214618","name":"Calculate contracted demand concept using \"unique period [kW]\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9996"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3209"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:06:30 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49978"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"53609"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"261"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 30,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"contracted_demand\": 100,\n                \"cost\": 29.999999,\n                \"days_gap\": 30,\n                \"key\": \"UP\",\n                \"label\": \"NO_LABEL\",\n                \"price\": 0.01,\n                \"price_change\": null\n            }\n        ],\n        \"to\": \"2020-06-30T23:59:59\",\n        \"total\": 29.999999,\n        \"type\": \"SINGLE_PERIOD\",\n        \"units\": \"kW\"\n    }\n]"}],"_postman_id":"34a4392e-5c2a-42f2-a7ba-860fe2390070"},{"name":"Calculate cost due to the Demand Excess penalties concept","id":"7c71500f-5aaf-4885-a187-fe1917b21820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","urlObject":{"path":["cost","electricity","demand-excess"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"932606"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-06-01T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-06-30T13:24:00"}],"variable":[]}},"response":[{"id":"44037937-5c53-412b-9874-d02f913149c0","name":"Calculate demand excess concept using \"85%-105% rule\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9990"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1799"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:30:00 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49972"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"52199"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"419"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"days_gap\": 29,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"cost\": 182803.6344,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"max\": {\n                    \"ts\": \"2020-06-22T09:45:00+02:00\",\n                    \"v\": 278.4326\n                },\n                \"penalty\": true,\n                \"price\": 12,\n                \"value\": 525.2978\n            },\n            {\n                \"cost\": -2610,\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"max\": {\n                    \"ts\": \"2020-06-20T12:00:00+02:00\",\n                    \"v\": 77.1808\n                },\n                \"penalty\": false,\n                \"price\": 5,\n                \"value\": -18\n            }\n        ],\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 180193.6344,\n        \"type\": \"RULE_85_105\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"8db14a26-54cd-4567-9e52-8edc055d32dc","name":"Calculate demand excess concept using \"Quarter hourly excess penalty by period\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9988"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1607"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:33:12 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49970"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"52007"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"coeff_aei\": 2593.810417,\n                \"cost\": 3647.852014,\n                \"exceeded_vals\": [\n                    {\n                        \"ts\": \"2020-06-01T13:15:00+02:00\",\n                        \"v\": 119.1904\n                    },\n                    {\n                        \"ts\": \"2020-06-01T13:30:00+02:00\",\n                        \"v\": 144.4892\n                    },\n                    {\n                        \"ts\": \"2020-06-01T13:45:00+02:00\",\n                        \"v\": 215.8868\n                    },\n                    {\n                        \"ts\": \"2020-06-01T14:00:00+02:00\",\n                        \"v\": 196.4892\n                    },\n                    {\n                        \"ts\": \"2020-06-30T12:30:00+02:00\",\n                        \"v\": 209.2844\n                    },\n                    {\n                        \"ts\": \"2020-06-30T12:45:00+02:00\",\n                        \"v\": 214.4844\n                    },\n                    {\n                        \"ts\": \"2020-06-30T13:00:00+02:00\",\n                        \"v\": 224.1832\n                    },\n                    {\n                        \"ts\": \"2020-06-30T13:15:00+02:00\",\n                        \"v\": 219.6844\n                    }\n                ],\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"max\": {\n                    \"ts\": \"2020-06-22T09:45:00+02:00\",\n                    \"v\": 278.4326\n                },\n                \"penalty\": true,\n                \"price\": 1.406368\n            },\n            {\n                \"coeff_aei\": null,\n                \"cost\": null,\n                \"exceeded_vals\": [],\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"max\": {\n                    \"ts\": \"2020-06-20T12:00:00+02:00\",\n                    \"v\": 77.1808\n                },\n                \"penalty\": false,\n                \"price\": null\n            }\n        ],\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 3647.852014,\n        \"type\": \"QH_PENALTY\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"3aef0216-2e23-441a-a400-3c22d82671d9","name":"Calculate demand excess concept using \"CFE - Mexico\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9972"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1977"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:27:02 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49929"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48777"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"360"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"billable_load\": 278.43,\n        \"days_gap\": 29,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"max\": {\n                    \"ts\": \"2020-06-22T09:45:00+02:00\",\n                    \"v\": 278.4326\n                },\n                \"penalty\": true\n            },\n            {\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"max\": {\n                    \"ts\": \"2020-06-20T12:00:00+02:00\",\n                    \"v\": 77.1808\n                },\n                \"penalty\": true\n            }\n        ],\n        \"price\": 10,\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 80745.454,\n        \"type\": \"EP_MEXICO\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"6d9972a9-0fd0-4ade-8c0f-455be6b87e05","name":"Calculate demand excess concept using \"by period with reduction coeficient\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9970"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1778"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:30:22 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49927"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48578"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"122"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [],\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 0,\n        \"type\": \"MULTI_PERIOD_FR\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"75ac7b3a-e961-4bbb-be89-f754b7ae1c3a","name":"Calculate demand excess concept using \"Load excess Peru\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9968"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1306"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:38:13 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49925"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48106"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"288"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"avg_max_six_months\": 255.2374,\n        \"distribution_penalty\": 102.094962,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"generation_demand\": 0.3,\n        \"generation_penalty\": 83.529783,\n        \"max\": {\n            \"ts\": \"2020-06-22T09:45:00+02:00\",\n            \"v\": 278.4326\n        },\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 185.6247448405087,\n        \"type\": \"EP_PERU\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"e94a33ee-0201-47ea-9273-b5dd74639e5b","name":"Calculate demand excess concept using \"by periods based on period maximum demand\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9967"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1258"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:39:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49924"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48058"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"351"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"max\": {\n                    \"ts\": \"2020-06-22T09:45:00+02:00\",\n                    \"v\": 278.4326\n                },\n                \"price\": 0.3,\n                \"total\": 83.529783\n            },\n            {\n                \"key\": \"P2\",\n                \"label\": \"P2\",\n                \"max\": {\n                    \"ts\": \"2020-06-20T12:00:00+02:00\",\n                    \"v\": 77.1808\n                },\n                \"price\": 0.4,\n                \"total\": 30.87232\n            }\n        ],\n        \"to\": \"2020-06-30T13:24:00\",\n        \"total\": 114.402104,\n        \"type\": \"MAX_DEMAND_BY_PERIOD\",\n        \"units\": \"kW\"\n    }\n]"},{"id":"653c86fb-b5c5-4e50-b202-12cb91f36e06","name":"Calculate demand excess concept using \"peak hours Portugal\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9966"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"914"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:44:46 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49923"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"47714"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"204"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"peak_hours_power\": 92.299369,\n        \"periods\": [\n            {\n                \"days_gap\": 6,\n                \"key\": \"P1\",\n                \"label\": \"P1\",\n                \"price\": 0.5\n            }\n        ],\n        \"to\": \"2020-06-07T13:24:00\",\n        \"total\": 276.898106,\n        \"type\": \"PEAK_HOURS\",\n        \"units\": \"kWh\"\n    }\n]"},{"id":"9daba58b-4a89-4b39-9d68-e26763754c4e","name":"Calculate demand excess of Turpe BT>36","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9967"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1258"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:39:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49924"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48058"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"351"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"TURPE_EPOWER\",\n    \"turpe_type\": \"BT_GREATER_36\",\n    \"turpe_subtype\": \"CU\",\n    \"from\": \"2020-01-01T00:00:00\",\n    \"to\": \"2020-01-15T23:59:59\",\n    \"cost\": 120.0,\n    \"units\": \"kW\",\n    \"periods\": [\n      {\n        \"penalty\": true,\n        \"key\": \"T1\",\n        \"label\": \"HPH\",\n        \"cost\": 60.0,\n        \"cload\": 180.0,\n        \"price_change_info\": null,\n        \"exceeded_vals\": [\n          {\n            \"ts\": \"2020-01-02T17:40:00+01:00\",\n            \"v\": 20.0\n          },\n          {\n            \"ts\": \"2020-01-15T00:50:00+01:00\",\n            \"v\": 40.0\n          }\n        ]\n      },\n      {\n        \"penalty\": true,\n        \"key\": \"T2\",\n        \"label\": \"HCH\",\n        \"cost\": 60.0,\n        \"cload\": 200.0,\n        \"price_change_info\": null,\n        \"exceeded_vals\": [\n          {\n            \"ts\": \"2020-01-02T21:40:00+01:00\",\n            \"v\": 20.0\n          },\n          {\n            \"ts\": \"2020-01-15T21:50:00+01:00\",\n            \"v\": 40.0\n          }\n        ]\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T3\",\n        \"label\": \"HPB\",\n        \"cost\": null,\n        \"cload\": 220.0,\n        \"price_change_info\": null,\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T4\",\n        \"label\": \"HCB\",\n        \"cost\": null,\n        \"cload\": 270.0,\n        \"price_change_info\": null,\n        \"exceeded_vals\": []\n      }\n    ]\n  }\n]\n"},{"id":"c827dbe9-ee3f-4534-a121-4dea47fa8cb8","name":"Calculate demand excess of Turpe HTA with price changes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9967"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1258"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:39:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49924"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48058"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"351"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"TURPE_EPOWER\",\n    \"turpe_type\": \"HTA\",\n    \"turpe_subtype\": \"LU\",\n    \"from\": \"2020-01-01T00:00:00\",\n    \"to\": \"2020-01-20T23:59:59\",\n    \"cost\": 5456.079654,\n    \"units\": \"kW\",\n    \"periods\": [\n      {\n        \"penalty\": true,\n        \"key\": \"T1\",\n        \"label\": \"Pointe\",\n        \"cost\": 964.31832,\n        \"cload\": 180.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.11,\n          \"bi\": 16.31\n        },\n        \"price_change_info\": null,\n        \"exceeded_vals\": [\n          {\n            \"ts\": \"2020-01-15T00:20:00+01:00\",\n            \"v\": 60.0\n          },\n          {\n            \"ts\": \"2020-01-15T00:30:00+01:00\",\n            \"v\": 420.0\n          },\n          {\n            \"ts\": \"2020-01-15T01:00:00+01:00\",\n            \"v\": 120.0\n          },\n          {\n            \"ts\": \"2020-01-15T01:10:00+01:00\",\n            \"v\": 180.0\n          },\n          {\n            \"ts\": \"2020-01-15T01:20:00+01:00\",\n            \"v\": 240.0\n          },\n          {\n            \"ts\": \"2020-01-15T01:40:00+01:00\",\n            \"v\": 30.0\n          },\n          {\n            \"ts\": \"2020-01-15T01:50:00+01:00\",\n            \"v\": 60.0\n          }\n        ]\n      },\n      {\n        \"penalty\": true,\n        \"key\": \"T1@PC_1\",\n        \"label\": \"Pointe\",\n        \"cost\": 3324.273595,\n        \"cload\": 180.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.35,\n          \"bi\": 17.81\n        },\n        \"price_change_info\": {\n          \"key\": \"T1\",\n          \"from\": \"2020-01-18\"\n        },\n        \"exceeded_vals\": [\n          {\n            \"ts\": \"2020-01-18T00:20:00+01:00\",\n            \"v\": 60.0\n          },\n          {\n            \"ts\": \"2020-01-18T00:30:00+01:00\",\n            \"v\": 420.0\n          },\n          {\n            \"ts\": \"2020-01-18T01:00:00+01:00\",\n            \"v\": 120.0\n          },\n          {\n            \"ts\": \"2020-01-18T01:10:00+01:00\",\n            \"v\": 180.0\n          },\n          {\n            \"ts\": \"2020-01-18T01:20:00+01:00\",\n            \"v\": 240.0\n          }\n        ]\n      },\n      {\n        \"penalty\": true,\n        \"key\": \"T2\",\n        \"label\": \"HPH\",\n        \"cost\": 212.321771,\n        \"cload\": 200.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.11,\n          \"bi\": 15.76\n        },\n        \"price_change_info\": null,\n        \"exceeded_vals\": [\n          {\n            \"ts\": \"2020-01-15T02:20:00+01:00\",\n            \"v\": 100.0\n          },\n          {\n            \"ts\": \"2020-01-15T02:30:00+01:00\",\n            \"v\": 10.0\n          },\n          {\n            \"ts\": \"2020-01-15T02:40:00+01:00\",\n            \"v\": 70.0\n          }\n        ]\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T2@PC_1\",\n        \"label\": \"HPH\",\n        \"cost\": null,\n        \"cload\": 200.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.35,\n          \"bi\": 17.26\n        },\n        \"price_change_info\": {\n          \"key\": \"T2\",\n          \"from\": \"2020-01-18\"\n        },\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T3\",\n        \"label\": \"HCH\",\n        \"cost\": null,\n        \"cload\": 220.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.11,\n          \"bi\": 13.29\n        },\n        \"price_change_info\": null,\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T3@PC_1\",\n        \"label\": \"HCH\",\n        \"cost\": null,\n        \"cload\": 220.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.35,\n          \"bi\": 14.79\n        },\n        \"price_change_info\": {\n          \"key\": \"T3\",\n          \"from\": \"2020-01-18\"\n        },\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T4\",\n        \"label\": \"HPB\",\n        \"cost\": null,\n        \"cload\": 270.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.11,\n          \"bi\": 8.75\n        },\n        \"price_change_info\": null,\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T4@PC_1\",\n        \"label\": \"HPB\",\n        \"cost\": null,\n        \"cload\": 270.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.35,\n          \"bi\": 10.25\n        },\n        \"price_change_info\": {\n          \"key\": \"T4\",\n          \"from\": \"2020-01-18\"\n        },\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T5\",\n        \"label\": \"HCB\",\n        \"cost\": null,\n        \"cload\": 300.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.11,\n          \"bi\": 1.67\n        },\n        \"price_change_info\": null,\n        \"exceeded_vals\": []\n      },\n      {\n        \"penalty\": false,\n        \"key\": \"T5@PC_1\",\n        \"label\": \"HCB\",\n        \"cost\": null,\n        \"cload\": 300.0,\n        \"power_coefficient\": {\n          \"exceeded_power\": 0.35,\n          \"bi\": 3.17\n        },\n        \"price_change_info\": {\n          \"key\": \"T5\",\n          \"from\": \"2020-01-18\"\n        },\n        \"exceeded_vals\": []\n      }\n    ]\n  }\n]"},{"id":"f8fa0032-ed6d-4f63-a12a-e52568215662","name":"Calculate demand excess of Spanish Circular 03-2020","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/demand-excess?device_id=932606&from=2020-01-018T00:00:00&to=2020-01-19T23:59:00","host":["{{api_v3.host}}"],"path":["cost","electricity","demand-excess"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-018T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-19T23:59:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9967"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1258"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:39:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49924"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48058"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"351"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"CIRCULAR_03_2020_COMPLEX_FORMULA\",\n  \"tariff\": \"2.0TD\",\n  \"from\": \"2020-01-18T00:00:00\",\n  \"to\": \"2020-01-19T23:59:59\",\n  \"total\": 110.072937,\n  \"units\": \"kW\",\n  \"periods\": [\n    {\n      \"penalty\": true,\n      \"key\": \"P1\",\n      \"label\": \"Period_P1\",\n      \"tp\": 3.4075,\n      \"kp\": 1.0,\n      \"price\": 3.4075,\n      \"coeff_aei\": 11.6619,\n      \"cost\": 39.737937,\n      \"price_change_info\": null,\n      \"max\": {\n        \"ts\": \"2020-01-18T01:00:00+01:00\",\n        \"v\": 10.0\n      },\n      \"exceeded_vals\": [\n        {\n          \"ts\": \"2020-01-18T00:15:00+01:00\",\n          \"v\": 6.0\n        },\n        {\n          \"ts\": \"2020-01-18T01:00:00+01:00\",\n          \"v\": 10.0\n        }\n      ]\n    },\n    {\n      \"penalty\": true,\n      \"key\": \"P1@PC_1\",\n      \"label\": \"Period_P1\",\n      \"tp\": 3.9075,\n      \"kp\": 1.5,\n      \"price\": 5.8613,\n      \"coeff_aei\": 12.0,\n      \"cost\": 70.335,\n      \"price_change_info\": {\n        \"from\": \"2020-01-19\",\n        \"key\": \"P1\"\n      },\n      \"max\": {\n        \"ts\": \"2020-01-19T01:00:00+01:00\",\n        \"v\": 12.0\n      },\n      \"exceeded_vals\": [\n        {\n          \"ts\": \"2020-01-19T01:00:00+01:00\",\n          \"v\": 12.0\n        }\n      ]\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P2\",\n      \"label\": \"Period_P2\",\n      \"tp\": 3.4075,\n      \"kp\": 0.041,\n      \"price\": 0.1397,\n      \"coeff_aei\": 0.0,\n      \"cost\": null,\n      \"price_change_info\": null,\n      \"max\": null,\n      \"exceeded_vals\": []\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P2@PC_1\",\n      \"label\": \"Period_P2\",\n      \"tp\": 3.9075,\n      \"kp\": 0.541,\n      \"price\": 2.1140,\n      \"coeff_aei\": 0.0,\n      \"cost\": null,\n      \"price_change_info\": {\n        \"from\": \"2020-01-19\",\n        \"key\": \"P2\"\n      },\n      \"max\": null,\n      \"exceeded_vals\": []\n    }\n  ]\n}"}],"_postman_id":"7c71500f-5aaf-4885-a187-fe1917b21820"},{"name":"Calculate cost due to the Reactive Excess penalties concept","id":"5ddf7725-f157-4ede-a75b-d7f071f81efe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","urlObject":{"path":["cost","electricity","reactive-excess"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"946190"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-06-01T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-06-07T13:24:00"},{"description":{"content":"<p>Enum: <code>HH, H, D, W, M</code>, default value HH</p>\n","type":"text/plain"},"key":"resolution","value":"D"}],"variable":[]}},"response":[{"id":"564abf8d-817e-4c82-aaa4-ea3e2913f077","name":"Calculate reactive penalty concept using \"based on % table reactive power / active\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"994"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1146"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 06:40:53 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9994"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"62346"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1660"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"active\": 65299,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"intervals\": [\n            {\n                \"cost\": 806,\n                \"from\": 0,\n                \"penalty\": 806,\n                \"price\": 1,\n                \"to\": 50\n            }\n        ],\n        \"reactive\": 806,\n        \"to\": \"2020-06-07T23:59:59\",\n        \"total\": 806,\n        \"type\": \"PERCENT\",\n        \"units\": \"kVArh\",\n        \"values\": [\n            {\n                \"active\": 772,\n                \"cost\": 5,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0.01,\n                \"reactive\": 5,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 4262,\n                \"cost\": 32,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"percent\": 0.01,\n                \"reactive\": 32,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7370,\n                \"cost\": 152,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"percent\": 0.02,\n                \"reactive\": 152,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3235,\n                \"cost\": 2,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0,\n                \"reactive\": 2,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3302,\n                \"cost\": 7,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0,\n                \"reactive\": 7,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6117,\n                \"cost\": 24,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"percent\": 0,\n                \"reactive\": 24,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6281,\n                \"cost\": 298,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"percent\": 0.05,\n                \"reactive\": 298,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3260,\n                \"cost\": 21,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0.01,\n                \"reactive\": 21,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3277,\n                \"cost\": 13,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0,\n                \"reactive\": 13,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7326,\n                \"cost\": 151,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"percent\": 0.02,\n                \"reactive\": 151,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 10143,\n                \"cost\": 63,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0.01,\n                \"reactive\": 63,\n                \"ts\": \"2020-06-06T00:00:00+02:00\"\n            },\n            {\n                \"active\": 9954,\n                \"cost\": 38,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"percent\": 0,\n                \"reactive\": 38,\n                \"ts\": \"2020-06-07T00:00:00+02:00\"\n            }\n        ]\n    }\n]"},{"id":"d95b5f3b-546d-4a79-b607-975dce4d52d3","name":"Calculate reactive penalty concept using \" based on Phi cosinus\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"993"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"875"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 06:45:24 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9993"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"62075"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1761"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"active\": 65299,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"active\": 31356,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"price\": 0,\n                \"reactive\": 657\n            },\n            {\n                \"active\": 33943,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"price\": 0,\n                \"reactive\": 149\n            }\n        ],\n        \"reactive\": 806,\n        \"to\": \"2020-06-07T23:59:59\",\n        \"total\": 0,\n        \"type\": \"COS_PHI\",\n        \"units\": \"kVArh\",\n        \"values\": [\n            {\n                \"active\": 772,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 5,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 4262,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"reactive\": 32,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7370,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"reactive\": 152,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3235,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 2,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3302,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 7,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6117,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"reactive\": 24,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6281,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"reactive\": 298,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3260,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 21,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3277,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 13,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7326,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": 0,\n                \"reactive\": 151,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 10143,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 63,\n                \"ts\": \"2020-06-06T00:00:00+02:00\"\n            },\n            {\n                \"active\": 9954,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": 0,\n                \"reactive\": 38,\n                \"ts\": \"2020-06-07T00:00:00+02:00\"\n            }\n        ]\n    }\n]"},{"id":"dc093210-002f-482c-bcab-3f543f9876c8","name":"Calculate reactive penalty concept using \"based on Inductive % table + Capacitive - Portugal\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"992"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"738"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 06:47:41 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9992"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"61938"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"454"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"to\": \"2020-06-07T23:59:59\",\n        \"units\": \"kVArh\",\n        \"cost\": 174.400003,\n        \"active\": 42601,\n        \"inductive\": 711,\n        \"inductive_cost\": 0,\n        \"capacitive\": 1744,\n        \"capacitive_cost\": 174.400003,\n        \"type\": \"INDUCTIVE_CAPACITIVE\",\n        \"inductive_intervals\": [\n            {\n                \"from\": 0,\n                \"to\": 100,\n                \"penalty\": 711,\n                \"price\": 0,\n                \"cost\": 0\n            }\n        ],\n        \"capacitive_periods\": [\n            {\n                \"key\": \"P3\",\n                \"reactive\": 1093,\n                \"price\": 0.1,\n                \"cost\": 109.300002\n            },\n            {\n                \"key\": \"P4\",\n                \"reactive\": 651,\n                \"price\": 0.1,\n                \"cost\": 65.100001\n            }\n        ]\n    }\n]"},{"id":"e83349c6-a32a-4133-913e-5bf2db8aca84","name":"Calculate reactive penalty concept using \"based on CFE Formulas - Mexico\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"991"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"530"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 06:51:09 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9991"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"61730"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1856"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"cos_phi\": 1,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"penalty_or_bonus\": -0.024983,\n        \"periods\": [\n            {\n                \"active\": 9642,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.024919,\n                \"price\": 0,\n                \"reactive\": 259\n            },\n            {\n                \"active\": 55657,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024989,\n                \"price\": 0,\n                \"reactive\": 547\n            }\n        ],\n        \"to\": \"2020-06-07T23:59:59\",\n        \"total\": 0,\n        \"type\": \"CFE_MEXICO\",\n        \"units\": \"kVArh\",\n        \"values\": [\n            {\n                \"active\": 3026,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024998,\n                \"reactive\": 12,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 2008,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.024983,\n                \"reactive\": 25,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 2104,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.024909,\n                \"reactive\": 60,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 8501,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024986,\n                \"reactive\": 94,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7724,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024998,\n                \"reactive\": 31,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 1695,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.025,\n                \"reactive\": 0,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 1768,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.024482,\n                \"reactive\": 120,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7773,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024926,\n                \"reactive\": 199,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 8536,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024981,\n                \"reactive\": 110,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 2067,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P1\",\n                \"penalty\": -0.024923,\n                \"reactive\": 54,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 10143,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024996,\n                \"reactive\": 63,\n                \"ts\": \"2020-06-06T00:00:00+02:00\"\n            },\n            {\n                \"active\": 9954,\n                \"cos_phi\": 1,\n                \"cost\": 0,\n                \"key\": \"P2\",\n                \"penalty\": -0.024998,\n                \"reactive\": 38,\n                \"ts\": \"2020-06-07T00:00:00+02:00\"\n            }\n        ]\n    }\n]"},{"id":"2238a387-750b-4288-bc79-c9e605f81734","name":"Calculate reactive penalty concept using \"based on  CNFL formulas - Electricity\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3508"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 07:01:32 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9989"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"61108"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1729"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"excess_load_factor\": 3,\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"active\": 31356,\n                \"cos_phi\": 1,\n                \"cost_excess_load\": null,\n                \"key\": \"P1\",\n                \"reactive\": 657,\n                \"total\": null\n            },\n            {\n                \"active\": 33943,\n                \"cos_phi\": 1,\n                \"cost_excess_load\": null,\n                \"key\": \"P2\",\n                \"reactive\": 149,\n                \"total\": null\n            }\n        ],\n        \"to\": \"2020-06-07T23:59:59\",\n        \"total\": 92074.519415,\n        \"total_active\": 65299,\n        \"total_cos_phi\": 0.999924,\n        \"total_cost_excess_load\": 46032,\n        \"total_reactive\": 806,\n        \"type\": \"CNFL_COSTA_RICA\",\n        \"units\": \"kVArh\",\n        \"values\": [\n            {\n                \"active\": 772,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 5,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 4262,\n                \"cost\": null,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"reactive\": 32,\n                \"ts\": \"2020-06-01T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7370,\n                \"cost\": null,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"reactive\": 152,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3235,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 2,\n                \"ts\": \"2020-06-02T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3302,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 7,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6117,\n                \"cost\": null,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"reactive\": 24,\n                \"ts\": \"2020-06-03T00:00:00+02:00\"\n            },\n            {\n                \"active\": 6281,\n                \"cost\": null,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"reactive\": 298,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3260,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 21,\n                \"ts\": \"2020-06-04T00:00:00+02:00\"\n            },\n            {\n                \"active\": 3277,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 13,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 7326,\n                \"cost\": null,\n                \"key\": \"P1\",\n                \"penalty\": null,\n                \"reactive\": 151,\n                \"ts\": \"2020-06-05T00:00:00+02:00\"\n            },\n            {\n                \"active\": 10143,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 63,\n                \"ts\": \"2020-06-06T00:00:00+02:00\"\n            },\n            {\n                \"active\": 9954,\n                \"cost\": null,\n                \"key\": \"P2\",\n                \"penalty\": null,\n                \"reactive\": 38,\n                \"ts\": \"2020-06-07T00:00:00+02:00\"\n            }\n        ]\n    }\n]"},{"id":"e849890d-c56a-4e17-8115-fcbb04c98fee","name":"Calculate reactive penalty concept with all readings for each period using with Spanish Circular 03-2020","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-01-18T00:00:00&to=2020-01-19T23:59:59&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-18T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-19T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3508"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 07:01:32 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9989"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"61108"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1729"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"IND-CAP-COS_PHI\",\n  \"units\": \"kVArh\",\n  \"from\": \"2020-01-18T00:00:00\",\n  \"to\": \"2020-01-19T23:59:59\",\n  \"total_capacitive\": 4.66,\n  \"total_inductive\": 7.9,\n  \"total\": 12.56,\n  \"periods\": [\n    {\n      \"penalty\": true,\n      \"key\": \"P1\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 120.0,\n      \"inductive\": 286.0,\n      \"capacitive\": 49.0,\n      \"reactive\": 237.0,\n      \"cos_phi\": 0.45,\n      \"excess\": 197.4,\n      \"price\": 0.04,\n      \"cost\": 7.9\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P2\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 125.0,\n      \"inductive\": 52.0,\n      \"capacitive\": 34.0,\n      \"reactive\": 18.0,\n      \"cos_phi\": 0.99,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P3\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 115.0,\n      \"inductive\": 34.0,\n      \"capacitive\": 63.0,\n      \"reactive\": 29.0,\n      \"cos_phi\": 0.97,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P4\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 1166.0,\n      \"inductive\": 321.0,\n      \"capacitive\": 24.0,\n      \"reactive\": 297.0,\n      \"cos_phi\": 0.97,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P5\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 917.0,\n      \"inductive\": 113.0,\n      \"capacitive\": 62.0,\n      \"reactive\": 51.0,\n      \"cos_phi\": 1.0,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": true,\n      \"key\": \"P6\",\n      \"type\": \"CAPACITIVE\",\n      \"active\": 194.0,\n      \"inductive\": 25.0,\n      \"capacitive\": 157.0,\n      \"reactive\": 132.0,\n      \"excess\": 93.2,\n      \"price\": 0.05,\n      \"cost\": 4.66,\n      \"values\": [\n        {\n          \"ts\": \"2020-01-18T02:00:00+01:00\",\n          \"active\": 50.0,\n          \"inductive\": 4.0,\n          \"capacitive\": 25.0,\n          \"reactive\": 21.0,\n          \"cos_phi\": 0.92,\n          \"excess\": 11.0,\n          \"price\": 0.05,\n          \"cost\": 0.55\n        },\n        {\n          \"ts\": \"2020-01-18T04:00:00+01:00\",\n          \"active\": 11.0,\n          \"inductive\": 3.0,\n          \"capacitive\": 10.0,\n          \"reactive\": 7.0,\n          \"cos_phi\": 0.84,\n          \"excess\": 4.8,\n          \"price\": 0.05,\n          \"cost\": 0.24\n        },\n        {\n          \"ts\": \"2020-01-18T06:00:00+01:00\",\n          \"active\": 130.0,\n          \"inductive\": 12.0,\n          \"capacitive\": 110.0,\n          \"reactive\": 98.0,\n          \"cos_phi\": 0.8,\n          \"excess\": 72.0,\n          \"price\": 0.05,\n          \"cost\": 3.6\n        },\n        {\n          \"ts\": \"2020-01-19T00:00:00+01:00\",\n          \"active\": 2.0,\n          \"inductive\": 3.0,\n          \"capacitive\": 7.0,\n          \"reactive\": 4.0,\n          \"cos_phi\": 0.45,\n          \"excess\": 3.6,\n          \"price\": 0.05,\n          \"cost\": 0.18\n        },\n        {\n          \"ts\": \"2020-01-19T07:00:00+01:00\",\n          \"active\": 1.0,\n          \"inductive\": 3.0,\n          \"capacitive\": 5.0,\n          \"reactive\": 2.0,\n          \"cos_phi\": 0.45,\n          \"excess\": 1.8,\n          \"price\": 0.05,\n          \"cost\": 0.09\n        }\n      ]\n    }\n  ]\n}"},{"id":"ca2c1a11-ae1a-4e31-b532-7ffd72cb055d","name":"Calculate reactive penalty concept with some periods with all readings empty with Spanish Circular 03-2020","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/reactive-excess?device_id=946190&from=2020-01-18T00:00:00&to=2020-01-19T23:59:59&resolution=D","host":["{{api_v3.host}}"],"path":["cost","electricity","reactive-excess"],"query":[{"key":"device_id","value":"946190","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-18T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-19T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"999"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3508"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 07:01:32 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9989"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"61108"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1729"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"IND-CAP-COS_PHI\",\n  \"units\": \"kVArh\",\n  \"from\": \"2020-01-18T00:00:00\",\n  \"to\": \"2020-01-19T23:59:59\",\n  \"total_capacitive\": 0.0,\n  \"total_inductive\": 0.0,\n  \"total\": 0.0,\n  \"periods\": [\n    {\n      \"penalty\": false,\n      \"key\": \"P1\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 55.0,\n      \"inductive\": 72.0,\n      \"capacitive\": null,\n      \"reactive\": null,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P2\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": 69.0,\n      \"inductive\": null,\n      \"capacitive\": 18.0,\n      \"reactive\": null,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P3\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": null,\n      \"inductive\": null,\n      \"capacitive\": 18.0,\n      \"reactive\": null,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P4\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": null,\n      \"inductive\": null,\n      \"capacitive\": null,\n      \"reactive\": null,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P5\",\n      \"type\": \"INDUCTIVE\",\n      \"active\": null,\n      \"inductive\": null,\n      \"capacitive\": null,\n      \"reactive\": null,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0\n    },\n    {\n      \"penalty\": false,\n      \"key\": \"P6\",\n      \"type\": \"CAPACITIVE\",\n      \"active\": 0.0,\n      \"inductive\": 0.0,\n      \"capacitive\": 0.0,\n      \"reactive\": 0.0,\n      \"excess\": 0.0,\n      \"price\": 0.0,\n      \"cost\": 0.0,\n      \"values\": []\n    }\n  ]\n}\n"}],"_postman_id":"5ddf7725-f157-4ede-a75b-d7f071f81efe"},{"name":"Calculate the Total Cost including discounts and taxes","id":"4cf12bf2-dc81-4acb-bc6c-d701f49220fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/electricity/total-and-taxes?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","urlObject":{"path":["cost","electricity","total-and-taxes"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"932606"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-06-01T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-06-30T13:24:00"}],"variable":[]}},"response":[{"id":"e9c31eef-74ee-4c3d-91d1-c3e16282dead","name":"Total Cost including discounts and taxes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/electricity/total-and-taxes?device_id=932606&from=2020-06-01T13:24:00&to=2020-06-30T13:24:00","host":["{{api_v3.host}}"],"path":["cost","electricity","total-and-taxes"],"query":[{"key":"device_id","value":"932606","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-30T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9969"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1406"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:36:33 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49926"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48206"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"351"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"consumption\": {\n            \"breakdown\": [],\n            \"gross_total\": 6993.172488944876,\n            \"net_total\": 6993.172488944876,\n            \"taxes_total\": 0\n        },\n        \"demand\": {\n            \"breakdown\": [],\n            \"gross_total\": 42000,\n            \"net_total\": 42000,\n            \"taxes_total\": 0\n        },\n        \"global\": {\n            \"breakdown\": [],\n            \"gross_total\": 48993.172488944874,\n            \"net_total\": 48993.172488944874,\n            \"net_total_without_vat\": 48993.172488944874,\n            \"taxes_total\": 0\n        }\n    }\n]"}],"_postman_id":"4cf12bf2-dc81-4acb-bc6c-d701f49220fc"}],"id":"f26fb18c-1b61-40d0-9066-b1e1d4ff7605","event":[{"listen":"prerequest","script":{"id":"3ce7d5e3-e80d-41ff-8767-f40c31e5b9c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc2bf9a7-9a67-4bd9-9fd5-71a70568ed6b","type":"text/javascript","exec":[""]}}],"_postman_id":"f26fb18c-1b61-40d0-9066-b1e1d4ff7605","description":""},{"name":"Gas","item":[{"name":"Calculate Cost Summary","id":"2959182f-1d68-4481-820e-c152be8d89f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/gas/summary?device_id=533925&resolution=D&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices&embed=device","urlObject":{"path":["cost","gas","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533925"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"D"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2019-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2019-01-10T23:59:59"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"prices"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"device"}],"variable":[]}},"response":[{"id":"4e35af74-a26d-418c-b806-b50351febfa5","name":"Cost Summary with embedded prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/summary?device_id=533925&resolution=D&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices","host":["{{api_v3.host}}"],"path":["cost","gas","summary"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9985"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"885"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:45:14 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49967"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"51285"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"343"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18759\n        },\n        \"device\": {\n            \"id\": 533925\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47afefd7efdd2735e1eeab\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"GAS\"\n        },\n        \"supply\": {\n            \"id\": 13541\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"7376112d-3d12-40d9-84c2-0e38b3a26f06","name":"Cost Summary with embedded prices and device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/summary?device_id=533925&resolution=D&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59&embed=prices&embed=device","host":["{{api_v3.host}}"],"path":["cost","gas","summary"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9984"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"870"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:45:29 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49966"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"51270"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"461"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18759\n        },\n        \"device\": {\n            \"datasource\": {\n                \"id\": 32803\n            },\n            \"description\": \"\",\n            \"id\": 533925,\n            \"local_id\": \"G40\",\n            \"location\": {\n                \"id\": 114594\n            },\n            \"name\": \"G40\",\n            \"status\": \"ACCEPTED\"\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47afefd7efdd2735e1eeab\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"GAS\"\n        },\n        \"supply\": {\n            \"id\": 13541\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"9913aabd-0f53-4648-8bf8-3132edb2f6f6","name":"Basic Cost Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/summary?device_id=533925&resolution=D&from=2019-01-01T00:00:00&to=2019-01-10T23:59:59","host":["{{api_v3.host}}"],"path":["cost","gas","summary"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9986"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"909"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:44:50 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49968"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"51309"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"214"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18759\n        },\n        \"device\": {\n            \"id\": 533925\n        },\n        \"from\": \"2019-01-01T00:00:00\",\n        \"prices\": {\n            \"id\": \"5f47afefd7efdd2735e1eeab\"\n        },\n        \"supply\": {\n            \"id\": 13541\n        },\n        \"to\": \"2019-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"}],"_postman_id":"2959182f-1d68-4481-820e-c152be8d89f8"},{"name":"Calculate cost due to the Consumption concept","id":"e5f8c4f1-6b83-46c2-8d52-9d3da5817188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/gas/consumption?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","urlObject":{"path":["cost","gas","consumption"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533925"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2019-01-07T06:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2019-01-08T05:59:59"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"H"}],"variable":[]}},"response":[{"id":"d8ba98da-a49f-487d-a18c-01646ba9528d","name":"Calculate consumption concept using \"fixed price\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/consumption?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","host":["{{api_v3.host}}"],"path":["cost","gas","consumption"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"from","value":"2019-01-07T06:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-08T05:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `QH, HH, H, D, W, M, FM, TM,B`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9983"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"793"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:46:46 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49965"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"51193"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2237"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2019-01-07T06:00:00\",\n        \"periods\": [\n            {\n                \"cost\": 1975.392029,\n                \"key\": \"P\",\n                \"label\": \"P\",\n                \"price\": 0.1,\n                \"price_change\": null,\n                \"val\": 19753.92\n            }\n        ],\n        \"to\": \"2019-01-08T05:59:59\",\n        \"total\": 1975.392029,\n        \"total_consumption\": 19753.92,\n        \"type\": \"FIX_PRICE\",\n        \"units\": \"kWh\",\n        \"values\": [\n            {\n                \"c\": 65.66400097846984,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T06:00:00+01:00\",\n                \"v\": 656.64\n            },\n            {\n                \"c\": 73.87200110077858,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T07:00:00+01:00\",\n                \"v\": 738.7199999999999\n            },\n            {\n                \"c\": 82.08000122308731,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T08:00:00+01:00\",\n                \"v\": 820.8\n            },\n            {\n                \"c\": 87.55200130462646,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T09:00:00+01:00\",\n                \"v\": 875.52\n            },\n            {\n                \"c\": 84.81600126385689,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T10:00:00+01:00\",\n                \"v\": 848.16\n            },\n            {\n                \"c\": 109.44000163078307,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T11:00:00+01:00\",\n                \"v\": 1094.3999999999999\n            },\n            {\n                \"c\": 112.17600167155265,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T12:00:00+01:00\",\n                \"v\": 1121.76\n            },\n            {\n                \"c\": 112.17600167155265,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T13:00:00+01:00\",\n                \"v\": 1121.76\n            },\n            {\n                \"c\": 125.85600187540054,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T14:00:00+01:00\",\n                \"v\": 1258.56\n            },\n            {\n                \"c\": 142.272002120018,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T15:00:00+01:00\",\n                \"v\": 1422.7199999999998\n            },\n            {\n                \"c\": 101.23200150847434,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T16:00:00+01:00\",\n                \"v\": 1012.3199999999999\n            },\n            {\n                \"c\": 68.40000101923941,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T17:00:00+01:00\",\n                \"v\": 683.9999999999999\n            },\n            {\n                \"c\": 71.136001060009,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T18:00:00+01:00\",\n                \"v\": 711.3599999999999\n            },\n            {\n                \"c\": 76.60800114154814,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T19:00:00+01:00\",\n                \"v\": 766.0799999999999\n            },\n            {\n                \"c\": 112.17600167155265,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T20:00:00+01:00\",\n                \"v\": 1121.76\n            },\n            {\n                \"c\": 109.44000163078307,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T21:00:00+01:00\",\n                \"v\": 1094.3999999999999\n            },\n            {\n                \"c\": 84.81600126385689,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T22:00:00+01:00\",\n                \"v\": 848.16\n            },\n            {\n                \"c\": 68.40000101923941,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-07T23:00:00+01:00\",\n                \"v\": 683.9999999999999\n            },\n            {\n                \"c\": 49.24800073385238,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T00:00:00+01:00\",\n                \"v\": 492.47999999999996\n            },\n            {\n                \"c\": 43.77600065231323,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T01:00:00+01:00\",\n                \"v\": 437.76\n            },\n            {\n                \"c\": 46.512000693082804,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T02:00:00+01:00\",\n                \"v\": 465.11999999999995\n            },\n            {\n                \"c\": 38.30400057077407,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T03:00:00+01:00\",\n                \"v\": 383.03999999999996\n            },\n            {\n                \"c\": 49.24800073385238,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T04:00:00+01:00\",\n                \"v\": 492.47999999999996\n            },\n            {\n                \"c\": 60.19200089693069,\n                \"k\": \"P\",\n                \"ts\": \"2019-01-08T05:00:00+01:00\",\n                \"v\": 601.92\n            }\n        ]\n    }\n]"}],"_postman_id":"e5f8c4f1-6b83-46c2-8d52-9d3da5817188"},{"name":"Calculate cost due to the Fixed Term concept","id":"0521554b-8bde-4d71-af91-944ebdf89542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/gas/fix-term?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","urlObject":{"path":["cost","gas","fix-term"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533925"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2019-01-07T06:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2019-01-08T05:59:59"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"H"}],"variable":[]}},"response":[{"id":"5cc2c106-61ad-4f74-b7f9-702de1649d80","name":"Calculate fix term concept using \"Daily energetic mass flow - maximum of last 3 months average\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/fix-term?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","host":["{{api_v3.host}}"],"path":["cost","gas","fix-term"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"from","value":"2019-01-07T06:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-08T05:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9979"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"385"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:53:34 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49961"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"50785"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"384"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"changes\": [\n            {\n                \"cost\": 239.488262,\n                \"daily_applied_energy\": 18560.34,\n                \"daily_average_energy\": 18560.34,\n                \"daily_max\": {\n                    \"ts\": \"2019-01-08T00:00:00+01:00\",\n                    \"v\": 22353.12\n                },\n                \"days_gap\": 2,\n                \"key\": \"P\",\n                \"price\": 0.2,\n                \"price_change\": null\n            }\n        ],\n        \"daily_contracted_energy\": 100,\n        \"days_gap\": 2,\n        \"from\": \"2019-01-07T00:00:00\",\n        \"to\": \"2019-01-08T23:59:59\",\n        \"total\": 239.488262,\n        \"type\": \"RULE_FIX_TERM_AVG_3_MONTHS\",\n        \"units\": \"kWh\"\n    }\n]"},{"id":"68a234ca-e32d-4a7a-8a90-52a7e11488c5","name":"Calculate fix term concept using \"Daily energetic mass flow - rule 85%-105% (with night consumption)\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/fix-term?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","host":["{{api_v3.host}}"],"path":["cost","gas","fix-term"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"from","value":"2019-01-07T06:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-08T05:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9980"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"429"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:52:50 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49962"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"50829"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"398"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"changes\": [\n            {\n                \"cost\": 1725.1448,\n                \"daily_applied_energy\": 66849.36,\n                \"daily_average_energy\": 20985.12,\n                \"daily_max\": {\n                    \"ts\": \"2019-01-08T00:00:00+01:00\",\n                    \"v\": 22353.12\n                },\n                \"days_gap\": 2,\n                \"key\": \"P\",\n                \"price\": 0.4,\n                \"price_change\": null\n            }\n        ],\n        \"daily_contracted_energy\": 100,\n        \"days_gap\": 2,\n        \"from\": \"2019-01-07T00:00:00\",\n        \"to\": \"2019-01-08T23:59:59\",\n        \"total\": 1725.1448,\n        \"type\": \"RULE_85_105_FIXTERM_WITH_NIGHT_CONSUMPTION\",\n        \"units\": \"kWh\"\n    }\n]"},{"id":"e34ba36b-83a9-4aab-a29c-95832151e49e","name":"Calculate fix term concept using \"Daily energetic mass flow - rule 85%-105%\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/fix-term?device_id=533925&from=2019-01-07T06:00:00&to=2019-01-08T05:59:59&resolution=H","host":["{{api_v3.host}}"],"path":["cost","gas","fix-term"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"from","value":"2019-01-07T06:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2019-01-08T05:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9981"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"526"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:51:13 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49963"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"50926"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"373"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"changes\": [\n            {\n                \"cost\": 862.5724,\n                \"daily_applied_energy\": 66849.36,\n                \"daily_average_energy\": 20985.12,\n                \"daily_max\": {\n                    \"ts\": \"2019-01-08T00:00:00+01:00\",\n                    \"v\": 22353.12\n                },\n                \"days_gap\": 2,\n                \"key\": \"P\",\n                \"price\": 0.2,\n                \"price_change\": null\n            }\n        ],\n        \"daily_contracted_energy\": 100,\n        \"days_gap\": 2,\n        \"from\": \"2019-01-07T00:00:00\",\n        \"to\": \"2019-01-08T23:59:59\",\n        \"total\": 862.5724,\n        \"type\": \"RULE_85_105_FIXTERM\",\n        \"units\": \"kWh\"\n    }\n]"}],"_postman_id":"0521554b-8bde-4d71-af91-944ebdf89542"},{"name":"Calculate cost due to the Demand Excess penalties concept","id":"debb4db2-68c8-43ad-9dd5-813b33cf1231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/gas/demand-excess?device_id=489116&from=2022-10-10T13:24:00&to=2022-10-11T13:24:00","urlObject":{"path":["cost","gas","demand-excess"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"489116"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2022-10-10T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2022-10-11T13:24:00"}],"variable":[]}},"response":[{"id":"8a2ba09d-caa6-4dea-aa5a-0da55b18a8fd","name":"Calculate cost due to the Demand Excess penalties concept","originalRequest":{"method":"GET","header":[{"key":"x-security-permissions","value":"*","type":"text","disabled":true},{"key":"x-security-Deployment","value":"293","type":"text","disabled":true},{"key":"x-security-User","value":"3744","type":"text","disabled":true}],"url":{"raw":"{{api_v3.host}}/cost/gas/demand-excess?device_id=489116&from=2022-10-10T13:24:00&to=2022-10-11T13:24:00","host":["{{api_v3.host}}"],"path":["cost","gas","demand-excess"],"query":[{"key":"device_id","value":"489116","description":"[Mandatory] Device ID"},{"key":"from","value":"2022-10-10T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2022-10-11T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 22 Nov 2022 10:46:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"415"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"type\": \"SPANISH_2020_EPOWER\",\n        \"from\": \"2022-10-10T11:53:00\",\n        \"to\": \"2022-10-12T11:52:59\",\n        \"total\": 4833.720000000001,\n        \"units\": \"kWh\",\n        \"daily_contracted_energy\": 1,\n        \"values\": [\n            {\n                \"ts\": \"2022-10-10T00:00:00+02:00\",\n                \"excess_load\": 518.8400000000001,\n                \"cost\": 1556.52\n            },\n            {\n                \"ts\": \"2022-10-11T00:00:00+02:00\",\n                \"excess_load\": 600.9200000000002,\n                \"cost\": 1802.76\n            },\n            {\n                \"ts\": \"2022-10-12T00:00:00+02:00\",\n                \"excess_load\": 491.4800000000002,\n                \"cost\": 1474.44\n            }\n        ]\n    }\n]"}],"_postman_id":"debb4db2-68c8-43ad-9dd5-813b33cf1231"},{"name":"Calculate the Total Cost including discounts and taxes","id":"962d4b8d-98e3-46cb-93ba-a29bc7c4388c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/gas/total-and-taxes?device_id=533925&from=2020-04-01T00:00:00&to=2020-04-30T23:59:59","urlObject":{"path":["cost","gas","total-and-taxes"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533925"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-04-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-04-30T23:59:59"}],"variable":[]}},"response":[{"id":"44caa298-ff45-4e09-9450-bb86cc6b18b5","name":"Total Cost including discounts and taxes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/gas/total-and-taxes?device_id=533925&from=2020-04-01T00:00:00&to=2020-04-30T23:59:59","host":["{{api_v3.host}}"],"path":["cost","gas","total-and-taxes"],"query":[{"key":"device_id","value":"533925","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-04-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-04-30T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9975"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"184"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 09:56:55 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49957"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"50584"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"consumption\": {\n            \"breakdown\": [],\n            \"gross_total\": 373.4640148401258,\n            \"net_total\": 373.4640148401258,\n            \"taxes_total\": 0\n        },\n        \"global\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 4771.236838,\n                    \"gross_value\": 26506.871323,\n                    \"label\": \"IVA\",\n                    \"tax_value\": 18,\n                    \"total\": 31278.108161,\n                    \"type\": \"TAX\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 26506.871322541232,\n            \"net_total\": 31278.108160598655,\n            \"net_total_without_vat\": 31278.108160598655,\n            \"taxes_total\": 4771.236838057422\n        }\n    }\n]"}],"_postman_id":"962d4b8d-98e3-46cb-93ba-a29bc7c4388c"}],"id":"f134feb2-08e4-4e94-a8da-9256c122e490","event":[{"listen":"prerequest","script":{"id":"f57d6850-1d46-448c-9ff0-338915c45fc5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"59307499-abee-4815-9879-f308861cfa20","type":"text/javascript","exec":[""]}}],"_postman_id":"f134feb2-08e4-4e94-a8da-9256c122e490","description":""},{"name":"Water","item":[{"name":"Calculate Cost Summary","id":"b84c9048-dd4f-4678-8f7b-7d30b6e5edd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/water/summary?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=H&embed=prices&embed=device","urlObject":{"path":["cost","water","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533909"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"H"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"prices"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"device"}],"variable":[]}},"response":[{"id":"5d791db8-abc6-4eb1-b570-715fcf46e4d4","name":"Cost Summary with embedded prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/water/summary?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=H&embed=prices","host":["{{api_v3.host}}"],"path":["cost","water","summary"],"query":[{"key":"device_id","value":"533909","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9994"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3097"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:08:22 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49951"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49897"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"306"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18753\n        },\n        \"device\": {\n            \"id\": 533909\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"BLOCKS\"\n            },\n            \"id\": \"5f47afbd5701074e61d7f17c\",\n            \"name\": \"C - By blocks\",\n            \"type\": \"WATER\"\n        },\n        \"supply\": {\n            \"id\": 13536\n        },\n        \"to\": \"2020-01-07T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"7afd89ac-ef79-4847-9a15-c6c3fe398140","name":"Basic Cost Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/water/summary?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=H","host":["{{api_v3.host}}"],"path":["cost","water","summary"],"query":[{"key":"device_id","value":"533909","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9995"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3117"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:08:02 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49952"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49917"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"214"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18753\n        },\n        \"device\": {\n            \"id\": 533909\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"id\": \"5f47afbd5701074e61d7f17c\"\n        },\n        \"supply\": {\n            \"id\": 13536\n        },\n        \"to\": \"2020-01-07T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"e6911e29-b52d-4485-a982-0a296ba79098","name":"Cost Summary with embedded prices and device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/water/summary?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=H&embed=prices&embed=device","host":["{{api_v3.host}}"],"path":["cost","water","summary"],"query":[{"key":"device_id","value":"533909","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"H","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9993"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3077"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:08:42 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49950"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49877"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"427"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18753\n        },\n        \"device\": {\n            \"datasource\": {\n                \"id\": 32802\n            },\n            \"description\": \" \",\n            \"id\": 533909,\n            \"local_id\": \"W30\",\n            \"location\": {\n                \"id\": 114591\n            },\n            \"name\": \"Water\",\n            \"status\": \"ACCEPTED\"\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"BLOCKS\"\n            },\n            \"id\": \"5f47afbd5701074e61d7f17c\",\n            \"name\": \"C - By blocks\",\n            \"type\": \"WATER\"\n        },\n        \"supply\": {\n            \"id\": 13536\n        },\n        \"to\": \"2020-01-07T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"}],"_postman_id":"b84c9048-dd4f-4678-8f7b-7d30b6e5edd8"},{"name":"Calculate cost due to the Consumption concept","id":"820f5be3-cf27-4052-a3a3-7931657d1fd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/water/consumption?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=D","urlObject":{"path":["cost","water","consumption"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533909"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"},{"description":{"content":"<p>Enum: <code>HH, H, D, W, M, FM, TM,B</code>, default value HH</p>\n","type":"text/plain"},"key":"resolution","value":"D"}],"variable":[]}},"response":[{"id":"8f3c02a0-26e7-4d15-a312-172660438b2d","name":"Calculate consumption concept using \"by blocks\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/water/consumption?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=D","host":["{{api_v3.host}}"],"path":["cost","water","consumption"],"query":[{"key":"device_id","value":"533909","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M, FM, TM,B`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9992"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"3022"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:09:37 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49949"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49822"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1039"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"blocks\": [\n            {\n                \"cost\": 0.9317,\n                \"key\": \"B2\",\n                \"label\": \"B2\",\n                \"price\": 0.05,\n                \"price_change\": null,\n                \"val\": 18.63\n            },\n            {\n                \"cost\": 0.2,\n                \"key\": \"B1\",\n                \"label\": \"B1\",\n                \"price\": 0.04,\n                \"price_change\": null,\n                \"val\": 5\n            }\n        ],\n        \"from\": \"2020-01-01T00:00:00\",\n        \"to\": \"2020-01-07T23:59:59\",\n        \"total\": 1.1317,\n        \"total_consumption\": 23.63,\n        \"type\": \"BLOCK\",\n        \"units\": \"m3\",\n        \"values\": [\n            {\n                \"c\": 0.04160000061990504,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-01T00:00:00+01:00\",\n                \"v\": 0.8320000000003347\n            },\n            {\n                \"c\": 0.20020000298320773,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-02T00:00:00+01:00\",\n                \"v\": 4.003999999999905\n            },\n            {\n                \"c\": 0,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-03T00:00:00+01:00\",\n                \"v\": 0\n            },\n            {\n                \"c\": 0.19135999572275672,\n                \"k\": \"B1\",\n                \"ts\": \"2020-01-03T00:00:00+01:00\",\n                \"v\": 4.783999999999651\n            },\n            {\n                \"c\": 0.04510000067204455,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-04T00:00:00+01:00\",\n                \"v\": 0.9020000000000437\n            },\n            {\n                \"c\": 0.008639999806894921,\n                \"k\": \"B1\",\n                \"ts\": \"2020-01-04T00:00:00+01:00\",\n                \"v\": 0.21600000000034925\n            },\n            {\n                \"c\": 0,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-05T00:00:00+01:00\",\n                \"v\": 0\n            },\n            {\n                \"c\": 0,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-06T00:00:00+01:00\",\n                \"v\": 0\n            },\n            {\n                \"c\": 0.6448000096082553,\n                \"k\": \"B2\",\n                \"ts\": \"2020-01-07T00:00:00+01:00\",\n                \"v\": 12.89599999999973\n            }\n        ]\n    }\n]"}],"_postman_id":"820f5be3-cf27-4052-a3a3-7931657d1fd9"},{"name":"Calculate the Total Cost including discounts and taxes","id":"fa90dade-8311-4afd-9525-9926c5798f23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/water/total-and-taxes?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","urlObject":{"path":["cost","water","total-and-taxes"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533909"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"}],"variable":[]}},"response":[{"id":"0848cc8d-47b7-4f1d-92b6-6198a00f691f","name":"Total Cost including discounts and taxes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/water/total-and-taxes?device_id=533909&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","host":["{{api_v3.host}}"],"path":["cost","water","total-and-taxes"],"query":[{"key":"device_id","value":"533909","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9991"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2953"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:10:46 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49948"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49753"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1043"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"consumption\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 2.3634,\n                    \"gross_value\": 1.1317,\n                    \"label\": \"VEC\",\n                    \"tax_value\": 0.1,\n                    \"total\": 3.4951,\n                    \"type\": \"WATER_VARIABLE_CHARGE\",\n                    \"units\": \"€/m3\"\n                },\n                {\n                    \"cost\": -0.010485,\n                    \"gross_value\": 3.4951,\n                    \"label\": \"Discount\",\n                    \"tax_value\": 0.3,\n                    \"total\": 3.484615,\n                    \"type\": \"WATER_DISCOUNT_VARIABLE\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 1.1317000094130645,\n            \"net_total\": 3.4846147440799307,\n            \"taxes_total\": 2.352914734666866\n        },\n        \"global\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 0.005227,\n                    \"gross_value\": 3.484615,\n                    \"label\": \"TAX\",\n                    \"tax_value\": 0.15,\n                    \"total\": 3.489842,\n                    \"type\": \"TAX\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 0.7,\n                    \"gross_value\": 3.489842,\n                    \"label\": \"FEC\",\n                    \"tax_value\": 0.1,\n                    \"total\": 4.189842,\n                    \"type\": \"FIXED_CHARGE\",\n                    \"units\": \"€/day\"\n                },\n                {\n                    \"cost\": -0.01257,\n                    \"gross_value\": 4.189842,\n                    \"label\": \"DiscountBTax\",\n                    \"tax_value\": 0.3,\n                    \"total\": 4.177272,\n                    \"type\": \"DISCOUNT_TOTAL\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 0.008772,\n                    \"gross_value\": 4.177272,\n                    \"label\": \"VAT\",\n                    \"tax_value\": 0.21,\n                    \"total\": 4.186044,\n                    \"type\": \"VAT\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 3.4846147440799307,\n            \"net_total\": 4.186044422548448,\n            \"net_total_without_vat\": 4.177272151304591,\n            \"taxes_total\": 0.7014296784685167\n        }\n    }\n]"}],"_postman_id":"fa90dade-8311-4afd-9525-9926c5798f23"}],"id":"c1ed1129-0e39-4476-9920-cd42085086fb","event":[{"listen":"prerequest","script":{"id":"d4b19dbf-bdb9-48d3-b0a7-9c60006bda8a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"22c3045d-ab25-47d6-85a9-f3fbe6f5d92e","type":"text/javascript","exec":[""]}}],"_postman_id":"c1ed1129-0e39-4476-9920-cd42085086fb","description":""},{"name":"Thermals","item":[{"name":"Calculate Cost Summary","id":"51991762-784d-4d44-b643-1870d5324bc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/thermal/summary?device_id=533918&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices&embed=device","urlObject":{"path":["cost","thermal","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533918"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"D"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-10T23:59:59"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"prices"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"device"}],"variable":[]}},"response":[{"id":"74126bec-4d54-4360-a8a8-365809cd523c","name":"Cost Summary with embedded prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/summary?device_id=533918&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices","host":["{{api_v3.host}}"],"path":["cost","thermal","summary"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9987"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2802"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:13:17 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49944"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49602"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"347"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18755\n        },\n        \"device\": {\n            \"id\": 533918\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47b14b5701074e61d7f185\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"THERMAL\"\n        },\n        \"supply\": {\n            \"id\": 13538\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"cef520ad-0d8f-49b9-8ad0-f2adb64dcad9","name":"Cost Summary with embedded prices and device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/summary?device_id=533918&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices&embed=device","host":["{{api_v3.host}}"],"path":["cost","thermal","summary"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9986"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2788"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:13:31 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49943"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49588"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"472"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18755\n        },\n        \"device\": {\n            \"datasource\": {\n                \"id\": 32803\n            },\n            \"description\": \" \",\n            \"id\": 533918,\n            \"local_id\": \"H10\",\n            \"location\": {\n                \"id\": 114577\n            },\n            \"name\": \"Heating 1\",\n            \"status\": \"ACCEPTED\"\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47b14b5701074e61d7f185\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"THERMAL\"\n        },\n        \"supply\": {\n            \"id\": 13538\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"f9a54b83-ab42-4b95-a40c-fb0ad45a65bd","name":"Basic Cost Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/summary?device_id=533918&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59","host":["{{api_v3.host}}"],"path":["cost","thermal","summary"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9988"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2818"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:13:01 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49945"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49618"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"214"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18755\n        },\n        \"device\": {\n            \"id\": 533918\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"id\": \"5f47b14b5701074e61d7f185\"\n        },\n        \"supply\": {\n            \"id\": 13538\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"}],"_postman_id":"51991762-784d-4d44-b643-1870d5324bc9"},{"name":"Calculate cost due to the Consumption concept","id":"8a096ece-050b-4bbd-9fe1-2d9e132556a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/thermal/consumption?device_id=533918&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","urlObject":{"path":["cost","thermal","consumption"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533918"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-06-01T13:24:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-06-07T13:24:00"},{"description":{"content":"<p>Enum: <code>HH, H, D, W, M, FM, TM, B</code>, default value HH</p>\n","type":"text/plain"},"key":"resolution","value":"D"}],"variable":[]}},"response":[{"id":"8afe5f97-27ee-41c9-96a4-8196ba82994b","name":"Calculate consumption concept using \"fixed price\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/consumption?device_id=533918&from=2020-06-01T13:24:00&to=2020-06-07T13:24:00&resolution=D","host":["{{api_v3.host}}"],"path":["cost","thermal","consumption"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-06-01T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-06-07T13:24:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"Enum: `HH, H, D, W, M, FM, TM,B`, default value HH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9984"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2608"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:16:31 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49941"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49408"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"832"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-06-01T13:24:00\",\n        \"periods\": [\n            {\n                \"cost\": 2780.688045,\n                \"key\": \"P\",\n                \"label\": \"P\",\n                \"price\": 0.1,\n                \"price_change\": null,\n                \"val\": 27806.88\n            }\n        ],\n        \"to\": \"2020-06-07T23:59:59\",\n        \"total\": 2780.688045,\n        \"total_consumption\": 27806.88,\n        \"type\": \"FIX_PRICE\",\n        \"units\": \"kWh\",\n        \"values\": [\n            {\n                \"c\": 465.8040069410205,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-01T00:00:00+02:00\",\n                \"v\": 4658.04\n            },\n            {\n                \"c\": 474.6960070735216,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-02T00:00:00+02:00\",\n                \"v\": 4746.96\n            },\n            {\n                \"c\": 506.1600107343716,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-03T00:00:00+02:00\",\n                \"v\": 5061.600031919998\n            },\n            {\n                \"c\": 525.996007837951,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-04T00:00:00+02:00\",\n                \"v\": 5259.959999999997\n            },\n            {\n                \"c\": 548.7960081776979,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-05T00:00:00+02:00\",\n                \"v\": 5487.960000000002\n            },\n            {\n                \"c\": 161.6520024088025,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-06T00:00:00+02:00\",\n                \"v\": 1616.52\n            },\n            {\n                \"c\": 97.58400145411485,\n                \"k\": \"P\",\n                \"ts\": \"2020-06-07T00:00:00+02:00\",\n                \"v\": 975.8399999999993\n            }\n        ]\n    }\n]"}],"_postman_id":"8a096ece-050b-4bbd-9fe1-2d9e132556a1"},{"name":"Calculate cost due to the Fixed Term concept","id":"6da8b4c6-f686-44e7-9cf1-77f321737758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/thermal/fix-term?device_id=533918&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","urlObject":{"path":["cost","thermal","fix-term"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533918"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"}],"variable":[]}},"response":[{"id":"b42d10cf-c185-45d3-9c75-cd841df44ace","name":"Calculate fix term concept using \"fixed price\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/fix-term?device_id=533918&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","host":["{{api_v3.host}}"],"path":["cost","thermal","fix-term"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9983"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2554"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:17:25 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49940"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49354"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"199"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"changes\": [\n            {\n                \"cost\": 1.4,\n                \"days_gap\": 7,\n                \"key\": \"P\",\n                \"price\": 0.2,\n                \"price_change\": null\n            }\n        ],\n        \"days_gap\": 7,\n        \"from\": \"2020-01-01T00:00:00\",\n        \"to\": \"2020-01-07T23:59:59\",\n        \"total\": 1.4,\n        \"type\": \"SINGLE_FIXTERM\",\n        \"units\": \"\"\n    }\n]"}],"_postman_id":"6da8b4c6-f686-44e7-9cf1-77f321737758"},{"name":"Calculate the Total Cost including discounts and taxes","id":"10be3ac5-0af5-4a6b-b5c6-c0ab4f6bc072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/thermal/total-and-taxes?device_id=533918&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","urlObject":{"path":["cost","thermal","total-and-taxes"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533918"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"}],"variable":[]}},"response":[{"id":"7f4f5cae-43af-4a0e-82b7-47c1fc4397ba","name":"Total Cost including discounts and taxes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/thermal/total-and-taxes?device_id=533918&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","host":["{{api_v3.host}}"],"path":["cost","thermal","total-and-taxes"],"query":[{"key":"device_id","value":"533918","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9982"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2466"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:18:53 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49939"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49266"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1095"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"consumption\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 2896.056043,\n                    \"gross_value\": 2896.056043,\n                    \"label\": \"VEC\",\n                    \"tax_value\": 0.1,\n                    \"total\": 5792.112085,\n                    \"type\": \"THERMAL_VARIABLE_CHARGE\",\n                    \"units\": \"€/kWh\"\n                },\n                {\n                    \"cost\": -11.584224,\n                    \"gross_value\": 5792.112085,\n                    \"label\": \"Discount\",\n                    \"tax_value\": 0.2,\n                    \"total\": 5780.527861,\n                    \"type\": \"THERMAL_DISCOUNT_VARIABLE\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 2896.056042698593,\n            \"net_total\": 5780.527861053779,\n            \"taxes_total\": 2884.4718183551854\n        },\n        \"global\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 5.781928,\n                    \"gross_value\": 5781.927861,\n                    \"label\": \"TAX\",\n                    \"tax_value\": 0.1,\n                    \"total\": 5787.709789,\n                    \"type\": \"TAX\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 1.4,\n                    \"gross_value\": 5787.709789,\n                    \"label\": \"FEC\",\n                    \"tax_value\": 0.2,\n                    \"total\": 5789.109789,\n                    \"type\": \"FIXED_CHARGE\",\n                    \"units\": \"€/day\"\n                },\n                {\n                    \"cost\": -17.36733,\n                    \"gross_value\": 5789.109789,\n                    \"label\": \"DiscountBTax\",\n                    \"tax_value\": 0.3,\n                    \"total\": 5771.742459,\n                    \"type\": \"DISCOUNT_TOTAL\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 12.120659,\n                    \"gross_value\": 5771.742459,\n                    \"label\": \"VAT\",\n                    \"tax_value\": 0.21,\n                    \"total\": 5783.863118,\n                    \"type\": \"VAT\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 5781.9278610746405,\n            \"net_total\": 5783.863117770935,\n            \"net_total_without_vat\": 5771.74245898549,\n            \"taxes_total\": 1.9352566962944397\n        }\n    }\n]"}],"_postman_id":"10be3ac5-0af5-4a6b-b5c6-c0ab4f6bc072"}],"id":"c7525e9e-192c-43ca-8704-95a9d404b6fb","event":[{"listen":"prerequest","script":{"id":"35bb61e1-2b58-4e2e-9512-72cc34aaea9c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d8a2fa90-3455-4e31-8b68-5ee778ab8d73","type":"text/javascript","exec":[""]}}],"_postman_id":"c7525e9e-192c-43ca-8704-95a9d404b6fb","description":""},{"name":"Reference Device","item":[{"name":"Calculate cost by Ref Device (given location)","id":"1e32bc3f-aad8-4265-a1bd-3ce4b6067e3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/reference-device?location_id=18195&from=2022-01-01T00:00:00&to=2022-12-31T00:00:00&resolution=D&reference_device_source=ELECTRICITY&reference_device_type=MAINSUPPLY","urlObject":{"path":["cost","reference-device"],"host":["{{api_v3.host}}"],"query":[{"key":"location_id","value":"18195"},{"key":"from","value":"2022-01-01T00:00:00"},{"key":"to","value":"2022-12-31T00:00:00"},{"key":"resolution","value":"D"},{"key":"reference_device_source","value":"ELECTRICITY"},{"key":"reference_device_type","value":"MAINSUPPLY"}],"variable":[]}},"response":[{"id":"94d33712-3403-421b-a0a9-9dba36e31396","name":"Calculate cost by Ref Device of a properly configured Location","originalRequest":{"method":"GET","header":[],"url":{"raw":"localhost:9191/cost/reference-device?location_id=18195&from=2022-01-01T00:00:00&to=2022-12-31T00:00:00&resolution=D&reference_device_source=ELECTRICITY&reference_device_type=MAINSUPPLY","host":["localhost"],"port":"9191","path":["cost","reference-device"],"query":[{"key":"location_id","value":"18195"},{"key":"from","value":"2022-01-01T00:00:00"},{"key":"to","value":"2022-12-31T00:00:00"},{"key":"resolution","value":"D"},{"key":"reference_device_source","value":"ELECTRICITY"},{"key":"reference_device_type","value":"MAINSUPPLY"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ce41e85b-0835-49bb-a47d-1dabf0ed4f24","name":"Calculate cost by Ref Device of a Location without Ref Device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/reference-device?location_id=99999999&from=2022-01-01T00:00:00&to=2022-12-31T00:00:00&resolution=D&reference_device_source=ELECTRICITY&reference_device_type=MAINSUPPLY","host":["{{api_v3.host}}"],"path":["cost","reference-device"],"query":[{"key":"location_id","value":"99999999"},{"key":"from","value":"2022-01-01T00:00:00"},{"key":"to","value":"2022-12-31T00:00:00"},{"key":"resolution","value":"D"},{"key":"reference_device_source","value":"ELECTRICITY"},{"key":"reference_device_type","value":"MAINSUPPLY"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1e32bc3f-aad8-4265-a1bd-3ce4b6067e3f"}],"id":"0a81a3fa-8bad-4d99-bec5-a31325fcb658","event":[{"listen":"prerequest","script":{"id":"3ce7d5e3-e80d-41ff-8767-f40c31e5b9c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc2bf9a7-9a67-4bd9-9fd5-71a70568ed6b","type":"text/javascript","exec":[""]}}],"_postman_id":"0a81a3fa-8bad-4d99-bec5-a31325fcb658","description":""},{"name":"Exported Electricity","item":[{"name":"Calculate Cost Summary","id":"f7b39af3-c03c-475b-bf41-3879b3547a83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/exported-electricity/summary?device_id=533894&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices&embed=device","urlObject":{"path":["cost","exported-electricity","summary"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533894"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"D"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-10T23:59:59"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"prices"},{"description":{"content":"<p>Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.</p>\n","type":"text/plain"},"key":"embed","value":"device"}],"variable":[]}},"response":[{"id":"614463c7-4b3c-41fd-b035-d67bd2dfdd01","name":"Cost Summary with embedded prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/summary?device_id=533894&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","summary"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9978"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2337"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:21:02 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49935"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49137"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"360"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18756\n        },\n        \"device\": {\n            \"id\": 533894\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47b215d7efdd2735e1eeb4\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"EXPORTED_ELECTRICITY\"\n        },\n        \"supply\": {\n            \"id\": 13539\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"63b73c4f-e0b4-42ba-a31f-9609ce88d2c0","name":"Cost Summary with embedded prices and device","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/summary?device_id=533894&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59&embed=prices&embed=device","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","summary"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9977"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2323"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:21:16 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49934"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49123"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"480"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18756\n        },\n        \"device\": {\n            \"datasource\": {\n                \"id\": 32802\n            },\n            \"description\": \" \",\n            \"id\": 533894,\n            \"local_id\": \"S20\",\n            \"location\": {\n                \"id\": 114591\n            },\n            \"name\": \"Roof\",\n            \"status\": \"ACCEPTED\"\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"account\": {\n                \"id\": 4897\n            },\n            \"consumption\": {\n                \"type\": \"SINGLE\"\n            },\n            \"fix_term\": {\n                \"type\": \"SINGLEFIXTERM\"\n            },\n            \"id\": \"5f47b215d7efdd2735e1eeb4\",\n            \"name\": \"FT - Fixed Price\",\n            \"type\": \"EXPORTED_ELECTRICITY\"\n        },\n        \"supply\": {\n            \"id\": 13539\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"},{"id":"c9d4874f-0d0a-45aa-9637-64afa9c7b2b8","name":"Basic Cost Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/summary?device_id=533894&resolution=D&from=2020-01-01T00:00:00&to=2020-01-10T23:59:59","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","summary"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-10T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"embed","value":"prices","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true},{"key":"embed","value":"device","description":"Expand the information of an element (prices, device), each element should be added in diferent query param with same name. default is empty.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9979"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2349"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:20:50 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49936"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49149"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"214"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 4897\n        },\n        \"contract\": {\n            \"id\": 18756\n        },\n        \"device\": {\n            \"id\": 533894\n        },\n        \"from\": \"2020-01-01T00:00:00\",\n        \"prices\": {\n            \"id\": \"5f47b215d7efdd2735e1eeb4\"\n        },\n        \"supply\": {\n            \"id\": 13539\n        },\n        \"to\": \"2020-01-10T23:59:59\",\n        \"tz\": \"Europe/Madrid\"\n    }\n]"}],"_postman_id":"f7b39af3-c03c-475b-bf41-3879b3547a83"},{"name":"Calculate cost due to the Consumption concept","id":"6ea80279-6095-457f-949b-e7befede8824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/exported-electricity/consumption?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=D","urlObject":{"path":["cost","exported-electricity","consumption"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533894"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"},{"description":{"content":"<p>[Mandatory] Enum: <code>HH, H, D, W, M, FM, TM,B</code>.</p>\n","type":"text/plain"},"key":"resolution","value":"D"}],"variable":[]}},"response":[{"id":"269724f8-0535-498d-9784-1c7abfb9cc14","name":"Calculate consumption concept using \"fixed price\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/consumption?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59&resolution=D","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","consumption"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."},{"key":"resolution","value":"D","description":"[Mandatory] Enum: `HH, H, D, W, M, FM, TM,B`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9976"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2277"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:22:02 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb01-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49933"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49077"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"862"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"from\": \"2020-01-01T00:00:00\",\n        \"periods\": [\n            {\n                \"cost\": 1880.544028,\n                \"key\": \"P\",\n                \"label\": \"P\",\n                \"price\": 0.1,\n                \"price_change\": null,\n                \"val\": 18805.44\n            }\n        ],\n        \"to\": \"2020-01-07T23:59:59\",\n        \"total\": 1880.544028,\n        \"total_consumption\": 18805.44,\n        \"type\": \"FIX_PRICE\",\n        \"units\": \"kWh\",\n        \"values\": [\n            {\n                \"c\": 276.56400412112475,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-01T00:00:00+01:00\",\n                \"v\": 2765.64\n            },\n            {\n                \"c\": 274.740004093945,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-02T00:00:00+01:00\",\n                \"v\": 2747.3999999999996\n            },\n            {\n                \"c\": 202.00800301015374,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-03T00:00:00+01:00\",\n                \"v\": 2020.0799999999997\n            },\n            {\n                \"c\": 282.9480042162537,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-04T00:00:00+01:00\",\n                \"v\": 2829.4799999999996\n            },\n            {\n                \"c\": 300.96000448465344,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-05T00:00:00+01:00\",\n                \"v\": 3009.5999999999995\n            },\n            {\n                \"c\": 265.39200395464894,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-06T00:00:00+01:00\",\n                \"v\": 2653.9199999999996\n            },\n            {\n                \"c\": 277.9320041415096,\n                \"k\": \"P\",\n                \"ts\": \"2020-01-07T00:00:00+01:00\",\n                \"v\": 2779.3200000000006\n            }\n        ]\n    }\n]"}],"_postman_id":"6ea80279-6095-457f-949b-e7befede8824"},{"name":"Calculate cost due to the Fixed Term concept","id":"2e21abbe-8bdc-4642-b4b6-7d17375449f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/exported-electricity/fix-term?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","urlObject":{"path":["cost","exported-electricity","fix-term"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533894"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"}],"variable":[]}},"response":[{"id":"ecc371e1-79cb-4d4e-be7d-aa6c2bf42728","name":"Calculate fix term concept using \"fixed price\" strategy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/fix-term?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","fix-term"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9975"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2208"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:23:11 GMT"},{"key":"X-Loadbalancer","value":"internallb03-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49932"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"49008"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"199"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"changes\": [\n            {\n                \"cost\": 1.4,\n                \"days_gap\": 7,\n                \"key\": \"P\",\n                \"price\": 0.2,\n                \"price_change\": null\n            }\n        ],\n        \"days_gap\": 7,\n        \"from\": \"2020-01-01T00:00:00\",\n        \"to\": \"2020-01-07T23:59:59\",\n        \"total\": 1.4,\n        \"type\": \"SINGLE_FIXTERM\",\n        \"units\": \"\"\n    }\n]"}],"_postman_id":"2e21abbe-8bdc-4642-b4b6-7d17375449f1"},{"name":"Calculate the Total Cost including discounts and taxes","id":"907346a2-4146-452d-a730-c365785c2133","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/cost/exported-electricity/total-and-taxes?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","urlObject":{"path":["cost","exported-electricity","total-and-taxes"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] Device ID</p>\n","type":"text/plain"},"key":"device_id","value":"533894"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"from","value":"2020-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone.</p>\n","type":"text/plain"},"key":"to","value":"2020-01-07T23:59:59"}],"variable":[]}},"response":[{"id":"cccdeae5-6ff4-41a4-b577-da8c0639ddbf","name":"Total Cost including discounts and taxes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/cost/exported-electricity/total-and-taxes?device_id=533894&from=2020-01-01T00:00:00&to=2020-01-07T23:59:59","host":["{{api_v3.host}}"],"path":["cost","exported-electricity","total-and-taxes"],"query":[{"key":"device_id","value":"533894","description":"[Mandatory] Device ID"},{"key":"from","value":"2020-01-01T00:00:00","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  Start date of the interval inclusive. In local time according to device timezone."},{"key":"to","value":"2020-01-07T23:59:59","description":"[Mandatory] DateTime.ISO8601 [yyyy-MM-ddThh:mm:ss],  End date of the interval inclusive. In local time according to device timezone."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"9974"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2155"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"10000"},{"key":"Date","value":"Fri, 28 Aug 2020 10:24:04 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"49931"},{"key":"X-Ratelimit-Day-Limit","value":"50000"},{"key":"X-Ratelimit-Day-Reset","value":"48955"},{"key":"X-Backend","value":"api-internal-nodes/api01-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1095"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"consumption\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 1880.544028,\n                    \"gross_value\": 1880.544028,\n                    \"label\": \"VEC\",\n                    \"tax_value\": 0.1,\n                    \"total\": 3761.088056,\n                    \"type\": \"EXPORTED_VARIABLE_CHARGE\",\n                    \"units\": \"€/kWh\"\n                },\n                {\n                    \"cost\": -7.522176,\n                    \"gross_value\": 3761.088056,\n                    \"label\": \"Discount\",\n                    \"tax_value\": 0.2,\n                    \"total\": 3753.56588,\n                    \"type\": \"EXPORTED_DISCOUNT_VARIABLE\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 1880.5440280222892,\n            \"net_total\": 3753.5658798203995,\n            \"taxes_total\": 1873.02185179811\n        },\n        \"global\": {\n            \"breakdown\": [\n                {\n                    \"cost\": 3.754966,\n                    \"gross_value\": 3754.96588,\n                    \"label\": \"TAX\",\n                    \"tax_value\": 0.1,\n                    \"total\": 3758.720846,\n                    \"type\": \"TAX\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 1.4,\n                    \"gross_value\": 3758.720846,\n                    \"label\": \"FEC\",\n                    \"tax_value\": 0.2,\n                    \"total\": 3760.120846,\n                    \"type\": \"FIXED_CHARGE\",\n                    \"units\": \"€/day\"\n                },\n                {\n                    \"cost\": -11.280363,\n                    \"gross_value\": 3760.120846,\n                    \"label\": \"DiscountBTax\",\n                    \"tax_value\": 0.3,\n                    \"total\": 3748.840483,\n                    \"type\": \"DISCOUNT_TOTAL\",\n                    \"units\": \"%\"\n                },\n                {\n                    \"cost\": 7.872565,\n                    \"gross_value\": 3748.840483,\n                    \"label\": \"VAT\",\n                    \"tax_value\": 0.21,\n                    \"total\": 3756.713048,\n                    \"type\": \"VAT\",\n                    \"units\": \"%\"\n                }\n            ],\n            \"gross_total\": 3754.965879841261,\n            \"net_total\": 3756.7130475803947,\n            \"net_total_without_vat\": 3748.840482812282,\n            \"taxes_total\": 1.7471677391338085\n        }\n    }\n]"}],"_postman_id":"907346a2-4146-452d-a730-c365785c2133"}],"id":"b7979e94-d0b0-4cab-9838-128fa613e915","_postman_id":"b7979e94-d0b0-4cab-9838-128fa613e915","description":""}],"id":"b662a57b-79bb-4a89-9aba-048dec778039","description":"<p>The Cost is the result of combining measured Readings (Active Energy, Reactive Energy, Gas, Water, etc.) with the Tariffs and Prices that have been configured, using the Supplies and Prices features. </p>\n<p>The cost is divided in several <em>concepts</em> (consumption, demand, penalties) that represent the concepts that utilites charge for. These concepts can be implemented with multiple <em>strategies</em> on how the <em>concept</em> is calculated. <em>Strategies</em> usually depend on the country and the kind of commercial agreement between the customer and the utility.</p>\n<p>See more info about Cost at DEXMA at: <a href=\"https://support.dexma.com/hc/en-gb/articles/360007969293-Using-Cost-feature\">https://support.dexma.com/hc/en-gb/articles/360007969293-Using-Cost-feature</a></p>\n","event":[{"listen":"prerequest","script":{"id":"c5a9d412-e42c-49e5-9017-21e799ba9cea","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"59026708-640f-4a39-a126-3770f6f9068a","type":"text/javascript","exec":[""]}}],"_postman_id":"b662a57b-79bb-4a89-9aba-048dec778039"},{"name":"Session","item":[{"name":"Retrieve a User Session by hash key","id":"9cdb3e51-ebe2-40e2-917f-865cb9971c7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-dexcell-token","value":"54229199e70bad25d9f0","type":"text"}],"url":"{{api_v3.host}}/session/915beeb132b9f789acd827a6cf671771748e835972be3e6508f257f46dcc3b78","urlObject":{"path":["session","915beeb132b9f789acd827a6cf671771748e835972be3e6508f257f46dcc3b78"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"27ef9b99-de3d-466b-bd9b-7fdee30e0bac","name":"Retrieve a User Session by hash key","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/session/e84cb31139bba02416cb0607b189c9d60cda29d55ad1e6e70007b55f27a0840c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:58:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2289"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"current_location\": {\n        \"id\": 11906\n    },\n    \"current_time\": \"2020-09-04T08:57:53+02:00\",\n    \"location_tags\": [\n        \"green\",\n        \"tag2\"\n    ],\n    \"locations_below\": [\n        {\n            \"id\": 11906\n        },\n        {\n            \"id\": 179498\n        }\n    ],\n    \"user\": {\n        \"id\": 1234,\n        \"locale\": \"es_ES\",\n        \"role\": \"ROLE_DEMO\",\n        \"username\": \"demoUser\"\n    },\n    \"custom_domain\": {\n        \"id\": 22,\n        \"url\": \"domain.com\"\n    }\n}"},{"id":"93942b99-fccd-4c87-b259-ec1253e4e649","name":"Retrieve a User Session by hash key when session and token didn't make a match","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/session/e84cb31139bba02416cb0607b189c9d60cda29d55ad1e6e70007b55f27a0840"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:00:03 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9cdb3e51-ebe2-40e2-917f-865cb9971c7e"}],"id":"7fc5c397-c54a-45cf-bf7f-8eb215670ca5","event":[{"listen":"prerequest","script":{"id":"c8e5626a-d3f1-4a59-ba21-e9787d34d36a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"39855a6a-6ec3-40d8-abc2-5755c6e899fb","type":"text/javascript","exec":[""]}}],"_postman_id":"7fc5c397-c54a-45cf-bf7f-8eb215670ca5","description":""},{"name":"Prices","item":[{"name":"List Prices for a deployment given an Energy type","id":"d4a4c31e-ee7a-418a-ab6b-67cac730e937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/prices/electricity?start=0&limit=20&name=","urlObject":{"path":["utility","prices","electricity"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer; Pagination start. Default 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"description":{"content":"<p>Filter by name of the element (starts with).</p>\n","type":"text/plain"},"key":"name","value":""}],"variable":[]}},"response":[{"id":"6b1c2972-03b1-458f-92c3-a6a451977b4e","name":"Retrieve list of Prices of Type 'ELECTRICAL'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/electricity","host":["{{api_v3.host}}"],"path":["utility","prices","electricity"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"20","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"name","value":"","description":"Filter by name of the element (starts with).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:49:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"6103"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"RULE_85_105\"\n        },\n        \"id\": \"523bf233e4b06b07ad332226\",\n        \"name\": \"ENDESA Offer\",\n        \"num_of_periods\": 3,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 3\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"523bf233e4b06b07ad33222e\",\n        \"name\": \"E.ON Utility\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"523bf233e4b06b07ad33223a\",\n        \"name\": \"NEXUS Utility\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"523bf233e4b06b07ad33222f\",\n        \"name\": \"EDF 2012 Offer\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5417fa7d2cdcbb3f9d2d437c\",\n        \"name\": \"Tarif Jaune France\",\n        \"num_of_periods\": 5,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 174\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5417f9642cdcbb3f9d2d4371\",\n        \"name\": \"HT NT Germany\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 25\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5417f1532cdcbb3f9d2d434f\",\n        \"name\": \"F1 F2 F3 Italy\",\n        \"num_of_periods\": 3,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 16\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5417f6e22cdcbb3f9d2d4365\",\n        \"name\": \"2P Canada\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 389\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"RULE_85_105\"\n        },\n        \"id\": \"5414688d2cdcbb3f9d2d3edc\",\n        \"name\": \"3.0A Endesa\",\n        \"num_of_periods\": 3,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 3\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU_WSM\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"56570728e4b06d49da0759bd\",\n        \"name\": \"Precios indexados para simulación\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU_WSM\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"56571b6ce4b06d49da0759f9\",\n        \"name\": \"Precio ejemplo\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 12\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU_WSM\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"RULE_85_105\"\n        },\n        \"id\": \"5657062ce4b06d49da0759b7\",\n        \"name\": \"Comercializadora 2 indexado\",\n        \"num_of_periods\": 3,\n        \"reactive_penalty\": {\n            \"type\": \"PERCENT_TABLE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 4\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU_WSM\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"5628e3b6e4b0b9d1c4cd5bab\",\n        \"name\": \"Comercializadora 1 Indexado\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"NONE\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"RULE_85_105\"\n        },\n        \"id\": \"56729055e4b0509ba99ea611\",\n        \"name\": \"tets\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 389\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"NONE\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"58ac2b8305c61314188d3b71\",\n        \"name\": \"ghkj\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 735\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"NONE\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5bbc71db0428973f64ad1342\",\n        \"name\": \"Broadspectrum\",\n        \"num_of_periods\": 1,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 1048\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"NONE\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"EP_MULTI_PERIOD\"\n        },\n        \"id\": \"5bbf3bc8872f18156ec7430a\",\n        \"name\": \"Broadspectrum Hard\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 1049\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"NONE\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"id\": \"5bbf3abc0428972c79160dea\",\n        \"name\": \"Broadspectrum Hard\",\n        \"num_of_periods\": 2,\n        \"reactive_penalty\": {\n            \"type\": \"NONE\"\n        },\n        \"tariff_structure\": {\n            \"id\": 1049\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"RULE_85_105\"\n        },\n        \"id\": \"5c765654872f18186ddad99e\",\n        \"name\": \"Test price UK\",\n        \"num_of_periods\": 3,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 1108\n        },\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"TOU_WSM\"\n        },\n        \"contracted_demand\": {\n            \"type\": \"MULTIPLE_PERIOD\"\n        },\n        \"demand_excess_penalty\": {\n            \"type\": \"QH_PENALTY\"\n        },\n        \"id\": \"5cc706b60428975d27fae136\",\n        \"name\": \"Indexado formación\",\n        \"num_of_periods\": 6,\n        \"reactive_penalty\": {\n            \"type\": \"COS_PHI\"\n        },\n        \"tariff_structure\": {\n            \"id\": 5\n        },\n        \"type\": \"ELECTRICITY\"\n    }\n]"},{"id":"062755eb-bc9f-4aea-a7ea-237788474bf1","name":"Retrieve list of Prices of Type 'EXPORTED ELECTRICITY'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/exported_electricity","host":["{{api_v3.host}}"],"path":["utility","prices","exported_electricity"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"20","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"name","value":"","description":"Filter by name of the element (starts with).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:51:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"185"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"SINGLEFIXTERM\"\n        },\n        \"id\": \"574ec8d605c61370175f119c\",\n        \"name\": \"price exported energy\",\n        \"type\": \"EXPORTED_ELECTRICITY\"\n    }\n]"},{"id":"0eff57ee-57ff-40a7-99ed-89141db699b9","name":"Retrieve list of Prices of Type 'THERMAL'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/thermal","host":["{{api_v3.host}}"],"path":["utility","prices","thermal"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"20","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"name","value":"","description":"Filter by name of the element (starts with).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:50:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"165"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"SINGLEFIXTERM\"\n        },\n        \"id\": \"572092cc05c6136b2446bca8\",\n        \"name\": \"Thermal Prices\",\n        \"type\": \"THERMAL\"\n    }\n]"},{"id":"3c4f50af-8e1a-47c7-8d5c-007aacd0dbcc","name":"Retrieve list of Prices of Type 'GAS'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/gas","host":["{{api_v3.host}}"],"path":["utility","prices","gas"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"20","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"name","value":"","description":"Filter by name of the element (starts with).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:49:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"658"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"SINGLEFIXTERM\"\n        },\n        \"id\": \"523bf233e4b06b07ad332230\",\n        \"name\": \"GDF\",\n        \"type\": \"GAS\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"RULE_85_105_FIXTERM_WITH_NIGHT_CONSUMPTION\"\n        },\n        \"id\": \"57725ca005c61363a8029fd9\",\n        \"name\": \"test 85\",\n        \"type\": \"GAS\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"RULE_85_105_FIXTERM\"\n        },\n        \"id\": \"5763931205c613228b7c14b3\",\n        \"name\": \"Price with Qd\",\n        \"type\": \"GAS\"\n    },\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"SINGLE\"\n        },\n        \"fix_term\": {\n            \"type\": \"DAILY_ENERGETIC_MASSFLOW\"\n        },\n        \"id\": \"57725b5f05c61363a8029fcd\",\n        \"name\": \"test\",\n        \"type\": \"GAS\"\n    }\n]"},{"id":"e9289219-2290-44d3-8a6a-dbd12f2e25ee","name":"Retrieve list of Prices of Type 'WATER'","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/water","host":["{{api_v3.host}}"],"path":["utility","prices","water"],"query":[{"key":"start","value":"0","description":"Integer; Pagination start. Default 0","disabled":true},{"key":"limit","value":"20","description":"Integer; Pagination end. Default 20","disabled":true},{"key":"name","value":"","description":"Filter by name of the element (starts with).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:50:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"account\": {\n            \"id\": 293\n        },\n        \"consumption\": {\n            \"type\": \"BLOCKS\"\n        },\n        \"id\": \"5a6efc9204289777ef8c82b0\",\n        \"name\": \"AGBAR 2016 - 2019\",\n        \"type\": \"WATER\"\n    }\n]"}],"_postman_id":"d4a4c31e-ee7a-418a-ab6b-67cac730e937"},{"name":"Retrieve a Price","id":"3e5dbe9f-49e1-46ef-a14e-16dce124a418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/prices/GAS/523bf233e4b06b07ad332230?embed=TARIFF_STRUCTURE","description":"<p>Looking at the code, there is a Path parameter (in this example corresponds with 'ELECTRICITY' in the url) which seems to be unused.</p>\n","urlObject":{"path":["utility","prices","GAS","523bf233e4b06b07ad332230"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>embed an element via its relationship. Possible options for the prices element: tariff_structure (only for ELECTRICITY prices)</p>\n","type":"text/plain"},"key":"embed","value":"TARIFF_STRUCTURE"}],"variable":[]}},"response":[{"id":"5cb525e3-9cd7-4eb5-a493-6881b9a11443","name":"Retrieve information about a GAS price ","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/GAS/523bf233e4b06b07ad332230","host":["{{api_v3.host}}"],"path":["utility","prices","GAS","523bf233e4b06b07ad332230"],"query":[{"key":"embed","value":"TARIFF_STRUCTURE","description":"embed an element via its relationship. Possible options for the prices element: tariff_structure (only for ELECTRICITY prices)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:39:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"148"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"consumption\": {\n        \"type\": \"SINGLE\"\n    },\n    \"fix_term\": {\n        \"type\": \"SINGLEFIXTERM\"\n    },\n    \"id\": \"523bf233e4b06b07ad332230\",\n    \"name\": \"GDF\",\n    \"type\": \"GAS\"\n}"},{"id":"5df17035-d671-4178-9a6d-6e2c81cfd2cc","name":"Retrieve information about a WATER price ","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/WATER/5a6efc9204289777ef8c82b0","host":["{{api_v3.host}}"],"path":["utility","prices","WATER","5a6efc9204289777ef8c82b0"],"query":[{"key":"embed","value":"TARIFF_STRUCTURE","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:41:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"128"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"consumption\": {\n        \"type\": \"BLOCKS\"\n    },\n    \"id\": \"5a6efc9204289777ef8c82b0\",\n    \"name\": \"AGBAR 2016 - 2019\",\n    \"type\": \"WATER\"\n}"},{"id":"6a9edc2f-3b38-49a7-a957-1b95eb271cd6","name":"Retrieve information about an ELECTRICAL price with Tariff Structure embedded","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/ELECTRICITY/523bf233e4b06b07ad332226?embed=TARIFF_STRUCTURE","host":["{{api_v3.host}}"],"path":["utility","prices","ELECTRICITY","523bf233e4b06b07ad332226"],"query":[{"key":"embed","value":"TARIFF_STRUCTURE","description":"a list of embedded elements via its relationship. Possible options for the prices element: tariff_structure (only for ELECTRICITY prices)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"981"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1641"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 07:32:38 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9971"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"59241"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway03-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"456"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"consumption\": {\n        \"type\": \"TOU\"\n    },\n    \"contracted_demand\": {\n        \"type\": \"MULTIPLE_PERIOD\"\n    },\n    \"demand_excess_penalty\": {\n        \"type\": \"RULE_85_105\"\n    },\n    \"id\": \"523bf233e4b06b07ad332226\",\n    \"name\": \"ENDESA Offer\",\n    \"num_of_periods\": 3,\n    \"reactive_penalty\": {\n        \"type\": \"COS_PHI\"\n    },\n    \"tariff_structure\": {\n        \"country\": {\n            \"code\": \"ES\",\n            \"name\": \"Spain (España)\"\n        },\n        \"id\": 3,\n        \"name\": \"3.0A Península\",\n        \"num_periods\": 3,\n        \"official_name\": \"3.0A Península\",\n        \"utility_name\": \"Genérica\"\n    },\n    \"type\": \"ELECTRICITY\"\n}"},{"id":"a3a66507-aecd-4fe4-8d6f-98ccf1169906","name":"Retrieve information about a THERMAL price ","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/THERMAL/572092cc05c6136b2446bca8","host":["{{api_v3.host}}"],"path":["utility","prices","THERMAL","572092cc05c6136b2446bca8"],"query":[{"key":"embed","value":"TARIFF_STRUCTURE","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:42:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"163"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"consumption\": {\n        \"type\": \"SINGLE\"\n    },\n    \"fix_term\": {\n        \"type\": \"SINGLEFIXTERM\"\n    },\n    \"id\": \"572092cc05c6136b2446bca8\",\n    \"name\": \"Thermal Prices\",\n    \"type\": \"THERMAL\"\n}"},{"id":"cd258274-2a38-4de8-b208-520b3d3a9657","name":"Retrieve information about an EXPORTED price ","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/EXPORTED_ELECTRICITY/574ec8d605c61370175f119c","host":["{{api_v3.host}}"],"path":["utility","prices","EXPORTED_ELECTRICITY","574ec8d605c61370175f119c"],"query":[{"key":"embed","value":"TARIFF_STRUCTURE","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:44:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"183"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"account\": {\n        \"id\": 293\n    },\n    \"consumption\": {\n        \"type\": \"SINGLE\"\n    },\n    \"fix_term\": {\n        \"type\": \"SINGLEFIXTERM\"\n    },\n    \"id\": \"574ec8d605c61370175f119c\",\n    \"name\": \"price exported energy\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}"}],"_postman_id":"3e5dbe9f-49e1-46ef-a14e-16dce124a418"},{"name":"Retrieve the Period Calendar for a Price","id":"330098fc-722e-4e0b-b9cc-70979632b8b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-dexcell-token","value":"replace_with_your_token"}],"url":"{{api_v3.host}}/utility/prices/electricity/523bf233e4b06b07ad332226/period-calendar?from=2019-01-01T00:00:00&to=2019-01-01T23:59:59","description":"<p>Path parameter 'type' is ignored in code</p>\n","urlObject":{"path":["utility","prices","electricity","523bf233e4b06b07ad332226","period-calendar"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[mandatory] start date</p>\n","type":"text/plain"},"key":"from","value":"2019-01-01T00:00:00"},{"description":{"content":"<p>[mandatory] end date</p>\n","type":"text/plain"},"key":"to","value":"2019-01-01T23:59:59"}],"variable":[]}},"response":[{"id":"bd3b714e-295b-4892-98c3-34abb2781a30","name":"Retrieve the Period Calendar for a Price","originalRequest":{"method":"GET","header":[{"key":"x-dexcell-token","type":"text","value":"replace_with_your_token"}],"url":{"raw":"{{api_v3.host}}/utility/prices/ELECTRICITY/523bf233e4b06b07ad332226/period-calendar?from=2019-01-01T00:00:00&to=2019-01-01T23:59:59","host":["{{api_v3.host}}"],"path":["utility","prices","ELECTRICITY","523bf233e4b06b07ad332226","period-calendar"],"query":[{"key":"from","value":"2019-01-01T00:00:00","description":"[mandatory] start date"},{"key":"to","value":"2019-01-01T23:59:59","description":"[mandatory] end date"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:45:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ts\": \"2019-01-01T00:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T00:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T01:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T01:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T02:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T02:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T03:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T03:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T04:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T04:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T05:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T05:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T06:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T06:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T07:00:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T07:30:00\",\n        \"v\": \"P3\"\n    },\n    {\n        \"ts\": \"2019-01-01T08:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T08:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T09:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T09:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T10:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T10:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T11:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T11:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T12:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T12:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T13:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T13:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T14:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T14:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T15:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T15:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T16:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T16:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T17:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T17:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T18:00:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T18:30:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T19:00:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T19:30:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T20:00:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T20:30:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T21:00:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T21:30:00\",\n        \"v\": \"P1\"\n    },\n    {\n        \"ts\": \"2019-01-01T22:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T22:30:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T23:00:00\",\n        \"v\": \"P2\"\n    },\n    {\n        \"ts\": \"2019-01-01T23:30:00\",\n        \"v\": \"P2\"\n    }\n]"}],"_postman_id":"330098fc-722e-4e0b-b9cc-70979632b8b0"},{"name":"List Indexed Rates for a Price","id":"5081ac02-9a26-431c-882e-952639d7f37b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/prices/electricity/5628e3b6e4b0b9d1c4cd5bab/indexed-rates?from=2019-01-01T00:00:00&to=2019-01-01T23:59:59","description":"<p>Seems path parameter \"type\" is unused in the code</p>\n","urlObject":{"path":["utility","prices","electricity","5628e3b6e4b0b9d1c4cd5bab","indexed-rates"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>[Mandatory] start date</p>\n","type":"text/plain"},"key":"from","value":"2019-01-01T00:00:00"},{"description":{"content":"<p>[Mandatory] end date</p>\n","type":"text/plain"},"key":"to","value":"2019-01-01T23:59:59"}],"variable":[]}},"response":[{"id":"e339a9cd-6b59-40d6-8174-854b92ab5dd9","name":"Retrieve list of Indexed Rates for a Price","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/prices/electricity/5628e3b6e4b0b9d1c4cd5bab/indexed-rates?from=2019-01-01T00:00:00&to=2019-01-01T23:59:59","host":["{{api_v3.host}}"],"path":["utility","prices","electricity","5628e3b6e4b0b9d1c4cd5bab","indexed-rates"],"query":[{"key":"from","value":"2019-01-01T00:00:00","description":"[Mandatory] start date"},{"key":"to","value":"2019-01-01T23:59:59","description":"[Mandatory] end date"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:42:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1196"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"p\": 0.07139,\n        \"ts\": \"2019-01-01T00:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07121000000000001,\n        \"ts\": \"2019-01-01T01:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06973,\n        \"ts\": \"2019-01-01T02:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06562,\n        \"ts\": \"2019-01-01T03:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06268,\n        \"ts\": \"2019-01-01T04:00:00+00:00\"\n    },\n    {\n        \"p\": 0.063,\n        \"ts\": \"2019-01-01T05:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06732,\n        \"ts\": \"2019-01-01T06:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06712,\n        \"ts\": \"2019-01-01T07:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06625,\n        \"ts\": \"2019-01-01T08:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06731000000000001,\n        \"ts\": \"2019-01-01T09:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06703,\n        \"ts\": \"2019-01-01T10:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06808,\n        \"ts\": \"2019-01-01T11:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06987,\n        \"ts\": \"2019-01-01T12:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06908,\n        \"ts\": \"2019-01-01T13:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06,\n        \"ts\": \"2019-01-01T14:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06552000000000001,\n        \"ts\": \"2019-01-01T15:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06721,\n        \"ts\": \"2019-01-01T16:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07045,\n        \"ts\": \"2019-01-01T17:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07041000000000001,\n        \"ts\": \"2019-01-01T18:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07036,\n        \"ts\": \"2019-01-01T19:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07106,\n        \"ts\": \"2019-01-01T20:00:00+00:00\"\n    },\n    {\n        \"p\": 0.07015,\n        \"ts\": \"2019-01-01T21:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06737000000000001,\n        \"ts\": \"2019-01-01T22:00:00+00:00\"\n    },\n    {\n        \"p\": 0.06640000000000001,\n        \"ts\": \"2019-01-01T23:00:00+00:00\"\n    }\n]"}],"_postman_id":"5081ac02-9a26-431c-882e-952639d7f37b"},{"name":"Create Indexed Rates for a Price","id":"e0475f0f-670b-4ea7-9dac-8c5ae8efb169","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"p\": 0.06,\n        \"ts\": \"2019-01-01T14:00:00+00:00\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/prices/electricity/5628e3b6e4b0b9d1c4cd5bab/indexed-rates","urlObject":{"path":["utility","prices","electricity","5628e3b6e4b0b9d1c4cd5bab","indexed-rates"],"host":["{{api_v3.host}}"],"query":[{"disabled":true,"description":{"content":"<p>Filter by name of the element</p>\n","type":"text/plain"},"key":"name","value":""}],"variable":[]}},"response":[{"id":"189fb1af-1b3f-4bbc-b03a-82c67c96dd00","name":"Create Indexed Rates for a Price","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"p\": 0.06,\n        \"ts\": \"2019-01-01T14:00:00+00:00\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{api_v3.host}}/utility/prices/electricity/5628e3b6e4b0b9d1c4cd5bab/indexed-rates","host":["{{api_v3.host}}"],"path":["utility","prices","electricity","5628e3b6e4b0b9d1c4cd5bab","indexed-rates"],"query":[{"key":"name","value":"","description":"Filter by name of the element","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 09:30:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"45"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"p\": 0.06,\n        \"ts\": \"2019-01-01T14:00:00+00:00\"\n    }\n]"}],"_postman_id":"e0475f0f-670b-4ea7-9dac-8c5ae8efb169"}],"id":"e21e52d3-f80f-4022-a142-6a792aa86c5d","description":"<p>On the examples below we are showing all of them using electricity as our energy source but this is a path param that can be changed for one of the next values -&gt; <code>GAS, ELECTRICITY, WATER, THERMAL, EXPORTED_ELECTRICITY</code> and will return the same type of information but for the specified energy source</p>\n","event":[{"listen":"prerequest","script":{"id":"20ad7ab2-3ad4-4c76-b11d-82dcafa2775f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1aec4a38-18fe-49b4-9f94-82a88cbd2219","type":"text/javascript","exec":[""]}}],"_postman_id":"e21e52d3-f80f-4022-a142-6a792aa86c5d"},{"name":"Supplies","item":[{"name":"Devices","item":[{"name":"Assign Devices to a Supply","id":"c349f378-4407-46bc-8da9-82a2f7ada560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-security-deployment","value":"","type":"text"},{"key":"x-security-permissions","value":"*","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 76001\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/{energy_source}/4076/bind-devices","description":"<p>Assign Devices to a Supply. A device can only be assigned to ONE supply.</p>\n","urlObject":{"path":["utility","supplies","{energy_source}","4076","bind-devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"05544797-911f-4032-806f-34f54fe92af0","name":"Assign Devices from a Electrical Supply","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 76001\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY/4076/bind-devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:22:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 76001\n    }\n]"},{"id":"9539e64e-c8f7-401f-96f1-424f3daa1f38","name":"Fail if Device is already bounded to another Supply","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 76001\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY/4076/bind-devices"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:15:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"154"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"E403-04\",\n    \"errors\": [\n        {\n            \"message\": \"Device 76001 have to be unbound from the supply 7334 before binding\"\n        }\n    ],\n    \"message\": \"Acceptance errors\",\n    \"status\": 403\n}"}],"_postman_id":"c349f378-4407-46bc-8da9-82a2f7ada560"},{"name":"Remove Devices from a Supply","id":"13f6ae1a-455a-4ad9-8f37-eabdcc956049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 76001\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/{energy-source}/4076/unbind-devices","urlObject":{"path":["utility","supplies","{energy-source}","4076","unbind-devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"c4e46182-4959-45f3-acb2-77f3fc1218e6","name":"Remove Devices from an Electrical Supply","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 76001\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY/4076/unbind-devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:12:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 76001\n    }\n]"}],"_postman_id":"13f6ae1a-455a-4ad9-8f37-eabdcc956049"},{"name":"List all Supplies of the given Energy Source","id":"f5c2d6e2-73de-4a9d-82a6-83c2955314c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/{energy-source}/4076","urlObject":{"path":["utility","supplies","{energy-source}","4076"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"9c4e2bed-0f33-4293-bf1d-c3ffba2836c1","name":"List all Devices from a Electrical Supply","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY/4076/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:28:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"445"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"POD\": \"ES0031405987203001DF0F\",\n    \"address\": {\n        \"city\": null,\n        \"coordinates\": {\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        \"country\": {\n            \"code\": \"\",\n            \"name\": \"\"\n        },\n        \"street\": null,\n        \"zip\": null\n    },\n    \"country\": {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    \"id\": 4076,\n    \"info\": {\n        \"alias\": \"\",\n        \"comments\": \"\",\n        \"commissioning_date\": null,\n        \"description\": \"\",\n        \"distributor\": \"\",\n        \"meter_number\": \"\",\n        \"register_date\": null\n    },\n    \"name\": \"Barcelona - Electriciy\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": false,\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"f5c2d6e2-73de-4a9d-82a6-83c2955314c5"},{"name":"List all Devices assigned to a Supply","id":"b65fd443-f2bf-474f-abe2-8b593aac6a83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/{energy-source}/4076/devices","urlObject":{"path":["utility","supplies","{energy-source}","4076","devices"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"7e4efe4a-e29f-4081-b6df-15928915479c","name":"List all Devices assigned to a Supply","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY/4076/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:28:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"445"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1520750\n    },\n    {\n        \"id\": 1505293\n    },\n    {\n        \"id\": 1505296\n    },\n    {\n        \"id\": 1505334\n    },\n    {\n        \"id\": 1506542\n    },\n    {\n        \"id\": 1506557\n    },\n    {\n        \"id\": 1506572\n    },\n    {\n        \"id\": 1506594\n    },\n    {\n        \"id\": 1506613\n    },\n    {\n        \"id\": 1506617\n    },\n    {\n        \"id\": 1506634\n    },\n    {\n        \"id\": 1506645\n    },\n    {\n        \"id\": 1506660\n    },\n    {\n        \"id\": 1506672\n    },\n    {\n        \"id\": 1506679\n    },\n    {\n        \"id\": 1506685\n    },\n    {\n        \"id\": 1507308\n    },\n    {\n        \"id\": 1506584\n    },\n    {\n        \"id\": 1054212\n    },\n    {\n        \"id\": 1055677\n    },\n    {\n        \"id\": 1054204\n    },\n    {\n        \"id\": 1441630\n    },\n    {\n        \"id\": 1220759\n    },\n    {\n        \"id\": 1054205\n    },\n    {\n        \"id\": 1054210\n    },\n    {\n        \"id\": 1054211\n    },\n    {\n        \"id\": 1438887\n    },\n    {\n        \"id\": 1438891\n    },\n    {\n        \"id\": 1054206\n    },\n    {\n        \"id\": 1054207\n    },\n    {\n        \"id\": 1054208\n    },\n    {\n        \"id\": 1054209\n    },\n    {\n        \"id\": 1505237\n    },\n    {\n        \"id\": 1505240\n    },\n    {\n        \"id\": 1505239\n    },\n    {\n        \"id\": 76129\n    },\n    {\n        \"id\": 823053\n    },\n    {\n        \"id\": 1505255\n    },\n    {\n        \"id\": 1505266\n    },\n    {\n        \"id\": 1505258\n    },\n    {\n        \"id\": 1476452\n    },\n    {\n        \"id\": 1476494\n    },\n    {\n        \"id\": 1476495\n    },\n    {\n        \"id\": 1520734\n    },\n    {\n        \"id\": 1505282\n    },\n    {\n        \"id\": 1505288\n    },\n    {\n        \"id\": 1505323\n    },\n    {\n        \"id\": 1597157\n    },\n    {\n        \"id\": 1597203\n    },\n    {\n        \"id\": 1597093\n    },\n    {\n        \"id\": 1597116\n    },\n    {\n        \"id\": 1597180\n    },\n    {\n        \"id\": 1597172\n    },\n    {\n        \"id\": 1597226\n    },\n    {\n        \"id\": 1597209\n    },\n    {\n        \"id\": 1597234\n    },\n    {\n        \"id\": 1597228\n    },\n    {\n        \"id\": 1597237\n    },\n    {\n        \"id\": 1597232\n    },\n    {\n        \"id\": 1597241\n    },\n    {\n        \"id\": 1597238\n    },\n    {\n        \"id\": 1597236\n    },\n    {\n        \"id\": 1597244\n    },\n    {\n        \"id\": 1597242\n    },\n    {\n        \"id\": 1597239\n    },\n    {\n        \"id\": 1597633\n    },\n    {\n        \"id\": 1597637\n    },\n    {\n        \"id\": 1603056\n    },\n    {\n        \"id\": 1597206\n    },\n    {\n        \"id\": 1597183\n    },\n    {\n        \"id\": 1597185\n    },\n    {\n        \"id\": 1597187\n    },\n    {\n        \"id\": 1597191\n    },\n    {\n        \"id\": 1597193\n    },\n    {\n        \"id\": 1597195\n    },\n    {\n        \"id\": 1597198\n    },\n    {\n        \"id\": 1597200\n    },\n    {\n        \"id\": 1597202\n    },\n    {\n        \"id\": 1597205\n    }\n]"}],"_postman_id":"b65fd443-f2bf-474f-abe2-8b593aac6a83"}],"id":"f40b83e7-886e-4532-8728-32ea749a4027","event":[{"listen":"prerequest","script":{"id":"35e3090b-d0dc-472f-983e-1c2a211c02fc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9bd6f13c-7364-48b9-bc1d-7857d4e65101","type":"text/javascript","exec":[""]}}],"_postman_id":"f40b83e7-886e-4532-8728-32ea749a4027","description":""},{"name":"List all Supplies of the given Energy Source","id":"570f0b78-fd50-4da8-be67-93de0c0a9a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/supplies/{energy-source}?name=Gas&POD=ES0031405987203001DF0F&start=0&limit=5","description":"<p>Retrieves a list of Supplies linked to the implicit account referenced by the token</p>\n","urlObject":{"path":["utility","supplies","{energy-source}"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Name of the supply. It will search supplies that start with.</p>\n","type":"text/plain"},"key":"name","value":"Gas"},{"description":{"content":"<p>Point of Delivery (POD) number.</p>\n","type":"text/plain"},"key":"POD","value":"ES0031405987203001DF0F"},{"description":{"content":"<p>Integer; Pagination start. Default 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer; Pagination end. Default 20</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"03127744-44a8-463d-912a-2a50fbc32daa","name":"List all Electrical Supplies for a POD","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/supplies/electricity?POD=ES0031405987203001DF0F&start=0&limit=5","host":["{{api_v3.host}}"],"path":["utility","supplies","electricity"],"query":[{"key":"name","value":"","description":"Name of the supply. It will search supplies that start with.","disabled":true},{"key":"POD","value":"ES0031405987203001DF0F","description":"Point of Delivery (POD) number."},{"key":"start","value":"0","description":"Integer; Pagination start. Default 0"},{"key":"limit","value":"5","description":"Integer; Pagination end. Default 20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:50:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"447"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"POD\": \"ES0031405987203001DF0F\",\n        \"address\": {\n            \"city\": null,\n            \"coordinates\": {\n                \"latitude\": null,\n                \"longitude\": null\n            },\n            \"country\": {\n                \"code\": \"\",\n                \"name\": \"\"\n            },\n            \"street\": null,\n            \"zip\": null\n        },\n        \"country\": {\n            \"code\": \"ES\",\n            \"name\": \"Spain (España)\"\n        },\n        \"id\": 4076,\n        \"info\": {\n            \"alias\": \"\",\n            \"comments\": \"\",\n            \"commissioning_date\": null,\n            \"description\": \"\",\n            \"distributor\": \"\",\n            \"meter_number\": \"\",\n            \"register_date\": null\n        },\n        \"name\": \"Barcelona - Electriciy\",\n        \"status\": \"ACTIVE\",\n        \"store_bills\": false,\n        \"type\": \"ELECTRICITY\"\n    }\n]"},{"id":"e3760884-536f-40e0-8b4c-84c0a79d41bb","name":"List all Gas Supplies that name starts with \"Gas\"","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/supplies/gas?name=Gas&start=0&limit=5","host":["{{api_v3.host}}"],"path":["utility","supplies","gas"],"query":[{"key":"name","value":"Gas","description":"Name of the supply. It will search supplies that start with."},{"key":"POD","value":"ES0031405987203001DF0F","description":"Point of Delivery (POD) number.","disabled":true},{"key":"start","value":"0","description":"Integer; Pagination start. Default 0"},{"key":"limit","value":"5","description":"Integer; Pagination end. Default 20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 06:52:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"854"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"POD\": \"ES703240927381900FYF\",\n        \"address\": {\n            \"city\": null,\n            \"coordinates\": {\n                \"latitude\": null,\n                \"longitude\": null\n            },\n            \"country\": {\n                \"code\": \"\",\n                \"name\": \"\"\n            },\n            \"street\": null,\n            \"zip\": null\n        },\n        \"country\": {\n            \"code\": \"US\",\n            \"name\": \"United States\"\n        },\n        \"id\": 391,\n        \"info\": {\n            \"alias\": \"\",\n            \"comments\": \"\",\n            \"commissioning_date\": null,\n            \"description\": \"\",\n            \"distributor\": \"\",\n            \"meter_number\": \"\",\n            \"register_date\": null\n        },\n        \"name\": \"Gas Meter\",\n        \"status\": \"ACTIVE\",\n        \"store_bills\": false,\n        \"type\": \"GAS\"\n    },\n    {\n        \"POD\": \"ES0031905987203001CF0F\",\n        \"address\": {\n            \"city\": null,\n            \"coordinates\": {\n                \"latitude\": null,\n                \"longitude\": null\n            },\n            \"country\": {\n                \"code\": \"\",\n                \"name\": \"\"\n            },\n            \"street\": null,\n            \"zip\": null\n        },\n        \"country\": {\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\"\n        },\n        \"id\": 7503,\n        \"info\": {\n            \"alias\": \"\",\n            \"comments\": \"\",\n            \"commissioning_date\": null,\n            \"description\": \"\",\n            \"distributor\": \"\",\n            \"meter_number\": \"\",\n            \"register_date\": null\n        },\n        \"name\": \"Gas with Qd supply\",\n        \"status\": \"ACTIVE\",\n        \"store_bills\": false,\n        \"type\": \"GAS\"\n    }\n]"}],"_postman_id":"570f0b78-fd50-4da8-be67-93de0c0a9a09"},{"name":"Retrieve a Supply","id":"9e809694-60f7-43bc-9952-6dbdf5d7dd5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/supplies/{energy-source}/17235","urlObject":{"path":["utility","supplies","{energy-source}","17235"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"e69b77c1-8d98-44d8-83b1-f01c844d4c08","name":"Retrieve a Supply","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/supplies/electricity/17235"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"1431"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 06:36:08 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9997"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"62631"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"442"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"POD\": \"ES003240927381900FYFTEST\",\n    \"address\": {\n        \"city\": \"\",\n        \"coordinates\": {\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        \"country\": {\n            \"code\": \"\",\n            \"name\": \"\"\n        },\n        \"street\": \"\",\n        \"zip\": \"\"\n    },\n    \"country\": {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    \"id\": 17235,\n    \"info\": {\n        \"alias\": \"\",\n        \"comments\": \" \",\n        \"commissioning_date\": null,\n        \"description\": \" \",\n        \"distributor\": \"\",\n        \"meter_number\": \"\",\n        \"register_date\": null\n    },\n    \"name\": \"Api Test Suite Supplt\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": true,\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"9e809694-60f7-43bc-9952-6dbdf5d7dd5c"},{"name":"Create a new Supply","id":"4d0db55d-20b9-47ed-9346-f713be3e77a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"POD\": \"ES0031459872AA0300EE1\",\n    \"address\": {\n        \"street\": \"c/\",\n        \"zip\": \"08100\",\n        \"city\": \"Barcelona\",\n        \"country\": {\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\"\n        },\n        \"coordinates\": {\n            \"latitude\": 17.987,\n            \"longitude\": 20.7896\n        }\n    },\n    \"country\": {\n        \"code\": \"GB\",\n        \"name\": \"United Kingdom\"\n    },\n    \"info\": {\n        \"alias\": \"foo\",\n        \"comments\": \"foobared\",\n        \"commissioning_date\": \"2015-01-01\",\n        \"description\": \"bar\",\n        \"distributor\": \"Iberdrola\",\n        \"meter_number\": \"0000000000\",\n        \"register_date\": \"2014-05-13\"\n    },\n    \"name\": \"Rock & Roll Baby!\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": false,\n    \"type\": \"GAS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/ELECTRICITY","urlObject":{"path":["utility","supplies","ELECTRICITY"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"405bd57b-4b31-4a9b-bd0f-ca189461b628","name":"Creates a new Electrical Supply","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"POD\": \"ES0031459872AA0300EE4\",\n  \"address\": {\n    \"street\": \"c/\",\n    \"zip\": \"08100\",\n    \"city\": \"Barcelona\",\n    \"country\": {\n        \"code\": \"GB\",\n        \"name\": \"United Kingdom\"    },\n    \"coordinates\": {\n      \"latitude\": 17.987,\n      \"longitude\": 20.7896\n    }},\n        \"country\": {\n        \"code\": \"GB\",\n        \"name\": \"United Kingdom\"    },\n  \"info\": {\n    \"alias\": \"foo\",\n    \"comments\": \"foobared\",\n    \"commissioning_date\": \"2015-01-01\",\n    \"description\": \"bar\",\n    \"distributor\": \"Iberdrola\",\n    \"meter_number\": \"0000000000\",\n    \"register_date\": \"2014-05-13\"\n  },\n  \"name\": \"Rock & Roll Baby!\",\n  \"status\": \"ACTIVE\",\n  \"store_bills\": false,\n  \"type\":\"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/electricity"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:06:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"519"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"POD\": \"ES0031459872AA0300EE4\",\n    \"address\": {\n        \"city\": \"Barcelona\",\n        \"coordinates\": {\n            \"latitude\": 17.987,\n            \"longitude\": 20.7896\n        },\n        \"country\": {\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\"\n        },\n        \"street\": \"c/\",\n        \"zip\": \"08100\"\n    },\n    \"country\": {\n        \"code\": \"GB\",\n        \"name\": \"United Kingdom\"\n    },\n    \"id\": 17245,\n    \"info\": {\n        \"alias\": \"foo\",\n        \"comments\": \"foobared\",\n        \"commissioning_date\": \"2015-01-01\",\n        \"description\": \"bar\",\n        \"distributor\": \"Iberdrola\",\n        \"meter_number\": \"0000000000\",\n        \"register_date\": \"2014-05-13\"\n    },\n    \"name\": \"Rock & Roll Baby!\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": false,\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"4d0db55d-20b9-47ed-9346-f713be3e77a2"},{"name":"Update a Supply","id":"192aba8a-e963-48ee-b5e8-f3e4918d2065","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"POD\": \"ES003240927381900FYFTEST\",\n    \"address\": {\n        \"city\": \"\",\n        \"coordinates\": {\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        \"country\": {\n            \"code\": \"\",\n            \"name\": \"\"\n        },\n        \"street\": \"\",\n        \"zip\": \"\"\n    },\n    \"country\": {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    \"id\": 17235,\n    \"info\": {\n        \"alias\": \"\",\n        \"comments\": \" \",\n        \"commissioning_date\": null,\n        \"description\": \" \",\n        \"distributor\": \"\",\n        \"meter_number\": \"\",\n        \"register_date\": null\n    },\n    \"name\": \"Api Test Suite Supplt Test\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": true,\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/{energy-source}/17235","urlObject":{"path":["utility","supplies","{energy-source}","17235"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"577c03d7-0665-4da0-a6aa-5cc15eb851a2","name":"Update a supply","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"POD\": \"ES003240927381900FYFTEST\",\n    \"address\": {\n        \"city\": \"\",\n        \"coordinates\": {\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        \"country\": {\n            \"code\": \"\",\n            \"name\": \"\"\n        },\n        \"street\": \"\",\n        \"zip\": \"\"\n    },\n    \"country\": {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    \"id\": 17235,\n    \"info\": {\n        \"alias\": \"\",\n        \"comments\": \" \",\n        \"commissioning_date\": null,\n        \"description\": \" \",\n        \"distributor\": \"\",\n        \"meter_number\": \"\",\n        \"register_date\": null\n    },\n    \"name\": \"Api Test Suite Supplt Test\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": true,\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/supplies/electricity/17235"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Ratelimit-Hour-Remaining","value":"997"},{"key":"Server","value":"nginx"},{"key":"X-Ratelimit-Hour-Reset","value":"2137"},{"key":"X-Frontend","value":"default"},{"key":"X-Frontend","value":"default"},{"key":"X-Ratelimit-Hour-Limit","value":"1000"},{"key":"Date","value":"Fri, 04 Sep 2020 07:24:22 GMT"},{"key":"X-Loadbalancer","value":"internallb02-prod"},{"key":"X-Loadbalancer","value":"weblb00-prod"},{"key":"X-Ratelimit-Day-Remaining","value":"9978"},{"key":"X-Ratelimit-Day-Limit","value":"10000"},{"key":"X-Ratelimit-Day-Reset","value":"59737"},{"key":"X-Backend","value":"api-internal-nodes/api00-prod"},{"key":"X-Backend","value":"apigateway-nodes/apigateway02-prod"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"447"},{"key":"X-Proto","value":"https"}],"cookie":[],"responseTime":null,"body":"{\n    \"POD\": \"ES003240927381900FYFTEST\",\n    \"address\": {\n        \"city\": \"\",\n        \"coordinates\": {\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        \"country\": {\n            \"code\": \"\",\n            \"name\": \"\"\n        },\n        \"street\": \"\",\n        \"zip\": \"\"\n    },\n    \"country\": {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    \"id\": 17235,\n    \"info\": {\n        \"alias\": \"\",\n        \"comments\": \" \",\n        \"commissioning_date\": null,\n        \"description\": \" \",\n        \"distributor\": \"\",\n        \"meter_number\": \"\",\n        \"register_date\": null\n    },\n    \"name\": \"Api Test Suite Supplt Test\",\n    \"status\": \"ACTIVE\",\n    \"store_bills\": true,\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"192aba8a-e963-48ee-b5e8-f3e4918d2065"},{"name":"Delete a Supply","id":"172b28b5-1541-4460-b137-e799f934b83a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/supplies/{energy-source}/17239","urlObject":{"path":["utility","supplies","{energy-source}","17239"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"de69407b-e6fe-4cdf-83fd-07a4dec7f318","name":"Delete a Supply","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/supplies/electricity/17239"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:36:21 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"172b28b5-1541-4460-b137-e799f934b83a"}],"id":"f0e69864-b1e4-4d3d-aaff-27ab34567e55","description":"<p>A supply manages all information related to a Point of Delivery (POD). That includes POD information, country (check valid Countries), and location of the POD.</p>\n<p>Supply should be related to one location before assigning devices to it.</p>\n<h2 id=\"available-energy-sources-for-a-supply\">Available Energy Sources for a Supply</h2>\n<ul>\n<li>GAS</li>\n<li>ELECTRICITY (aka ELECTRICAL)</li>\n<li>WATER</li>\n<li>THERMAL</li>\n<li>EXPORTED_ELECTRICITY</li>\n</ul>\n","_postman_id":"f0e69864-b1e4-4d3d-aaff-27ab34567e55"},{"name":"Contracts","item":[{"name":"Electricity","item":[{"name":"List all Electricity Contracts","id":"63e9f42f-96c1-4fe1-9a0c-41190d45b489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/electricity?start=0&limit=2&key=ELECTRICAL-1&name=Name&supply_id=6752","urlObject":{"path":["utility","contracts","electricity"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"key","value":"ELECTRICAL-1"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"name","value":"Name"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"supply_id","value":"6752"}],"variable":[]}},"response":[{"id":"17809b97-39d1-441b-983f-e53619f6dc28","name":"List all Electricity Contracts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/contracts/electricity?start=0&limit=2","host":["{{api_v3.host}}"],"path":["utility","contracts","electricity"],"query":[{"key":"start","value":"0"},{"key":"limit","value":"2"},{"key":"key","value":null,"type":"text","disabled":true},{"key":"name","value":null,"type":"text","disabled":true},{"key":"supply_id","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:33:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"927"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"currency\": \"DOLLAR\",\n        \"currency_symbol\": \"$\",\n        \"from\": \"2018-02-01\",\n        \"id\": 15672,\n        \"key\": \"ELECTRICAL-9FFEQ6\",\n        \"name\": \"Broadspectrum\",\n        \"prices\": {\n            \"id\": \"5bbf3abc0428972c79160dea\"\n        },\n        \"prices_config\": {\n            \"period_properties\": [\n                {\n                    \"name\": \"P1\",\n                    \"period_key\": \"P1\",\n                    \"reactive_penalty\": false\n                },\n                {\n                    \"name\": \"P2\",\n                    \"period_key\": \"P2\",\n                    \"reactive_penalty\": false\n                }\n            ]\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 6752\n        },\n        \"to\": \"2019-03-17\",\n        \"type\": \"ELECTRICITY\"\n    },\n    {\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2012-01-01\",\n        \"id\": 7120,\n        \"key\": \"ELECTRICAL-05BBRO\",\n        \"name\": \"Contract Belgium\",\n        \"prices\": {\n            \"id\": \"5414688d2cdcbb3f9d2d3edc\"\n        },\n        \"prices_config\": {\n            \"period_properties\": [\n                {\n                    \"contracted_load\": 40,\n                    \"name\": \"P1\",\n                    \"period_key\": \"P1\",\n                    \"reactive_penalty\": true\n                },\n                {\n                    \"contracted_load\": 40,\n                    \"name\": \"P2\",\n                    \"period_key\": \"P2\",\n                    \"reactive_penalty\": true\n                },\n                {\n                    \"contracted_load\": 50,\n                    \"name\": \"P3\",\n                    \"period_key\": \"P3\",\n                    \"reactive_penalty\": false\n                }\n            ]\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 4070\n        },\n        \"to\": \"2025-12-31\",\n        \"type\": \"ELECTRICITY\"\n    }\n]"}],"_postman_id":"63e9f42f-96c1-4fe1-9a0c-41190d45b489"},{"name":"Retrieve an Electricity Contract","id":"9a33483d-75ef-4ded-8272-9c95cbca0d4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/electricity/15672","urlObject":{"path":["utility","contracts","electricity","15672"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"55e8c185-96e3-48e8-aa95-8c09e2f9ee77","name":"Retrieve an Electricity Contract","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/electricity/15672"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:38:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"399"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"id\": 15672,\n    \"key\": \"ELECTRICAL-9FFEQ6\",\n    \"name\": \"Broadspectrum\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"9a33483d-75ef-4ded-8272-9c95cbca0d4a"},{"name":"Create an Electricity Contract","id":"57353261-38b1-45f2-a137-1fafdb8c78a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"key\": \"ELECTRICAL-NEW-KEY\",\n    \"name\": \"New contract\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/electricity","urlObject":{"path":["utility","contracts","electricity"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"4d5eab66-83fa-4000-a736-ec0b0f212f30","name":"Create an Electricity Contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"key\": \"ELECTRICAL-NEW-KEY\",\n    \"name\": \"New contract\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/electricity"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:41:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"399"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"id\": 23020,\n    \"key\": \"ELECTRICAL-NEW-KEY\",\n    \"name\": \"New contract\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"57353261-38b1-45f2-a137-1fafdb8c78a5"},{"name":"Update an Electricity Contract","id":"872b366e-7c91-4d7e-a1ff-94fc2e1be0cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"id\": 15672,\n    \"key\": \"ELECTRICAL-CHANGED-KEY\",\n    \"name\": \"ChangedName\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/electricity/15672","urlObject":{"path":["utility","contracts","electricity","15672"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"46a96e69-dfe3-4a4b-9f6c-cf21e557f15a","name":"Update an Electricity Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"id\": 15672,\n    \"key\": \"ELECTRICAL-CHANGED-KEY\",\n    \"name\": \"ChangedName\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/electricity/15672"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:39:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"402"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"DOLLAR\",\n    \"currency_symbol\": \"$\",\n    \"from\": \"2018-02-01\",\n    \"id\": 15672,\n    \"key\": \"ELECTRICAL-CHANGED-KEY\",\n    \"name\": \"ChangedName\",\n    \"prices\": {\n        \"id\": \"5bbf3abc0428972c79160dea\"\n    },\n    \"prices_config\": {\n        \"period_properties\": [\n            {\n                \"name\": \"P1\",\n                \"period_key\": \"P1\",\n                \"reactive_penalty\": false\n            },\n            {\n                \"name\": \"P2\",\n                \"period_key\": \"P2\",\n                \"reactive_penalty\": false\n            }\n        ]\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 6752\n    },\n    \"to\": \"2019-03-17\",\n    \"type\": \"ELECTRICITY\"\n}"}],"_postman_id":"872b366e-7c91-4d7e-a1ff-94fc2e1be0cf"},{"name":"Delete an Electricity Contract","id":"6ca0035d-6de5-40f5-933e-8d0e32080bda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/electricity/15672","urlObject":{"path":["utility","contracts","electricity","15672"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"59fb88b7-85f2-4551-ae48-6165f38a7a67","name":"Delete an Electricity Contract","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/electricity/15672"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:40:37 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6ca0035d-6de5-40f5-933e-8d0e32080bda"}],"id":"d6042e4f-5c06-4f92-9d2e-59bce9d700bf","_postman_id":"d6042e4f-5c06-4f92-9d2e-59bce9d700bf","description":""},{"name":"Gas","item":[{"name":"List all Gas Contracts","id":"c72284d6-33c5-4f55-b560-ed6ee1d62776","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/gas?start=0&limit=2&key=GAS-1&name=Gas&supply_id=6752","urlObject":{"path":["utility","contracts","gas"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"key","value":"GAS-1"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"name","value":"Gas"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"supply_id","value":"6752"}],"variable":[]}},"response":[{"id":"4ee57bb8-b6e3-4d1b-aa3c-ba50bf83e1aa","name":"List all Gas Contracts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/contracts/gas?start=0&limit=2","host":["{{api_v3.host}}"],"path":["utility","contracts","gas"],"query":[{"key":"start","value":"0","description":"Integer"},{"key":"limit","value":"2","description":"Integer"},{"key":"key","value":"ELECTRICAL-1","description":"String","disabled":true},{"key":"name","value":"endesa","description":"String","disabled":true},{"key":"supply_id","value":"6752","description":"Integer","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:44:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"575"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2012-01-01\",\n        \"id\": 457,\n        \"key\": \"GAS-K6K72R\",\n        \"name\": \"GDF\",\n        \"prices\": {\n            \"id\": \"523bf233e4b06b07ad332230\"\n        },\n        \"prices_config\": {\n            \"day_of_gas_start_time\": \"00:00\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 391\n        },\n        \"to\": \"2022-12-31\",\n        \"type\": \"GAS\"\n    },\n    {\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2016-01-01\",\n        \"id\": 11567,\n        \"key\": \"GAS-T6K1RM\",\n        \"name\": \"test qd\",\n        \"prices\": {\n            \"id\": \"57725ca005c61363a8029fd9\"\n        },\n        \"prices_config\": {\n            \"daily_contracted_energy\": 20,\n            \"day_of_gas_start_time\": \"06:00\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 7503\n        },\n        \"to\": \"2019-11-30\",\n        \"type\": \"GAS\"\n    }\n]"}],"_postman_id":"c72284d6-33c5-4f55-b560-ed6ee1d62776"},{"name":"Retrieve a Gas Contract","id":"8856cb65-8ce7-4812-852a-2ec7268549c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/gas/11567","urlObject":{"path":["utility","contracts","gas","11567"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"30382f7b-dfc9-4447-905a-3e7ef53263c1","name":"Retrieve a Gas Contract","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/gas/11567"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:47:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"305"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 11567,\n    \"key\": \"GAS-T6K1RM\",\n    \"name\": \"test qd\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"daily_contracted_energy\": 20,\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}"}],"_postman_id":"8856cb65-8ce7-4812-852a-2ec7268549c6"},{"name":"Update a Gas Contract","id":"71b2cf9c-8b4e-4794-bc30-a402b32326c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 11567,\n    \"key\": \"GAS-UPDATED-KEY\",\n    \"name\": \"This is an updated\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/gas/11567","urlObject":{"path":["utility","contracts","gas","11567"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a1c13574-42a7-40d7-90b1-c717590d1a3a","name":"Update a Gas Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 11567,\n    \"key\": \"GAS-UPDATED-KEY\",\n    \"name\": \"This is an updated contract\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/gas/11567"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:49:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"299"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 11567,\n    \"key\": \"GAS-UPDATED-KEY\",\n    \"name\": \"This is an updated contract\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}"}],"_postman_id":"71b2cf9c-8b4e-4794-bc30-a402b32326c6"},{"name":"Delete a Gas Contract","id":"c665477d-a508-4b67-97ca-ee4f636f10b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/gas/7120","urlObject":{"path":["utility","contracts","gas","7120"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a5f0d4f0-3d6a-43d9-8db4-7eff80df7000","name":"Delete a Gas Contract","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/gas/15672"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:40:37 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c665477d-a508-4b67-97ca-ee4f636f10b4"},{"name":"Create a Gas Contract","id":"de832149-f285-4139-93e6-ecf859915cbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"key\": \"GAS-NEW-KEY\",\n    \"name\": \"new contract\",\n    \"prices\": {\n        \"id\": \"5763931205c613228b7c14b3\"\n    },\n    \"prices_config\": {\n        \"daily_contracted_energy\": 20,\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/gas","urlObject":{"path":["utility","contracts","gas"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"0adc98e6-1e54-42be-929a-d611753a8ad1","name":"Create a Gas Contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"key\": \"GAS-NEW-KEY\",\n    \"name\": \"new contract\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/gas"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:57:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"280"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 23021,\n    \"key\": \"GAS-NEW-KEY\",\n    \"name\": \"new contract\",\n    \"prices\": {\n        \"id\": \"57725ca005c61363a8029fd9\"\n    },\n    \"prices_config\": {\n        \"day_of_gas_start_time\": \"06:00\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7503\n    },\n    \"to\": \"2019-11-30\",\n    \"type\": \"GAS\"\n}"}],"_postman_id":"de832149-f285-4139-93e6-ecf859915cbe"}],"id":"9288318c-fe32-4c6f-9631-1df0772beb61","event":[{"listen":"prerequest","script":{"id":"fdf9ca6a-68e2-46f2-b599-dc5092b16dcd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f456d79d-111e-4d93-b192-970bffd01e7f","type":"text/javascript","exec":[""]}}],"_postman_id":"9288318c-fe32-4c6f-9631-1df0772beb61","description":""},{"name":"Water","item":[{"name":"List all Water Contracts","id":"7d2df821-1753-492f-b038-8cafca97db60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/water?start=0&limit=2&key=GAS-1&name=water contract&supply_id=6752","urlObject":{"path":["utility","contracts","water"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"key","value":"GAS-1"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"name","value":"water contract"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"supply_id","value":"6752"}],"variable":[]}},"response":[{"id":"8da8effc-4385-4491-8eff-276f197c4111","name":"List all Water Contracts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/contracts/water?start=0&limit=2","host":["{{api_v3.host}}"],"path":["utility","contracts","water"],"query":[{"key":"start","value":"0","description":"Integer"},{"key":"limit","value":"2","description":"Integer"},{"key":"key","value":"GAS-1","description":"String","disabled":true},{"key":"name","value":"endesa","description":"String","disabled":true},{"key":"supply_id","value":"6752","description":"Integer","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:04:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"594"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"billing_frequency\": \"MONTHLY\",\n        \"billing_start_date\": \"2016-03-01\",\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2015-11-01\",\n        \"id\": 14226,\n        \"key\": \"WATER-1C6R73\",\n        \"name\": \"contrato de agua\",\n        \"prices\": {\n            \"id\": \"5a6efc9204289777ef8c82b0\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 9270\n        },\n        \"to\": \"2024-06-30\",\n        \"type\": \"WATER\"\n    },\n    {\n        \"billing_frequency\": \"MONTHLY\",\n        \"billing_start_date\": \"2018-11-01\",\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2018-11-01\",\n        \"id\": 16160,\n        \"key\": \"WATER-2VSITY\",\n        \"name\": \"test\",\n        \"prices\": {\n            \"id\": \"5a6efc9204289777ef8c82b0\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 10198\n        },\n        \"to\": \"2019-02-28\",\n        \"type\": \"WATER\"\n    }\n]"}],"_postman_id":"7d2df821-1753-492f-b038-8cafca97db60"},{"name":"Retrieve a Water Contract","id":"2caa512b-237e-40ca-a150-e95fbf5aafef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/water/14226","urlObject":{"path":["utility","contracts","water","14226"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"937d7884-d48b-4760-bcd3-8db7ce8a431f","name":"Retrieve a Water Contract","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/water/14226"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:06:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"301"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"id\": 14226,\n    \"key\": \"WATER-1C6R73\",\n    \"name\": \"contrato de agua\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}"}],"_postman_id":"2caa512b-237e-40ca-a150-e95fbf5aafef"},{"name":"Create a Water Contract","id":"a248d325-eac5-43ec-a292-60a1681e01e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"key\": \"WATER-NEW\",\n    \"name\": \"water contract\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/water","urlObject":{"path":["utility","contracts","water"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"7f1a7b75-6ed1-4c2f-b9d1-90db580239a8","name":"Create a Water Contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"key\": \"WATER-NEW\",\n    \"name\": \"water contract\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/water"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:10:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"296"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"id\": 23023,\n    \"key\": \"WATER-NEW\",\n    \"name\": \"water contract\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}"}],"_postman_id":"a248d325-eac5-43ec-a292-60a1681e01e9"},{"name":"Update a Water Contract","id":"a64e32f3-84cb-4e2c-a3e7-ea49c952d68c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"id\": 14226,\n    \"key\": \"WATER-UPDATED\",\n    \"name\": \"water contract updated\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/water/14226","urlObject":{"path":["utility","contracts","water","14226"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"6a54538c-103e-4c37-847b-0452ed9f5d5d","name":"Update a Water Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"id\": 14226,\n    \"key\": \"WATER-UPDATED\",\n    \"name\": \"water contract updated\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/water/14226"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:07:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"308"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"billing_frequency\": \"MONTHLY\",\n    \"billing_start_date\": \"2016-03-01\",\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-11-01\",\n    \"id\": 14226,\n    \"key\": \"WATER-UPDATED\",\n    \"name\": \"water contract updated\",\n    \"prices\": {\n        \"id\": \"5a6efc9204289777ef8c82b0\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 9270\n    },\n    \"to\": \"2024-06-30\",\n    \"type\": \"WATER\"\n}"}],"_postman_id":"a64e32f3-84cb-4e2c-a3e7-ea49c952d68c"},{"name":"Delete a Water Contract","id":"2bf2774e-aa51-4570-a000-6fa0c2407d53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/water/7120","urlObject":{"path":["utility","contracts","water","7120"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a7f988d0-a7df-4aff-9e74-438f1c8c4b77","name":"Delete a Water Contract","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/water/15672"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:40:37 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2bf2774e-aa51-4570-a000-6fa0c2407d53"}],"id":"e2d46f47-dba5-4e88-8844-d5990eb4f648","event":[{"listen":"prerequest","script":{"id":"934092cf-3352-42a0-9de3-6926ae391c79","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"af1c8c4c-d5f1-4a16-960a-901f6ec84a29","type":"text/javascript","exec":[""]}}],"_postman_id":"e2d46f47-dba5-4e88-8844-d5990eb4f648","description":""},{"name":"Thermal","item":[{"name":"List all Thermal Contracts","id":"f52a0e00-bc5f-462f-83ef-2409d675bf51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/thermal?start=0&limit=2","urlObject":{"path":["utility","contracts","thermal"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"},{"disabled":true,"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"key","value":"GAS-1"},{"disabled":true,"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"name","value":"thermal contract"},{"disabled":true,"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"supply_id","value":"6752"}],"variable":[]}},"response":[{"id":"f2baad0e-9fdf-4bfa-8306-404d3da45291","name":"List all Thermal Contracts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/contracts/thermal?start=0&limit=2","host":["{{api_v3.host}}"],"path":["utility","contracts","thermal"],"query":[{"key":"start","value":"0","description":"Integer"},{"key":"limit","value":"2","description":"Integer"},{"key":"key","value":"GAS-1","description":"String","disabled":true},{"key":"name","value":"thermal contract","description":"String","disabled":true},{"key":"supply_id","value":"6752","description":"Integer","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:11:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"246"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2015-01-01\",\n        \"id\": 11246,\n        \"key\": \"THERMAL-L52R6Q\",\n        \"name\": \"Contract 2015- 2016\",\n        \"prices\": {\n            \"id\": \"572092cc05c6136b2446bca8\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 7334\n        },\n        \"to\": \"2025-12-31\",\n        \"type\": \"THERMAL\"\n    }\n]"}],"_postman_id":"f52a0e00-bc5f-462f-83ef-2409d675bf51"},{"name":"Retrieve a Thermal Contract","id":"ff87c0b1-3d19-4910-a05a-e516fab80329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/thermal/11246","urlObject":{"path":["utility","contracts","thermal","11246"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"666b61b3-81ac-4f6b-9bff-80765c578938","name":"Retrieve a Thermal Contract","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/thermal/11246"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:12:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"id\": 11246,\n    \"key\": \"THERMAL-L52R6Q\",\n    \"name\": \"Contract 2015- 2016\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}"}],"_postman_id":"ff87c0b1-3d19-4910-a05a-e516fab80329"},{"name":"Create a Thermal Contract","id":"5c0e538c-3aa1-4888-8c13-1ff1c7b54ee4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"key\": \"THERMAL-NEW\",\n    \"name\": \"Contract thermal\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/thermal","urlObject":{"path":["utility","contracts","thermal"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"8b2c3b63-95a3-41ad-91d9-5afbed0fbbdc","name":"Create a Thermal Contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"key\": \"THERMAL-NEW\",\n    \"name\": \"Contract thermal\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/thermal"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:15:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"238"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"id\": 23024,\n    \"key\": \"THERMAL-NEW\",\n    \"name\": \"Contract thermal\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}"}],"_postman_id":"5c0e538c-3aa1-4888-8c13-1ff1c7b54ee4"},{"name":"Update a Thermal Contract","id":"cf741fd9-389d-4051-9aea-e86f370b719f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"id\": 11246,\n    \"key\": \"THERMAL-UPDATED\",\n    \"name\": \"Contract updated\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/water/14226","urlObject":{"path":["utility","contracts","water","14226"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"e3cab7db-ead4-4e6e-88b7-0dc8fc543932","name":"Update a Thermal Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"id\": 11246,\n    \"key\": \"THERMAL-UPDATED\",\n    \"name\": \"Contract updated\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/thermal/14226"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:14:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"242"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2015-01-01\",\n    \"id\": 14226,\n    \"key\": \"THERMAL-UPDATED\",\n    \"name\": \"Contract updated\",\n    \"prices\": {\n        \"id\": \"572092cc05c6136b2446bca8\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7334\n    },\n    \"to\": \"2025-12-31\",\n    \"type\": \"THERMAL\"\n}"}],"_postman_id":"cf741fd9-389d-4051-9aea-e86f370b719f"},{"name":"Delete a Thermal Contract","id":"693cc0da-6144-47e0-8e4c-6b9aa98a1c73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/thermal/7120","urlObject":{"path":["utility","contracts","thermal","7120"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"a930fe2a-797a-45ba-a4ac-ab2935a8fe42","name":"Delete a Thermal Contract","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/thermal/15672"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:40:37 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"693cc0da-6144-47e0-8e4c-6b9aa98a1c73"}],"id":"3068c01c-5933-4855-8c53-32ac6e26e003","event":[{"listen":"prerequest","script":{"id":"db9b78bb-35e4-4d0d-b924-2065fac6a0c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f04fc913-ce2d-4dab-8dad-996775003818","type":"text/javascript","exec":[""]}}],"_postman_id":"3068c01c-5933-4855-8c53-32ac6e26e003","description":""},{"name":"Exported Electricity","item":[{"name":"List all Exported Electricity Contracts","id":"538ac8dd-ae96-4418-94cb-f15b2cc11d36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/exported-electricity?start=0&limit=2&key=ELECTRICAL-1&name=Name&supply_id=6752","urlObject":{"path":["utility","contracts","exported-electricity"],"host":["{{api_v3.host}}"],"query":[{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"limit","value":"2"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"key","value":"ELECTRICAL-1"},{"description":{"content":"<p>String</p>\n","type":"text/plain"},"key":"name","value":"Name"},{"description":{"content":"<p>Integer</p>\n","type":"text/plain"},"key":"supply_id","value":"6752"}],"variable":[]}},"response":[{"id":"bbb58c3c-7a20-42b6-b50a-5721ca999275","name":"List all Exported Electricity Contracts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_v3.host}}/utility/contracts/exported-electricity?start=0&limit=2","host":["{{api_v3.host}}"],"path":["utility","contracts","exported-electricity"],"query":[{"key":"start","value":"0","description":"Integer"},{"key":"limit","value":"2","description":"Integer"},{"key":"key","value":"ELECTRICAL-1","description":"String","disabled":true},{"key":"name","value":"Name","description":"String","disabled":true},{"key":"supply_id","value":"6752","description":"Integer","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:15:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"264"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"currency\": \"EURO\",\n        \"currency_symbol\": \"€\",\n        \"from\": \"2016-01-01\",\n        \"id\": 11418,\n        \"key\": \"EXPORTED-DLJN76\",\n        \"name\": \"exported energy contrct\",\n        \"prices\": {\n            \"id\": \"574ec8d605c61370175f119c\"\n        },\n        \"simulation\": false,\n        \"supply\": {\n            \"id\": 7467\n        },\n        \"to\": \"2029-06-06\",\n        \"type\": \"EXPORTED_ELECTRICITY\"\n    }\n]"}],"_postman_id":"538ac8dd-ae96-4418-94cb-f15b2cc11d36"},{"name":"Retrieve an Exported Electricity Contract","id":"c43beba6-2ce7-410d-bc54-6539d2a82ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/exported-electricity/11418","urlObject":{"path":["utility","contracts","exported-electricity","11418"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"33263406-4bfc-4ec5-82b9-f6a72b281e31","name":"Retrieve an Exported Electricity Contract","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/utility/contracts/exported-electricity/11418"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:16:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"262"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 11418,\n    \"key\": \"EXPORTED-DLJN76\",\n    \"name\": \"exported energy contrct\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}"}],"_postman_id":"c43beba6-2ce7-410d-bc54-6539d2a82ff4"},{"name":"Create an Exported Electricity Contract","id":"f1d08866-82ec-4620-be4c-5ddab92d918e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"key\": \"EXPORTED-DLJN76\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/exported-electricity","urlObject":{"path":["utility","contracts","exported-electricity"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"f2560d91-8aa6-44fd-a2ff-e132d2a2c9bf","name":"Create an Exported Electricity Contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"key\": \"EXPORTED-DLJN76\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/exported-electricity"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:18:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"263"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 23025,\n    \"key\": \"EXPORTED-DLJN76\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}"}],"_postman_id":"f1d08866-82ec-4620-be4c-5ddab92d918e"},{"name":"Update an Exported Electricity Contract","id":"fa79bf30-3ab0-49e8-a6ad-7e0b564e8a03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 23025,\n    \"key\": \"EXPORTED-UPDATED\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/exported-electricity/23025","urlObject":{"path":["utility","contracts","exported-electricity","23025"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"1a01e214-9841-4c8f-86ae-499801de459e","name":"Update an Exported Electricity Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 23025,\n    \"key\": \"EXPORTED-UPDATED\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_v3.host}}/utility/contracts/exported-electricity/23025"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:18:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"264"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"{\n    \"currency\": \"EURO\",\n    \"currency_symbol\": \"€\",\n    \"from\": \"2016-01-01\",\n    \"id\": 23025,\n    \"key\": \"EXPORTED-UPDATED\",\n    \"name\": \"exported energy contract\",\n    \"prices\": {\n        \"id\": \"574ec8d605c61370175f119c\"\n    },\n    \"simulation\": false,\n    \"supply\": {\n        \"id\": 7467\n    },\n    \"to\": \"2029-06-06\",\n    \"type\": \"EXPORTED_ELECTRICITY\"\n}"}],"_postman_id":"fa79bf30-3ab0-49e8-a6ad-7e0b564e8a03"},{"name":"Delete an Exported Electricity Contract","id":"0ced4df3-2d1c-4347-b038-ae3d5ed79823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/exported-electricity/11418","urlObject":{"path":["utility","contracts","exported-electricity","11418"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"d2272f76-ace8-408f-a298-eddf76019264","name":"Delete an Exported Electricity Contract","originalRequest":{"method":"DELETE","header":[],"url":"{{api_v3.host}}/utility/contracts/exported-electricity/11418"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 08:17:32 GMT"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api03-pre"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0ced4df3-2d1c-4347-b038-ae3d5ed79823"}],"id":"a1f8512d-8a16-446b-b6eb-0211bfdebaae","_postman_id":"a1f8512d-8a16-446b-b6eb-0211bfdebaae","description":""}],"id":"4a53cdc4-6af2-42eb-9611-843de2cac4e3","event":[{"listen":"prerequest","script":{"id":"3504d444-0014-411e-8f3e-7eb2735d5c54","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"28fcd307-3f27-4f08-8992-132938fe3523","type":"text/javascript","exec":[""]}}],"_postman_id":"4a53cdc4-6af2-42eb-9611-843de2cac4e3","description":""},{"name":"Countries","item":[{"name":"List all valid Countries","id":"1a2217a9-684e-481d-93ae-df7d2bd70d54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/global/countries","description":"<p>List all Countries that are valid for Locations and Supplies.</p>\n","urlObject":{"path":["global","countries"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"c5254e55-2e24-4295-8e91-ed7254be9abe","name":"List all valid Countries","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/global/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 04 Sep 2020 07:26:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Loadbalancer","value":"lb01-pre"},{"key":"X-Frontend","value":"default"},{"key":"X-Backend","value":"api-nodes/api02-pre"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"code\": \"AF\",\n        \"name\": \"Afghanistan\"\n    },\n    {\n        \"code\": \"AX\",\n        \"name\": \"Aland Islands\"\n    },\n    {\n        \"code\": \"AL\",\n        \"name\": \"Albania\"\n    },\n    {\n        \"code\": \"DZ\",\n        \"name\": \"Algeria\"\n    },\n    {\n        \"code\": \"AS\",\n        \"name\": \"American Samoa\"\n    },\n    {\n        \"code\": \"AD\",\n        \"name\": \"Andorra\"\n    },\n    {\n        \"code\": \"AO\",\n        \"name\": \"Angola\"\n    },\n    {\n        \"code\": \"AI\",\n        \"name\": \"Anguilla\"\n    },\n    {\n        \"code\": \"AQ\",\n        \"name\": \"Antarctica\"\n    },\n    {\n        \"code\": \"AG\",\n        \"name\": \"Antigua And Barbuda\"\n    },\n    {\n        \"code\": \"AR\",\n        \"name\": \"Argentina\"\n    },\n    {\n        \"code\": \"AM\",\n        \"name\": \"Armenia\"\n    },\n    {\n        \"code\": \"AW\",\n        \"name\": \"Aruba\"\n    },\n    {\n        \"code\": \"AU\",\n        \"name\": \"Australia\"\n    },\n    {\n        \"code\": \"AT\",\n        \"name\": \"Austria\"\n    },\n    {\n        \"code\": \"AZ\",\n        \"name\": \"Azerbaijan\"\n    },\n    {\n        \"code\": \"BS\",\n        \"name\": \"Bahamas\"\n    },\n    {\n        \"code\": \"BH\",\n        \"name\": \"Bahrain\"\n    },\n    {\n        \"code\": \"BD\",\n        \"name\": \"Bangladesh\"\n    },\n    {\n        \"code\": \"BB\",\n        \"name\": \"Barbados\"\n    },\n    {\n        \"code\": \"BY\",\n        \"name\": \"Belarus\"\n    },\n    {\n        \"code\": \"BE\",\n        \"name\": \"Belgium\"\n    },\n    {\n        \"code\": \"BZ\",\n        \"name\": \"Belize\"\n    },\n    {\n        \"code\": \"BJ\",\n        \"name\": \"Benin\"\n    },\n    {\n        \"code\": \"BM\",\n        \"name\": \"Bermuda\"\n    },\n    {\n        \"code\": \"BT\",\n        \"name\": \"Bhutan\"\n    },\n    {\n        \"code\": \"BO\",\n        \"name\": \"Bolivia\"\n    },\n    {\n        \"code\": \"BA\",\n        \"name\": \"Bosnia And Herzegovina\"\n    },\n    {\n        \"code\": \"BW\",\n        \"name\": \"Botswana\"\n    },\n    {\n        \"code\": \"BV\",\n        \"name\": \"Bouvet Island\"\n    },\n    {\n        \"code\": \"BR\",\n        \"name\": \"Brazil\"\n    },\n    {\n        \"code\": \"IO\",\n        \"name\": \"British Indian Ocean Territory\"\n    },\n    {\n        \"code\": \"BN\",\n        \"name\": \"Brunei Darussalam\"\n    },\n    {\n        \"code\": \"BG\",\n        \"name\": \"Bulgaria\"\n    },\n    {\n        \"code\": \"BF\",\n        \"name\": \"Burkina Faso\"\n    },\n    {\n        \"code\": \"BI\",\n        \"name\": \"Burundi\"\n    },\n    {\n        \"code\": \"KH\",\n        \"name\": \"Cambodia\"\n    },\n    {\n        \"code\": \"CM\",\n        \"name\": \"Cameroon\"\n    },\n    {\n        \"code\": \"CA\",\n        \"name\": \"Canada\"\n    },\n    {\n        \"code\": \"CV\",\n        \"name\": \"Cape Verde\"\n    },\n    {\n        \"code\": \"CIS\",\n        \"name\": \"Cayman Islands\"\n    },\n    {\n        \"code\": \"CF\",\n        \"name\": \"Central African Republic\"\n    },\n    {\n        \"code\": \"TD\",\n        \"name\": \"Chad (tchad)\"\n    },\n    {\n        \"code\": \"CL\",\n        \"name\": \"Chile\"\n    },\n    {\n        \"code\": \"CN\",\n        \"name\": \"China\"\n    },\n    {\n        \"code\": \"CX\",\n        \"name\": \"Christmas Island\"\n    },\n    {\n        \"code\": \"CC\",\n        \"name\": \"Cocos (keeling) Islands\"\n    },\n    {\n        \"code\": \"CO\",\n        \"name\": \"Colombia\"\n    },\n    {\n        \"code\": \"KM\",\n        \"name\": \"Comoros\"\n    },\n    {\n        \"code\": \"CG\",\n        \"name\": \"Congo, Republic Of\"\n    },\n    {\n        \"code\": \"CD\",\n        \"name\": \"Congo\"\n    },\n    {\n        \"code\": \"CK\",\n        \"name\": \"Cook Islands\"\n    },\n    {\n        \"code\": \"CR\",\n        \"name\": \"Costa Rica\"\n    },\n    {\n        \"code\": \"CI\",\n        \"name\": \"Ivory Coast\"\n    },\n    {\n        \"code\": \"HR\",\n        \"name\": \"Croatia (hrvatska)\"\n    },\n    {\n        \"code\": \"CU\",\n        \"name\": \"Cuba\"\n    },\n    {\n        \"code\": \"CY\",\n        \"name\": \"Cyprus\"\n    },\n    {\n        \"code\": \"CZ\",\n        \"name\": \"Czech Republic\"\n    },\n    {\n        \"code\": \"DK\",\n        \"name\": \"Denmark\"\n    },\n    {\n        \"code\": \"DJ\",\n        \"name\": \"Djibouti\"\n    },\n    {\n        \"code\": \"DM\",\n        \"name\": \"Dominica\"\n    },\n    {\n        \"code\": \"DO\",\n        \"name\": \"Dominican Republic\"\n    },\n    {\n        \"code\": \"EC\",\n        \"name\": \"Ecuador\"\n    },\n    {\n        \"code\": \"EG\",\n        \"name\": \"Egypt\"\n    },\n    {\n        \"code\": \"SV\",\n        \"name\": \"El Salvador\"\n    },\n    {\n        \"code\": \"GQ\",\n        \"name\": \"Equatorial Guinea\"\n    },\n    {\n        \"code\": \"ER\",\n        \"name\": \"Eritrea\"\n    },\n    {\n        \"code\": \"EE\",\n        \"name\": \"Estonia\"\n    },\n    {\n        \"code\": \"ET\",\n        \"name\": \"Ethiopia\"\n    },\n    {\n        \"code\": \"FO\",\n        \"name\": \"Faeroe Islands\"\n    },\n    {\n        \"code\": \"FK\",\n        \"name\": \"Falkland Islands (malvinas)\"\n    },\n    {\n        \"code\": \"FJ\",\n        \"name\": \"Fiji\"\n    },\n    {\n        \"code\": \"FI\",\n        \"name\": \"Finland\"\n    },\n    {\n        \"code\": \"GF\",\n        \"name\": \"French Guiana\"\n    },\n    {\n        \"code\": \"PF\",\n        \"name\": \"French Polynesia\"\n    },\n    {\n        \"code\": \"TF\",\n        \"name\": \"French Southern Territories\"\n    },\n    {\n        \"code\": \"GA\",\n        \"name\": \"Gabon\"\n    },\n    {\n        \"code\": \"GM\",\n        \"name\": \"Gambia, The\"\n    },\n    {\n        \"code\": \"GE\",\n        \"name\": \"Georgia\"\n    },\n    {\n        \"code\": \"GH\",\n        \"name\": \"Ghana\"\n    },\n    {\n        \"code\": \"GI\",\n        \"name\": \"Gibraltar\"\n    },\n    {\n        \"code\": \"GR\",\n        \"name\": \"Greece\"\n    },\n    {\n        \"code\": \"GL\",\n        \"name\": \"Greenland\"\n    },\n    {\n        \"code\": \"GD\",\n        \"name\": \"Grenada\"\n    },\n    {\n        \"code\": \"GP\",\n        \"name\": \"Guadeloupe\"\n    },\n    {\n        \"code\": \"GU\",\n        \"name\": \"Guam\"\n    },\n    {\n        \"code\": \"GT\",\n        \"name\": \"Guatemala\"\n    },\n    {\n        \"code\": \"GG\",\n        \"name\": \"Guernsey\"\n    },\n    {\n        \"code\": \"GN\",\n        \"name\": \"Guinea\"\n    },\n    {\n        \"code\": \"GW\",\n        \"name\": \"Guinea-bissau\"\n    },\n    {\n        \"code\": \"GY\",\n        \"name\": \"Guyana\"\n    },\n    {\n        \"code\": \"HT\",\n        \"name\": \"Haiti\"\n    },\n    {\n        \"code\": \"HM\",\n        \"name\": \"Heard Island And Mcdonald Islands\"\n    },\n    {\n        \"code\": \"HN\",\n        \"name\": \"Honduras\"\n    },\n    {\n        \"code\": \"HK\",\n        \"name\": \"Hong Kong\"\n    },\n    {\n        \"code\": \"HU\",\n        \"name\": \"Hungary\"\n    },\n    {\n        \"code\": \"IS\",\n        \"name\": \"Iceland\"\n    },\n    {\n        \"code\": \"IN\",\n        \"name\": \"India\"\n    },\n    {\n        \"code\": \"ID\",\n        \"name\": \"Indonesia\"\n    },\n    {\n        \"code\": \"IR\",\n        \"name\": \"Iran\"\n    },\n    {\n        \"code\": \"IQ\",\n        \"name\": \"Iraq\"\n    },\n    {\n        \"code\": \"IE\",\n        \"name\": \"Ireland\"\n    },\n    {\n        \"code\": \"IM\",\n        \"name\": \"Isle Of Man\"\n    },\n    {\n        \"code\": \"IL\",\n        \"name\": \"Israel\"\n    },\n    {\n        \"code\": \"JM\",\n        \"name\": \"Jamaica\"\n    },\n    {\n        \"code\": \"JP\",\n        \"name\": \"Japan\"\n    },\n    {\n        \"code\": \"JE\",\n        \"name\": \"Jersey\"\n    },\n    {\n        \"code\": \"JO\",\n        \"name\": \"Jordan\"\n    },\n    {\n        \"code\": \"KZ\",\n        \"name\": \"Kazakhstan\"\n    },\n    {\n        \"code\": \"KE\",\n        \"name\": \"Kenya\"\n    },\n    {\n        \"code\": \"KI\",\n        \"name\": \"Kiribati\"\n    },\n    {\n        \"code\": \"KP\",\n        \"name\": \"Korea (North)\"\n    },\n    {\n        \"code\": \"KR\",\n        \"name\": \"Korea (South)\"\n    },\n    {\n        \"code\": \"KW\",\n        \"name\": \"Kuwait\"\n    },\n    {\n        \"code\": \"KG\",\n        \"name\": \"Kyrgyzstan\"\n    },\n    {\n        \"code\": \"LA\",\n        \"name\": \"Laos\"\n    },\n    {\n        \"code\": \"LV\",\n        \"name\": \"Latvia\"\n    },\n    {\n        \"code\": \"LB\",\n        \"name\": \"Lebanon\"\n    },\n    {\n        \"code\": \"LS\",\n        \"name\": \"Lesotho\"\n    },\n    {\n        \"code\": \"LR\",\n        \"name\": \"Liberia\"\n    },\n    {\n        \"code\": \"LY\",\n        \"name\": \"Libya\"\n    },\n    {\n        \"code\": \"LI\",\n        \"name\": \"Liechtenstein\"\n    },\n    {\n        \"code\": \"LT\",\n        \"name\": \"Lithuania\"\n    },\n    {\n        \"code\": \"LU\",\n        \"name\": \"Luxembourg\"\n    },\n    {\n        \"code\": \"MO\",\n        \"name\": \"Macao\"\n    },\n    {\n        \"code\": \"MK\",\n        \"name\": \"Macedonia\"\n    },\n    {\n        \"code\": \"MG\",\n        \"name\": \"Madagascar\"\n    },\n    {\n        \"code\": \"MW\",\n        \"name\": \"Malawi\"\n    },\n    {\n        \"code\": \"MY\",\n        \"name\": \"Malaysia\"\n    },\n    {\n        \"code\": \"MV\",\n        \"name\": \"Maldives\"\n    },\n    {\n        \"code\": \"ML\",\n        \"name\": \"Mali\"\n    },\n    {\n        \"code\": \"MT\",\n        \"name\": \"Malta\"\n    },\n    {\n        \"code\": \"MH\",\n        \"name\": \"Marshall Islands\"\n    },\n    {\n        \"code\": \"MQ\",\n        \"name\": \"Martinique\"\n    },\n    {\n        \"code\": \"MR\",\n        \"name\": \"Mauritania\"\n    },\n    {\n        \"code\": \"MU\",\n        \"name\": \"Mauritius\"\n    },\n    {\n        \"code\": \"YT\",\n        \"name\": \"Mayotte\"\n    },\n    {\n        \"code\": \"FM\",\n        \"name\": \"Micronesia \"\n    },\n    {\n        \"code\": \"MD\",\n        \"name\": \"Moldova\"\n    },\n    {\n        \"code\": \"MC\",\n        \"name\": \"Monaco\"\n    },\n    {\n        \"code\": \"MN\",\n        \"name\": \"Mongolia\"\n    },\n    {\n        \"code\": \"ME\",\n        \"name\": \"Montenegro\"\n    },\n    {\n        \"code\": \"MS\",\n        \"name\": \"Montserrat\"\n    },\n    {\n        \"code\": \"MA\",\n        \"name\": \"Morocco\"\n    },\n    {\n        \"code\": \"MZ\",\n        \"name\": \"Mozambique (mo„ßambique)\"\n    },\n    {\n        \"code\": \"MM\",\n        \"name\": \"Myanmar (formerly Burma)\"\n    },\n    {\n        \"code\": \"NA\",\n        \"name\": \"Namibia\"\n    },\n    {\n        \"code\": \"NR\",\n        \"name\": \"Nauru\"\n    },\n    {\n        \"code\": \"NP\",\n        \"name\": \"Nepal\"\n    },\n    {\n        \"code\": \"NL\",\n        \"name\": \"Netherlands\"\n    },\n    {\n        \"code\": \"AN\",\n        \"name\": \"Netherlands Antilles\"\n    },\n    {\n        \"code\": \"NC\",\n        \"name\": \"New Caledonia\"\n    },\n    {\n        \"code\": \"NZ\",\n        \"name\": \"New Zealand\"\n    },\n    {\n        \"code\": \"NI\",\n        \"name\": \"Nicaragua\"\n    },\n    {\n        \"code\": \"NE\",\n        \"name\": \"Niger\"\n    },\n    {\n        \"code\": \"NG\",\n        \"name\": \"Nigeria\"\n    },\n    {\n        \"code\": \"NU\",\n        \"name\": \"Niue\"\n    },\n    {\n        \"code\": \"NF\",\n        \"name\": \"Norfolk Island\"\n    },\n    {\n        \"code\": \"MP\",\n        \"name\": \"Northern Mariana Islands\"\n    },\n    {\n        \"code\": \"NO\",\n        \"name\": \"Norway\"\n    },\n    {\n        \"code\": \"OM\",\n        \"name\": \"Oman\"\n    },\n    {\n        \"code\": \"PK\",\n        \"name\": \"Pakistan\"\n    },\n    {\n        \"code\": \"PW\",\n        \"name\": \"Palau\"\n    },\n    {\n        \"code\": \"PS\",\n        \"name\": \"Palestinian Territories\"\n    },\n    {\n        \"code\": \"PA\",\n        \"name\": \"Panama\"\n    },\n    {\n        \"code\": \"PG\",\n        \"name\": \"Papua New Guinea\"\n    },\n    {\n        \"code\": \"PY\",\n        \"name\": \"Paraguay\"\n    },\n    {\n        \"code\": \"PE\",\n        \"name\": \"Peru\"\n    },\n    {\n        \"code\": \"PH\",\n        \"name\": \"Philippines\"\n    },\n    {\n        \"code\": \"PN\",\n        \"name\": \"Pitcairn\"\n    },\n    {\n        \"code\": \"PL\",\n        \"name\": \"Poland\"\n    },\n    {\n        \"code\": \"PT\",\n        \"name\": \"Portugal\"\n    },\n    {\n        \"code\": \"PR\",\n        \"name\": \"Puerto Rico\"\n    },\n    {\n        \"code\": \"QA\",\n        \"name\": \"Qatar\"\n    },\n    {\n        \"code\": \"RE\",\n        \"name\": \"Reunion\"\n    },\n    {\n        \"code\": \"RO\",\n        \"name\": \"Romania\"\n    },\n    {\n        \"code\": \"RU\",\n        \"name\": \"Russian Federation\"\n    },\n    {\n        \"code\": \"RW\",\n        \"name\": \"Rwanda\"\n    },\n    {\n        \"code\": \"SH\",\n        \"name\": \"Saint Helena\"\n    },\n    {\n        \"code\": \"KN\",\n        \"name\": \"Saint Kitts And Nevis\"\n    },\n    {\n        \"code\": \"LC\",\n        \"name\": \"Saint Lucia\"\n    },\n    {\n        \"code\": \"PM\",\n        \"name\": \"Saint Pierre And Miquelon\"\n    },\n    {\n        \"code\": \"VC\",\n        \"name\": \"Saint Vincent And The Grenadines\"\n    },\n    {\n        \"code\": \"WS\",\n        \"name\": \"Samoa (formerly Western Samoa)\"\n    },\n    {\n        \"code\": \"SM\",\n        \"name\": \"San Marino (republic Of)\"\n    },\n    {\n        \"code\": \"ST\",\n        \"name\": \"Sao Tome And Principe\"\n    },\n    {\n        \"code\": \"SA\",\n        \"name\": \"Saudi Arabia (kingdom Of Saudi Arabia)\"\n    },\n    {\n        \"code\": \"SN\",\n        \"name\": \"Senegal\"\n    },\n    {\n        \"code\": \"RS\",\n        \"name\": \"Serbia\"\n    },\n    {\n        \"code\": \"SC\",\n        \"name\": \"Seychelles\"\n    },\n    {\n        \"code\": \"SL\",\n        \"name\": \"Sierra Leone\"\n    },\n    {\n        \"code\": \"SG\",\n        \"name\": \"Singapore\"\n    },\n    {\n        \"code\": \"SK\",\n        \"name\": \"Slovakia\"\n    },\n    {\n        \"code\": \"SI\",\n        \"name\": \"Slovenia\"\n    },\n    {\n        \"code\": \"SB\",\n        \"name\": \"Solomon Islands\"\n    },\n    {\n        \"code\": \"SO\",\n        \"name\": \"Somalia\"\n    },\n    {\n        \"code\": \"ZA\",\n        \"name\": \"South Africa \"\n    },\n    {\n        \"code\": \"GS\",\n        \"name\": \"South Georgia\"\n    },\n    {\n        \"code\": \"LK\",\n        \"name\": \"Sri Lanka\"\n    },\n    {\n        \"code\": \"SD\",\n        \"name\": \"Sudan\"\n    },\n    {\n        \"code\": \"SR\",\n        \"name\": \"Suriname\"\n    },\n    {\n        \"code\": \"SJ\",\n        \"name\": \"Svalbard And Jan Mayen\"\n    },\n    {\n        \"code\": \"SZ\",\n        \"name\": \"Swaziland\"\n    },\n    {\n        \"code\": \"SE\",\n        \"name\": \"Sweden\"\n    },\n    {\n        \"code\": \"CH\",\n        \"name\": \"Switzerland\"\n    },\n    {\n        \"code\": \"SY\",\n        \"name\": \"Syrian Arab Republic\"\n    },\n    {\n        \"code\": \"TW\",\n        \"name\": \"Taiwan\"\n    },\n    {\n        \"code\": \"TJ\",\n        \"name\": \"Tajikistan\"\n    },\n    {\n        \"code\": \"TZ\",\n        \"name\": \"Tanzania\"\n    },\n    {\n        \"code\": \"TH\",\n        \"name\": \"Thailand\"\n    },\n    {\n        \"code\": \"TL\",\n        \"name\": \"Timor-leste\"\n    },\n    {\n        \"code\": \"TG\",\n        \"name\": \"Togo\"\n    },\n    {\n        \"code\": \"TK\",\n        \"name\": \"Tokelau\"\n    },\n    {\n        \"code\": \"TO\",\n        \"name\": \"Tonga\"\n    },\n    {\n        \"code\": \"TT\",\n        \"name\": \"Trinidad And Tobago\"\n    },\n    {\n        \"code\": \"TN\",\n        \"name\": \"Tunisia\"\n    },\n    {\n        \"code\": \"TM\",\n        \"name\": \"Turkmenistan\"\n    },\n    {\n        \"code\": \"TC\",\n        \"name\": \"Turks And Caicos Islands\"\n    },\n    {\n        \"code\": \"TV\",\n        \"name\": \"Tuvalu\"\n    },\n    {\n        \"code\": \"UG\",\n        \"name\": \"Uganda\"\n    },\n    {\n        \"code\": \"UA\",\n        \"name\": \"Ukraine\"\n    },\n    {\n        \"code\": \"AE\",\n        \"name\": \"United Arab Emirates\"\n    },\n    {\n        \"code\": \"UY\",\n        \"name\": \"Uruguay\"\n    },\n    {\n        \"code\": \"UZ\",\n        \"name\": \"Uzbekistan\"\n    },\n    {\n        \"code\": \"VU\",\n        \"name\": \"Vanuatu\"\n    },\n    {\n        \"code\": \"VA\",\n        \"name\": \"Vatican City (holy See)\"\n    },\n    {\n        \"code\": \"VE\",\n        \"name\": \"Venezuela\"\n    },\n    {\n        \"code\": \"VN\",\n        \"name\": \"Viet Nam\"\n    },\n    {\n        \"code\": \"VG\",\n        \"name\": \"Virgin Islands, British\"\n    },\n    {\n        \"code\": \"VI\",\n        \"name\": \"Virgin Islands, U.s.\"\n    },\n    {\n        \"code\": \"WF\",\n        \"name\": \"Wallis And Futuna\"\n    },\n    {\n        \"code\": \"EH\",\n        \"name\": \"Western Sahara\"\n    },\n    {\n        \"code\": \"YE\",\n        \"name\": \"Yemen\"\n    },\n    {\n        \"code\": \"ZM\",\n        \"name\": \"Zambia \"\n    },\n    {\n        \"code\": \"ZW\",\n        \"name\": \"Zimbabwe\"\n    },\n    {\n        \"code\": \"FR\",\n        \"name\": \"France\"\n    },\n    {\n        \"code\": \"DE\",\n        \"name\": \"Germany (Deutschland)\"\n    },\n    {\n        \"code\": \"ES\",\n        \"name\": \"Spain (España)\"\n    },\n    {\n        \"code\": \"MX\",\n        \"name\": \"Mexico\"\n    },\n    {\n        \"code\": \"TR\",\n        \"name\": \"Turkey\"\n    },\n    {\n        \"code\": \"US\",\n        \"name\": \"United States\"\n    },\n    {\n        \"code\": \"IT\",\n        \"name\": \"Italy\"\n    },\n    {\n        \"code\": \"GB\",\n        \"name\": \"United Kingdom\"\n    }\n]"}],"_postman_id":"1a2217a9-684e-481d-93ae-df7d2bd70d54"}],"id":"cb7a77f4-0617-4f17-8108-e016c6811486","_postman_id":"cb7a77f4-0617-4f17-8108-e016c6811486","description":""},{"name":"Brandings","item":[{"name":"Get Branding","id":"228ebc94-c539-4290-8760-70cf186526a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_v3.host}}/brandings/293","urlObject":{"path":["brandings","293"],"host":["{{api_v3.host}}"],"query":[],"variable":[]}},"response":[{"id":"fd7d4cad-bcd1-499b-9d7b-8b79f5b627aa","name":"Get Branding","originalRequest":{"method":"GET","header":[],"url":"{{api_v3.host}}/brandings/633"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"color\": {\n        \"primary\": \"#000000\",\n        \"background\": \"#ffffff\"\n    }\n}"}],"_postman_id":"228ebc94-c539-4290-8760-70cf186526a2"}],"id":"96381000-ecb6-47f3-b129-ab95d940cad0","_postman_id":"96381000-ecb6-47f3-b129-ab95d940cad0","description":""},{"name":"Anomaly Detection","item":[{"name":"Anomalies","item":[{"name":"List all Anomalies","id":"b7863241-2a19-4524-8b23-d994a1d0490e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_gateway.host}}/anomaly-detection/anomalies?from=2011-01-01&to=2022-05-03&model_id=12005_EACTIVE&location_id=232432&device_id=323424&sort_by=location_name&order=ASC","urlObject":{"path":["anomaly-detection","anomalies"],"host":["{{api_gateway.host}}"],"query":[{"description":{"content":"<p>Start date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"from","value":"2011-01-01"},{"description":{"content":"<p>End date (ISO-8601 format)</p>\n","type":"text/plain"},"key":"to","value":"2022-05-03"},{"description":{"content":"<p>[Optional] Filter by anomalies related to this model</p>\n","type":"text/plain"},"key":"model_id","value":"12005_EACTIVE"},{"description":{"content":"<p>[Optional] Filter by anomalies related to this location</p>\n","type":"text/plain"},"key":"location_id","value":"232432"},{"description":{"content":"<p>[Optional] Filter by anomalies related to this device</p>\n","type":"text/plain"},"key":"device_id","value":"323424"},{"description":{"content":"<p>[Optional] Available values : device_name, location_name, parameter, training_status, last_training, detection_status, last_execution_ts</p>\n","type":"text/plain"},"key":"sort_by","value":"location_name"},{"description":{"content":"<p>[Optional] Available values : ASC, DESC</p>\n","type":"text/plain"},"key":"order","value":"ASC"}],"variable":[]}},"response":[{"id":"6d697299-8312-4074-b4d6-d3f46ea062e6","name":"List all Anomalies by model","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_gateway.host}}/anomaly-detection/anomalies?from=2011-01-01&to=2022-05-03&model_id=12005_EACTIVE&location_id=232432&device_id=323424&sort_by=location_name&order=ASC","host":["{{api_gateway.host}}"],"path":["anomaly-detection","anomalies"],"query":[{"key":"from","value":"2011-01-01","description":"Start date (ISO-8601 format)"},{"key":"to","value":"2022-05-03","description":"End date (ISO-8601 format)"},{"key":"model_id","value":"12005_EACTIVE","description":"Filter by anomalies related to this model"},{"key":"location_id","value":"232432","description":"Filter by anomalies related to this location"},{"key":"device_id","value":"323424","description":"Filter by anomalies related to this device"},{"key":"sort_by","value":"location_name","description":"Available values : device_name, location_name, parameter, training_status, last_training, detection_status, last_execution_ts"},{"key":"order","value":"ASC","description":"Available values : ASC, DESC"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"12005_EACTIVE_2020-01-07T09:00:00Z\",\n        \"model\": {\n            \"id\": \"12005_EACTIVE\"\n        },\n        \"from\": \"2020-01-07T08:00:00+00:00\",\n        \"to\": \"2020-01-07T16:00:00+00:00\",\n        \"total_impact\": 171.5428218982818,\n        \"total_cost\": 55.25394293343657,\n        \"currency_symbol\": \"€\",\n        \"status\": \"NEW\"\n    },\n    {\n        \"id\": \"12005_EACTIVE_2020-01-08T07:00:00Z\",\n        \"model\": {\n            \"id\": \"12005_EACTIVE\"\n        },\n        \"from\": \"2020-01-08T06:00:00+00:00\",\n        \"to\": \"2020-01-08T15:00:00+00:00\",\n        \"total_impact\": 214.94290940908502,\n        \"total_cost\": 64.94139392761343,\n        \"currency_symbol\": \"€\",\n        \"status\": \"NEW\"\n    },\n    {\n        \"id\": \"12005_EACTIVE_2020-01-09T05:00:00Z\",\n        \"model\": {\n            \"id\": \"12005_EACTIVE\"\n        },\n        \"from\": \"2020-01-09T04:00:00+00:00\",\n        \"to\": \"2020-01-09T17:00:00+00:00\",\n        \"total_impact\": 358.856572893018,\n        \"total_cost\": 98.08729442123911,\n        \"currency_symbol\": \"€\",\n        \"status\": \"NEW\"\n    },\n    {\n        \"id\": \"12005_EACTIVE_2020-01-10T03:00:00Z\",\n        \"model\": {\n            \"id\": \"12005_EACTIVE\"\n        },\n        \"from\": \"2020-01-10T02:00:00+00:00\",\n        \"to\": \"2020-01-10T14:00:00+00:00\",\n        \"total_impact\": 328.1803991783192,\n        \"total_cost\": 79.4918720283737,\n        \"currency_symbol\": \"€\",\n        \"status\": \"NEW\"\n    }\n]"}],"_postman_id":"b7863241-2a19-4524-8b23-d994a1d0490e"},{"name":"Retrieve an Anomaly","id":"13ee7921-cfb3-402f-8a24-c758656a9142","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"{{api_gateway.host}}/anomaly-detection/anomalies/{anomaly_id}","urlObject":{"path":["anomaly-detection","anomalies","{anomaly_id}"],"host":["{{api_gateway.host}}"],"query":[],"variable":[]}},"response":[{"id":"03424cb9-6cd0-4c15-a295-b2c62a384e5b","name":"Retrieve an Anomaly","originalRequest":{"method":"GET","header":[{"key":"","value":"","disabled":true}],"url":"{{api_gateway.host}}/anomaly-detection/anomalies/123456_GENERIC_2021-03-30T07:00:00Z"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"123456_GENERIC_2021-03-30T07:00:00Z\",\n  \"model\": {\n    \"id\": \"654321_GENERIC\"\n  },\n  \"from\": \"2021-03-30T05:00:00+00:00\",\n  \"to\": \"2021-03-30T05:00:00+00:00\",\n  \"total_impact\": 2.081654026631868,\n  \"total_cost\": 15.074,\n  \"currency_symbol\": \"$\",\n  \"status\": \"NEW\",\n  \"cost_threshold\": 5,\n  \"device\": {\n    \"id\": \"654321\",\n    \"name\": \"GENERIC-DEVICE\"\n  },\n  \"location\": {\n    \"id\": \"7890\",\n    \"name\": \"Generic Location\"\n  },\n  \"parameter\": \"GENERIC_PARAM\",\n  \"deployment_id\": 999,\n  \"partner_id\": 0,\n  \"date\": \"2021-03-30\",\n  \"detection_ts\": \"2021-03-30T01:08:14+00:00\",\n  \"updated_ts\": \"2021-03-30T07:29:58+00:00\",\n  \"readings\": [\n    {\n      \"ts\": \"2021-03-30T05:00:00+00:00\",\n      \"value\": 3.039,\n      \"baseline\": 0.957345973368132,\n      \"upper_quantile\": 1.6983535836461072,\n      \"lower_quantile\": 0.35082803498988857,\n      \"impact\": 2.081654026631868,\n      \"cost\": 0.45\n    }\n  ]\n}\n"}],"_postman_id":"13ee7921-cfb3-402f-8a24-c758656a9142"},{"name":"Update Anomaly","id":"35218d3a-ee6c-4a69-8032-b7705c446dd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"anomaly_id\",\n    \"updated_ts\": \"2021-03-30T07:29:58\",\n    \"is_anomaly\": true,\n    \"status\": \"NEW\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_gateway.host}}/anomaly-detection/anomalies/{anomaly_id}","urlObject":{"path":["anomaly-detection","anomalies","{anomaly_id}"],"host":["{{api_gateway.host}}"],"query":[],"variable":[]}},"response":[{"id":"435bc8df-7690-42d2-9bc8-b216c90f5c44","name":"Update Anomaly","originalRequest":{"method":"PATCH","header":[{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"id\": \"12005_EACTIVE_2020-01-07T09:00:00Z\",\n    \"updated_ts\": \"2021-03-30T07:29:58\",\n    \"is_anomaly\": false,\n    \"status\": \"NEW\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_gateway.host}}/anomaly-detection/anomalies/12005_EACTIVE_2020-01-07T09:00:00Z"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"\"12005_EACTIVE_2020-01-07T09:00:00Z\""}],"_postman_id":"35218d3a-ee6c-4a69-8032-b7705c446dd6"}],"id":"7c3e1b1d-66cd-4a4c-a90a-3641aea4a762","description":"<p>Anomalies configured in Optimise. Please note that the path is not exactly the same as the other endpoints as the /v3/ is missing from the path.</p>\n","_postman_id":"7c3e1b1d-66cd-4a4c-a90a-3641aea4a762"},{"name":"Models","item":[{"name":"List all Models","id":"9c0f02d7-6839-4a95-9c18-fdb765d249d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{api_gateway.host}}/anomaly-detection/models?location_id=32434&device_id=344344&parameter=402&order=ASC","urlObject":{"path":["anomaly-detection","models"],"host":["{{api_gateway.host}}"],"query":[{"description":{"content":"<p>[Optional] Filter by models related to this location</p>\n","type":"text/plain"},"key":"location_id","value":"32434"},{"description":{"content":"<p>[Optional] Filter by models related to this device</p>\n","type":"text/plain"},"key":"device_id","value":"344344"},{"description":{"content":"<p>[Optional] Filter by models related to this parameter</p>\n","type":"text/plain"},"key":"parameter","value":"402"},{"description":{"content":"<p>[Optional] Available values : ASC, DESC</p>\n","type":"text/plain"},"key":"order","value":"ASC"}],"variable":[]}},"response":[{"id":"879c28fc-4dd2-4796-9509-6fb023248d92","name":"List all Models by Location","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{api_gateway.host}}/anomaly-detection/models?location_id=32434&device_id=435444&parameter=402","host":["{{api_gateway.host}}"],"path":["anomaly-detection","models"],"query":[{"key":"location_id","value":"32434","description":"Filter by models related to this location"},{"key":"device_id","value":"435444","description":"Filter by models related to this device"},{"key":"parameter","value":"402","description":"Filter by models related to this parameter"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"196703_EACTIVE\"\n    },\n    {\n        \"id\": \"848723_EACTIVE\"\n    },\n    {\n        \"id\": \"849858_EACTIVE\"\n    },\n    {\n        \"id\": \"887689_EACTIVE\"\n    },\n    {\n        \"id\": \"907305_EACTIVE\"\n    },\n    {\n        \"id\": \"987237_EACTIVE\"\n    }\n]"}],"_postman_id":"9c0f02d7-6839-4a95-9c18-fdb765d249d4"}],"id":"86552b50-2294-424c-bcd9-4dd6b6e8e9cd","description":"<p>Models configured in Optimise. Please note that the path is not exactly the same as the other endpoints as the /v3/ is missing from the path.</p>\n","_postman_id":"86552b50-2294-424c-bcd9-4dd6b6e8e9cd"}],"id":"b13320ca-c80b-4211-9726-e4c5bd8eaf95","description":"<p>These two endpoints expose anomalies and models configured in Optimise. Please note that the path is not exactly the same as the other endpoints as the /v3/ is missing from the path.</p>\n","_postman_id":"b13320ca-c80b-4211-9726-e4c5bd8eaf95"}],"event":[{"listen":"prerequest","script":{"id":"3c5c48de-3e07-41a0-896c-96f48a5ecd5e","type":"text/javascript","requests":{},"exec":["switch (pm.environment.name) {","    case \"local\":","    case \"pre-internal\":","        // Clear x-security-token","        pm.request.headers.remove(\"x-dexcell-token\");","        // Insert tokens from Environment variables.","        pm.request.headers.upsert({ key: \"X-security-Deployment\", value: pm.environment.get(\"dexcell.security.deployment\") });","        pm.request.headers.upsert({ key: \"X-security-Permissions\", value: pm.environment.get(\"dexcell.security.permissions\") });","        pm.request.headers.upsert({ key: \"X-security-Application\", value: pm.environment.get(\"dexcell.security.application\") });  ","        pm.request.headers.upsert({ key: \"X-security-User\", value: pm.environment.get(\"dexcell.security.user\") });      ","        break;","    case \"pre\":","    case \"prod\":","        pm.request.headers.upsert({ key: \"X-dexcell-token\", value: pm.environment.get(\"dexcell.token\") });","        console.log(\"hola\")","        console.log(pm.environment.get(\"dexcell.token\"));","        break;","    default:","        console.log(\"Invalid environment.\");","        pm.request.headers.upsert({ key: \"X-security-Deployment\", value: \"\" });","        pm.request.headers.upsert({ key: \"X-security-Permissions\", value: \"\" });","        pm.request.headers.upsert({ key: \"x-security-token\", value: pm.environment.get(\"\") });","        pm.request.headers.upsert({ key: \"X-security-User\", value: pm.environment.get(\"\") });","        pm.request.headers.upsert({ key: \"X-security-Application\", value: pm.environment.get(\"\") });","}","",""]}},{"listen":"test","script":{"id":"5707e21e-0515-4d0b-8c4c-d79e08164528","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"value":""}]}