Updated Album (markdown)

Kun Deng
2019-07-18 20:06:10 -04:00
parent de28285c9e
commit 015eab0869
+43 -1
@@ -1 +1,43 @@
## Album ### Retrieve album metadata
**URI**: https://icarus-demo.com/api/v1/album/2
**Method**: Get
**Content type**: application/json
**Authorization**: Bearer ``token``
**Response body**:
```Json
{
"id" : 2,
"title" : "Damn",
"album_artist" : "Kendrick Lamar",
"song_count" : 1
}
```
### Retrieve all album metadata
**URI**: https://icarus-demo.com/api/v1/album/
**Method**: Get
**Content type**: application/json
**Authorization**: Bearer ``token``
**Response body**:
```Json
[
{
"id" : 1,
"title" : "I Thought I Was an Alien",
"album_artist" : "Soko",
"song_count" : 1
},
{
"id" : 2,
"title" : "Damn",
"album_artist" : "Kendrick Lamar",
"song_count" : 1
},
{
"id" : 3,
"title" : "Giving Myself To You",
"album_artist" : "Gerald Albright",
"song_count" : 1
}
]
```