getSoundSourcePositioningStatus method

Future<Map<String, dynamic>> getSoundSourcePositioningStatus(
  1. String deviceSerial
)

Implementation

Future<Map<String, dynamic>> getSoundSourcePositioningStatus(
  String deviceSerial,
) async {
  // Note: API doc for GET shows /api/lapp/device/scene/switch/status for SSL too, which seems like a doc error.
  // Assuming it should be /api/lapp/device/ssl/switch/status as per the SET endpoint and section name.
  return _client.post('/api/lapp/device/ssl/switch/status', {
    'deviceSerial': deviceSerial,
  });
}