This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
D_Albums
Natasa Bulatovic edited this page Jul 8, 2015
·
5 revisions
##Path /albums
##Format Response are in JSON format.
#V1 ##GET /albums/
- Retrieves a list of albums accessible to the user (authorization optional).
- Method description
- Status: Implemented
##GET /albums/:id
- Retrieves a album with this album_:id_
- Method description
- Status: Implemented
##POST /albums
- Creates a new album
- Method description
- Status: Implemented
##PUT /albums/:id
- Updates an existing album
- Method description
##PUT /albums/:id/release
- Releases an existing album
- Method description
- Status: Implemented
##PUT /albums/:id/discard
- Discards an existing album
- Method description
- Status: Implemented
##DELETE /albums/:id
- Deletes an existing album
- Method description
- Status: Implemented
##GET /albums/:id/members
- Retrieves all album members of album with specified :id
- Method description
- Status: Implemented
##DELETE /albums/:id/members
- Removes all album members of album with specified :id
- Method description
- Status: Implemented
##PUT /albums/:id/members/link
- Adds items to an album with specified :id
- Method description
- Status: Implemented
##PUT /albums/:id/members/unlink
- Removes items from an album with specified :id
- Method description
- Status: Implemented