GET api/GetSongsList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SongModel
NameDescriptionTypeAdditional information
SONG_ID

integer

None.

PARENT_SONG

string

None.

PARENT_SONG_ARTIST

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SONG_ID": 1,
    "PARENT_SONG": "sample string 2",
    "PARENT_SONG_ARTIST": "sample string 3"
  },
  {
    "SONG_ID": 1,
    "PARENT_SONG": "sample string 2",
    "PARENT_SONG_ARTIST": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSongModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Temp">
  <SongModel>
    <PARENT_SONG>sample string 2</PARENT_SONG>
    <PARENT_SONG_ARTIST>sample string 3</PARENT_SONG_ARTIST>
    <SONG_ID>1</SONG_ID>
  </SongModel>
  <SongModel>
    <PARENT_SONG>sample string 2</PARENT_SONG>
    <PARENT_SONG_ARTIST>sample string 3</PARENT_SONG_ARTIST>
    <SONG_ID>1</SONG_ID>
  </SongModel>
</ArrayOfSongModel>