stop
Halt playback on a specified Sonos device or the currently active one. Returns the updated device state, including volume, playback status, and track information.
Instructions
Stop playback on a Sonos device.
Args: name: The name of the device to stop. If None, uses the current device.
Returns: Dict[str, Any]: The device's state after stopping, including name, volume, state, and track info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
}
},
"title": "stopArguments",
"type": "object"
}