User Favourites
Use KeePass with Pleasant Password Server
Ability to access, add, and remove favourited entries are now available through the V5 REST API.
GET <url>/api/v5/rest/UserFavourites
Example Request
http://localhost:10000/api/v5/rest/UserFavourites
Example Result
HTTP 200
[
    {
        "CustomUserFields": {},
        "CustomApplicationFields": {},
        "Tags": [],
        "HasModifyEntriesAccess": true,
        "HasViewEntryContentsAccess": true,
        "CommentPrompts": {
            "AskForCommentOnViewPassword": false,
            "AskForCommentOnViewOffline": false,
            "AskForCommentOnModifyEntries": false,
            "AskForCommentOnMoveEntries": false,
            "AskForCommentOnMoveFolders": false,
            "AskForCommentOnModifyFolders": false
        },
        "Id": "13caaa57-2186-467e-b107-bc29f8c3533e",
        "Name": "ABC",
        "Username": "ABC",
        "Password": null,
        "Url": "",
        "Notes": "",
        "GroupId": "c04f874b-90f7-4b33-97d0-a92e011fb712",
        "Created": "2018-08-08T09:15:17-06:00",
        "Modified": "2018-08-08T09:25:45-06:00",
        "Expires": null
    }
]
POST <url>/api/v5/rest/UserFavourites/{credentialId:guid}
Example Request
http://localhost:10000/api/v5/rest/UserFavourites/13caaa57-2186-467e-b107-bc29f8c3533e
Example Result
HTTP 204
DELETE <url>/api/v5/rest/UserFavourites/{credentialId:guid}
Example Request
http://localhost:10000/api/v5/rest/UserFavourites/13caaa57-2186-467e-b107-bc29f8c3533e
Example Result
HTTP 204
