action meraki_get_network_bluetooth_settings { label: "Return the Bluetooth settings for a network. Bluetooth settings must be enabled on the network." description: "Return the Bluetooth settings for a network. Bluetooth settings must be enabled on the network." provider: meraki method: GET path: "/networks/{networkId}/bluetoothSettings" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "object" properties: { advertisingEnabled: { type: "boolean" description: "Whether APs will advertise beacons." } major: { type: "integer" description: "The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode." } majorMinorAssignmentMode: { type: "string" description: "The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')" } minor: { type: "integer" description: "The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode." } scanningEnabled: { type: "boolean" description: "Whether APs will scan for Bluetooth enabled clients." } uuid: { type: "string" description: "The UUID to be used in the beacon identifier." } } } }