GET api/GetNodes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Nodes
NameDescriptionTypeAdditional information
name

string

None.

artist

string

None.

id

string

None.

playcount

integer

None.

match

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "artist": "sample string 2",
    "id": "sample string 3",
    "playcount": 4,
    "match": 1.1
  },
  {
    "name": "sample string 1",
    "artist": "sample string 2",
    "id": "sample string 3",
    "playcount": 4,
    "match": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfNodes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Temp">
  <Nodes>
    <artist>sample string 2</artist>
    <id>sample string 3</id>
    <match>1.1</match>
    <name>sample string 1</name>
    <playcount>4</playcount>
  </Nodes>
  <Nodes>
    <artist>sample string 2</artist>
    <id>sample string 3</id>
    <match>1.1</match>
    <name>sample string 1</name>
    <playcount>4</playcount>
  </Nodes>
</ArrayOfNodes>