-
Notifications
You must be signed in to change notification settings - Fork 0
Artist
Juan Dalmasso edited this page Mar 21, 2017
·
3 revisions
GET /artist
*HTTP 200 OK*
[
{
"id": 1,
"name": "Patricio Rey y sus Redonditos de Ricota",
"picture": "yogz789ern76r.png",
"relatedNames": "redondos indio"
},
{
"id": 2,
"name": "Soda Stereo",
"picture": "H73dixrn76r.png",
"relatedNames": "cerati"
}
]
POST /artist
{
"name": "Sumo",
"picture": "j5opdisd8w.png",
"relatedNames": "luca prodan divididos pelotas"
}
*HTTP 200 OK*
{
"id": 3,
"name": "Sumo",
"picture": "j5opdisd8w.png",
"relatedNames": "luca prodan divididos pelotas"
}
DELETE /artist/3
*HTTP 200 OK*
{
"id": null
"name": "Sumo",
"picture": "j5opdisd8w.png",
"relatedNames": "luca prodan divididos pelotas"
}