pause
Pause playback on a specified or active Sonos device. Returns the device's state, including volume, track info, and playback status, for immediate confirmation.
Instructions
Pause playback on a Sonos device.
Args: name: The name of the device to pause. If None, uses the current device.
Returns: Dict[str, Any]: The device's state after pausing, 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": "pauseArguments",
"type": "object"
}