mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-15 00:35:55 -04:00
[README] Add documentation for toggle outputs endpoint
This commit is contained in:
parent
2846287169
commit
37b7a2952b
@ -310,6 +310,7 @@ curl -X PUT "http://localhost:3689/api/player/seek?position_ms=2000"
|
|||||||
| PUT | [/api/outputs/set](#set-enabled-outputs) | Set enabled outputs |
|
| PUT | [/api/outputs/set](#set-enabled-outputs) | Set enabled outputs |
|
||||||
| GET | [/api/outputs/{id}](#get-an-output) | Get an output |
|
| GET | [/api/outputs/{id}](#get-an-output) | Get an output |
|
||||||
| PUT | [/api/outputs/{id}](#change-an-output) | Change an output (enable/disable or volume) |
|
| PUT | [/api/outputs/{id}](#change-an-output) | Change an output (enable/disable or volume) |
|
||||||
|
| PUT | [/api/outputs/{id}/toggle](#toggle-an-output) | Enable or disable an output, depending on the current state |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -484,6 +485,32 @@ On success returns the HTTP `204 No Content` success status response code.
|
|||||||
curl -X PUT "http://localhost:3689/api/outputs/0" --data "{\"selected\":true, \"volume\": 50}"
|
curl -X PUT "http://localhost:3689/api/outputs/0" --data "{\"selected\":true, \"volume\": 50}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Toggle an output
|
||||||
|
|
||||||
|
Enable or disable an output, depending on its current state
|
||||||
|
|
||||||
|
**Endpoint**
|
||||||
|
|
||||||
|
```http
|
||||||
|
PUT /api/outputs/{id}/toggle
|
||||||
|
```
|
||||||
|
|
||||||
|
**Path parameters**
|
||||||
|
|
||||||
|
| Parameter | Value |
|
||||||
|
| --------------- | -------------------- |
|
||||||
|
| id | Output id |
|
||||||
|
|
||||||
|
**Response**
|
||||||
|
|
||||||
|
On success returns the HTTP `204 No Content` success status response code.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```shell
|
||||||
|
curl -X PUT "http://localhost:3689/api/outputs/0/toggle"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Queue
|
## Queue
|
||||||
|
Loading…
x
Reference in New Issue
Block a user