Beta Features
Enable Secret Octoblu Features
To enable secret beta features, you will need to your user UUID and Token. These can be found on your profile page.
Configure Events in Designer
This will allow you to respond to config events and update the config of devices in your flow.
curl --user <uuid>:<token> -X PUT -H 'Content-Type: application/json' https://meshblu-http.octoblu.com/devices/<uuid> -d '{"$set":{"octoblu.beta.configurationFlow": true}}'
$basicAuth = Convert.ToBase64String(Encoding.GetEncoding("ISO-8859-1").GetBytes("<uuid>:<token>"));
Invoke-WebRequest -Uri https://meshblu-http.octoblu.com/v2/devices/<uuid> -ContentType "application/json" -Method PUT -Headers @{Authorization=("Basic {0}" -f $basicAuth)} -Body '{"$set":{"octoblu.beta.configurationFlow": true}}'
Updated less than a minute ago
