POST api/Jukebox/GetStatus

Documentation for 'GetStatus'.

Request Information

Parameters

NameDescriptionAdditional information
obj
Documentation for 'obj'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedMediaTypeFormatterTracer' to write type 'Object'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Changed": true,
  "IsPlaying": true,
  "Playlist": null,
  "Volume": 3,
  "IsShuffle": true,
  "StatusCode": "sample string 5",
  "CurrentSong": {}
}

application/xml, text/xml

Sample:
<JukeboxStateViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMCT.API.ViewModels">
  <Changed>true</Changed>
  <CurrentSong />
  <IsPlaying>true</IsPlaying>
  <IsShuffle>true</IsShuffle>
  <Playlist i:nil="true" />
  <StatusCode>sample string 5</StatusCode>
  <Volume>3</Volume>
</JukeboxStateViewModel>