skip

🟡 Incomplete

This API's output may have additions in the future.


Skip forward a variable amount of Song's in the queue.

Inputs

FieldTypeDescription
skipunsigned integerHow many Song's to skip. If greater than the rest of the Song's in the queue, the queue will end (unless a repeat mode is on).

Outputs

null if everything went ok.

Example Request

festival-cli skip --skip 3
curl http://localhost:18425 -d '{"jsonrpc":"2.0","id":0,"method":"skip","params":{"skip":3}}'

Example Response

{
  "jsonrpc": "2.0",
  "result": null, // <--- everything went ok.
  "id": 0
}