FYI: I figured out the endpoint that you can use in API v2 to create a mobile device:
POST https://my.tado.com/api/v2/homes/{{home_id}}/mobileDevices?username={{username}}&password={{password}}
Raw body (application/json):
{
"name": "SomeName",
"metadata": {
"device": {
"platform": "Android",
"osVersion": "13.3.7",
"model": "FakePhone1,1",
"locale": "en"
},
"tadoApp": {
"version": "0.1 (0001)"
}
},
"settings": {
"geoTrackingEnabled": false,
"onDemandLogRetrievalEnabled": false,
"pushNotifications": {
"lowBatteryReminder": false,
"awayModeReminder": false,
"homeModeReminder": false,
"openWindowReminder": false,
"energySavingsReportReminder": false
}
}
}
FYI: I figured out the endpoint that you can use in API v2 to create a mobile device:
POST https://my.tado.com/api/v2/homes/{{home_id}}/mobileDevices?username={{username}}&password={{password}}Raw body (
application/json):{ "name": "SomeName", "metadata": { "device": { "platform": "Android", "osVersion": "13.3.7", "model": "FakePhone1,1", "locale": "en" }, "tadoApp": { "version": "0.1 (0001)" } }, "settings": { "geoTrackingEnabled": false, "onDemandLogRetrievalEnabled": false, "pushNotifications": { "lowBatteryReminder": false, "awayModeReminder": false, "homeModeReminder": false, "openWindowReminder": false, "energySavingsReportReminder": false } } }