Last active
November 1, 2021 13:55
-
-
Save lukaskukacka/08a3c8cf20d50ccc522a71ef9ad952ee to your computer and use it in GitHub Desktop.
Sonoff DIY - Protocol 2.0 - Postman collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": [], | |
"info": { | |
"name": "Sonoff DIY - OTA flash", | |
"_postman_id": "74f654fd-c33f-ab82-e3cc-45fc64c3db57", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Enable DIY mode", | |
"request": { | |
"url": "http://{{baseURL}}/zeroconf/ota_unlock", | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\n \"deviceid\": \"\",\n\t\"data\": { }\n}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "Get Device Info", | |
"request": { | |
"url": "http://{{baseURL}}/zeroconf/info", | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\n \"deviceid\": \"\",\n\t\"data\": { }\n}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "Upload firmware", | |
"request": { | |
"url": "http://{{baseURL}}/zeroconf/ota_flash", | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\n\t\"deviceid\": \"\",\n\t\"data\": {\n\t\t\"downloadUrl\": \"http://FILE_SERVER_IP:8000/files/tasmota-lite.bin\",\n\t\t\"sha256sum\": \"FIRMWARE_SHA256_HASH\"\n\t}\n}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "Switch state", | |
"request": { | |
"url": "http://{{baseURL}}/zeroconf/switch", | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\n \"deviceid\": \"\",\n \"data\": {\n \"switch\": \"on\"\n} }" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment