Delete Song from Album
You can delete data that has been stored in database by sending a DELETE request to remove a document using the unique id
Method : DELETE
URL : /api/album/detail?id=(album_id)&song_id=(song_id)
Response : 200 - OK
{
  "message": "Success delete song from album"
}Response : 422 - Unprocessable Content
{
  {
    "error": "Id Album required"
  },
  {
    "error": "Id Song required"
  }
}Response : 404 - Not Found
Not FoundResponse : 500 - Server Error
Internal Server Error