<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thema "Betreff: Cannot get installationId, gatewaySerial and deviceId" in The Viessmann API</title>
    <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416045#M2047</link>
    <description>&lt;P&gt;I'm also having problems with the deviceId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is working:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://api.viessmann.com/iot/v1/equipment/installations/" target="_blank" rel="noopener"&gt;https://api.viessmann.com/iot/v1/equipment/installations/&lt;/A&gt;&lt;SPAN class=""&gt;{{installationID}}&lt;/SPAN&gt;/gateways/&lt;SPAN class=""&gt;{{gatewaySerial}}&lt;/SPAN&gt;/devices&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The deviceID result is like&lt;/P&gt;&lt;P&gt;id "gateway" or "&lt;SPAN&gt;&lt;SPAN class=""&gt;"RoomControl-1" or "HeatDemandControl"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;but these deviceIDs don'T work with &lt;SPAN class=""&gt;&lt;A href="https://api.viessmann.com/iot/v2/features/installations/" target="_blank" rel="noopener"&gt;https://api.viessmann.com/iot/v2/features/installations/&lt;/A&gt;&lt;SPAN class=""&gt;{{installationId}}&lt;/SPAN&gt;/gateways/&lt;SPAN class=""&gt;{{gatewaySerial}}&lt;/SPAN&gt;/devices/&lt;SPAN class=""&gt;{{deviceId}}&lt;/SPAN&gt;/features&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;viErrorId "req-e76ed613ba894480bca7cf2fe47a1a4d"&lt;BR /&gt;statusCode 502&lt;BR /&gt;errorType "EVEREST_ERROR"&lt;BR /&gt;message "EVEREST_ERROR"&lt;BR /&gt;extendedPayload&lt;BR /&gt;code "404"&lt;BR /&gt;reason "Client does not exist"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help, thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jan 2024 08:32:22 GMT</pubDate>
    <dc:creator>Quantum</dc:creator>
    <dc:date>2024-01-25T08:32:22Z</dc:date>
    <item>
      <title>Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/194464#M349</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;at&amp;nbsp;&lt;A href="https://developer.viessmann.com/en/doc/iot/overview" target="_self"&gt;https://developer.viessmann.com/en/doc/iot/overview&lt;/A&gt;&amp;nbsp;it is said that a simple GET request to&amp;nbsp;&lt;A href="https://api.viessmann.com/iot/v1/equipment/installations" target="_self"&gt;https://api.viessmann.com/iot/v1/equipment/installations&lt;/A&gt;&amp;nbsp;should return the installationId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Everything I get is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{"data":[],"cursor":{"next":""}}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To query the API endpoint I'm using the small PHP script from&amp;nbsp;&lt;A href="https://www.viessmann-community.com/t5/Getting-started-programming-with/To-help-get-started/td-p/181347" target="_self"&gt;https://www.viessmann-community.com/t5/Getting-started-programming-with/To-help-get-started/td-p/181347&lt;/A&gt;&amp;nbsp;which shows me my user details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply added the following at the end of the PHP script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;$url = "https://api.viessmann.com/iot/v1/equipment/installations/";

$curloptions = array(
    CURLOPT_URL =&amp;gt; $url,
    CURLOPT_HTTPHEADER =&amp;gt; $header,
    CURLOPT_SSL_VERIFYPEER =&amp;gt; false,
    CURLOPT_RETURNTRANSFER =&amp;gt; true,
    //CURLOPT_HTTPAUTH =&amp;gt; CURLAUTH_BASIC,
);

// Data Curl Call 
//
$curl = curl_init();
curl_setopt_array($curl, $curloptions);
$response = curl_exec($curl);
curl_close($curl);

echo($response);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 09:07:18 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/194464#M349</guid>
      <dc:creator>MrAnderson</dc:creator>
      <dc:date>2021-11-04T09:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/195779#M366</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.viessmann.de/t5/user/viewprofilepage/user-id/30364"&gt;@MrAnderson&lt;/a&gt; ,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;This topic is related to the issue you stated in this thread right?&amp;nbsp;&lt;A href="https://www.viessmann-community.com/t5/Getting-started-programming-with/Some-code-to-receive-info-from-the-Viessmann-boiler-v0-2/m-p/195577/emcs_t/S2h8ZW1haWx8Ym9hcmRfc3Vic2NyaXB0aW9ufEtWUVNJUjZBRkJIMEdFfDE5NTU3N3xTVUJTQ1JJUFRJT05TfGhL#M117" target="_blank"&gt;https://www.viessmann-community.com/t5/Getting-started-programming-with/Some-code-to-receive-info-from-the-Viessmann-boiler-v0-2/m-p/195577/emcs_t/S2h8ZW1haWx8Ym9hcmRfc3Vic2NyaXB0aW9ufEtWUVNJUjZBRkJIMEdFfDE5NTU3N3xTVUJTQ1JJUFRJT05TfGhL#M117&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Solution was that the account you are using has no installation registered.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 12:47:37 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/195779#M366</guid>
      <dc:creator>CustomerCareMichael</dc:creator>
      <dc:date>2021-11-09T12:47:37Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/256758#M896</link>
      <description>&lt;P&gt;Hi, I get the same error message. But I do not use ViCare (Vitovalor 300p), only Vitodata300 and Vitotrol. Is there anyting else required to register my installation for data retrieval via the API?!&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 22:04:13 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/256758#M896</guid>
      <dc:creator>snigge</dc:creator>
      <dc:date>2022-09-12T22:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/257157#M899</link>
      <description>&lt;P&gt;&lt;a href="https://community.viessmann.de/t5/user/viewprofilepage/user-id/19448"&gt;@snigge&lt;/a&gt; for using the API for your device, your system must be connected through a &lt;A href="https://www.viessmann.de/de/produkte/steuerung-und-konnektivitaet/vitoconnect.html" target="_blank"&gt;Vitoconnect&lt;/A&gt; or using the connectivity inside the device (if available) and be registered using the ViCare app. Vitodata is unfortunately not compatible with the API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 08:02:43 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/257157#M899</guid>
      <dc:creator>CustomerCareMichael</dc:creator>
      <dc:date>2022-09-14T08:02:43Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/414650#M2038</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I used this address to get installationId, gatewaySerial and deviceId:&lt;/P&gt;&lt;P&gt;&lt;A href="https://api.viessmann.com/iot/v1/equipment/installations?includeGateways=true" target="_blank" rel="noopener"&gt;https://api.viessmann.com/iot/v1/equipment/installations?includeGateways=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What I get is JSON type data, such as installationId and gatewaySerial but there is no deviceId. &lt;span class="lia-unicode-emoji" title=":enttäuschtes_Gesicht:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Any advice?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2024 23:17:05 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/414650#M2038</guid>
      <dc:creator>Robinson</dc:creator>
      <dc:date>2024-01-21T23:17:05Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416045#M2047</link>
      <description>&lt;P&gt;I'm also having problems with the deviceId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is working:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://api.viessmann.com/iot/v1/equipment/installations/" target="_blank" rel="noopener"&gt;https://api.viessmann.com/iot/v1/equipment/installations/&lt;/A&gt;&lt;SPAN class=""&gt;{{installationID}}&lt;/SPAN&gt;/gateways/&lt;SPAN class=""&gt;{{gatewaySerial}}&lt;/SPAN&gt;/devices&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The deviceID result is like&lt;/P&gt;&lt;P&gt;id "gateway" or "&lt;SPAN&gt;&lt;SPAN class=""&gt;"RoomControl-1" or "HeatDemandControl"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;but these deviceIDs don'T work with &lt;SPAN class=""&gt;&lt;A href="https://api.viessmann.com/iot/v2/features/installations/" target="_blank" rel="noopener"&gt;https://api.viessmann.com/iot/v2/features/installations/&lt;/A&gt;&lt;SPAN class=""&gt;{{installationId}}&lt;/SPAN&gt;/gateways/&lt;SPAN class=""&gt;{{gatewaySerial}}&lt;/SPAN&gt;/devices/&lt;SPAN class=""&gt;{{deviceId}}&lt;/SPAN&gt;/features&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;viErrorId "req-e76ed613ba894480bca7cf2fe47a1a4d"&lt;BR /&gt;statusCode 502&lt;BR /&gt;errorType "EVEREST_ERROR"&lt;BR /&gt;message "EVEREST_ERROR"&lt;BR /&gt;extendedPayload&lt;BR /&gt;code "404"&lt;BR /&gt;reason "Client does not exist"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 08:32:22 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416045#M2047</guid>
      <dc:creator>Quantum</dc:creator>
      <dc:date>2024-01-25T08:32:22Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416106#M2048</link>
      <description>&lt;P&gt;Try deviceId=0&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 10:35:04 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416106#M2048</guid>
      <dc:creator>Robinson</dc:creator>
      <dc:date>2024-01-25T10:35:04Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416210#M2049</link>
      <description>&lt;P&gt;Hello Robinson. Error also with deviceId 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;viErrorId "req-fc7490aca1574c12a28a959aa1de2ed3"&lt;BR /&gt;statusCode 502&lt;BR /&gt;errorType "EVEREST_ERROR"&lt;BR /&gt;message "EVEREST_ERROR"&lt;BR /&gt;extendedPayload&lt;BR /&gt;code "404"&lt;BR /&gt;reason "Client does not exist"&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 15:22:45 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416210#M2049</guid>
      <dc:creator>Quantum</dc:creator>
      <dc:date>2024-01-25T15:22:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416232#M2050</link>
      <description>&lt;P&gt;I think you are making the same error as me.&lt;/P&gt;&lt;P&gt;You can't just put this addrss in your browser. It won't work.&lt;/P&gt;&lt;P&gt;You need to use something like POSTMAN.&lt;/P&gt;&lt;P&gt;I have to learn it myself too.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 16:09:13 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/416232#M2050</guid>
      <dc:creator>Robinson</dc:creator>
      <dc:date>2024-01-25T16:09:13Z</dc:date>
    </item>
    <item>
      <title>Betreff: Cannot get installationId, gatewaySerial and deviceId</title>
      <link>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/417072#M2057</link>
      <description>&lt;P&gt;Thank you, Robinson.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2024 15:04:24 GMT</pubDate>
      <guid>https://community.viessmann.de/t5/The-Viessmann-API/Cannot-get-installationId-gatewaySerial-and-deviceId/m-p/417072#M2057</guid>
      <dc:creator>Quantum</dc:creator>
      <dc:date>2024-01-28T15:04:24Z</dc:date>
    </item>
  </channel>
</rss>

