GET api/Artist

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of artistMinDTO
NameDescriptionTypeAdditional information
Id

integer

None.

artistName

string

String length: inclusive between 0 and 100

order

integer

None.

active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "artistName": "sample string 2",
    "order": 1,
    "active": true
  },
  {
    "Id": 1,
    "artistName": "sample string 2",
    "order": 1,
    "active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfartistMinDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JTTAPI.Models">
  <artistMinDTO>
    <Id>1</Id>
    <active>true</active>
    <artistName>sample string 2</artistName>
    <order>1</order>
  </artistMinDTO>
  <artistMinDTO>
    <Id>1</Id>
    <active>true</active>
    <artistName>sample string 2</artistName>
    <order>1</order>
  </artistMinDTO>
</ArrayOfartistMinDTO>