Delete a bookmark
delete
/api/bookmark/:idDelete a bookmark for the logged-in user.
Request
Security:
Bearer AuthRouter Params
idnumber
required
ID of the bookmark.
Response
Schema:
application/jsonBody application/json
json
// SUCCESS
{
"code": "0",
"message": "Ok"
}// SUCCESS
{
"code": "0",
"message": "Ok"
}json
// BOOKMARK_NOT_FOUND
{
"code": "201",
"message": "Bookmark not found"
}// BOOKMARK_NOT_FOUND
{
"code": "201",
"message": "Bookmark not found"
}json
// BOOKMARK_DELETE_FAILED
{
"code": "205",
"message": "Bookmark delete failed"
}// BOOKMARK_DELETE_FAILED
{
"code": "205",
"message": "Bookmark delete failed"
}