action meraki_get_network_bluetooth_client { label: "Return a Bluetooth client" description: "Return a Bluetooth client. Bluetooth clients can be identified by their ID or their MAC." provider: meraki method: GET path: "/networks/{networkId}/bluetoothClients/{bluetoothClientId}" encoding: json input: { type: "object" properties: { bluetoothClientId: { type: "string" } connectivityHistoryTimespan: { type: "integer" } includeConnectivityHistory: { type: "boolean" } networkId: { type: "string" } } required: ["bluetoothClientId", "networkId"] additionalProperties: false } output: { type: "object" } }