-
Notifications
You must be signed in to change notification settings - Fork 4
DeletePlaylistSong
Removes a Song from a Playlist. Only allowed if the requestor is the Playlist owner.
URL: /v1/playlists/{playlistId}/songs/{songId}
Method: DELETE
Path Parameters:
Parameter | Type | Description |
---|---|---|
playlistId | string | UUID of the Playlist to remove the Song from. |
songId | string | UUID of the Song to remove. |
Query Parameters: None
Headers:
Authorization: Bearer {accessToken}
Code: 204 NO CONTENT
Headers: None
Code: 401 UNAUTHORIZED
Condition: If {accessToken}
is invalid or expired.
Code: 403 FORBIDDEN
Condition: If the requestor is not the Playlist owner.
Headers:
Content-Type: application/json
Content example:
{
"code": 403,
"description": "Forbidden",
"cause": "operation allowed only by owner"
}
Code: 404 NOT FOUND
Condition: If the specified Playlist and/or Song is not found.
Headers:
Content-Type: application/json
Content example:
{
"code": 404,
"description": "Not Found",
"cause": "Entity PlaylistEntity, id=d0907e3d-a9a7-43b1-93dc-f3b0ee929021 not found in the database"
}
Code: 422 UNPROCESSABLE ENTITY
Condition: If {playlistId}
an/or {songId}
are malformed.
Headers:
Content-Type: application/json
Content example:
{
"code": 422,
"description": "Unprocessable Entity",
"cause": "Invalid UUID string: 123456789"
}
Post Playlist (Add New Playlist)