How-To: Remote Control the Robin
Robin Tech Note
Command:
curl -u admin:<password> “http://<address>/api/v1/mute_set?mute=off”
Goal:
disable the audio mute (all sound will be on)
Answer:
{
“rv” : {
“mute”:”off”
},
“ok” : true
}
Command:
curl -u admin:<password> “http://<address>/api/v1/mute_get”
Goal:
retrieve the audio mute status
Answer:
{
“rv” : {
“mute”:”off” / :”all_audio” / :”tones_all” / :”tones_incoming”
},
“ok” : true
}