Returns a page of the published posts the current user has bookmarked, newest first and transformed for display.
Supports topic_slug, search, order_by_type and a type filter on the post type. Pagination behaves like the main feed: total is an estimate and has_more means the page came back full.
Endpoint
Method:
GETPath:
/feeds/bookmarksEdition: Core
Controller:
FeedsController@getBookmarksRoute source:
fluent-community/app/Http/Routes/api.php:48Controller source:
fluent-community/app/Http/Controllers/FeedsController.phpRequires a signed-in user; bookmarks are per-user and never shared.
Live sample
The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.
GET List Bookmarks
Returns a page of the published posts the current user has bookmarked, newest first and transformed for display.
Controller: FeedsController@getBookmarks
Route source: fluent-community/app/Http/Routes/api.php:48
Authorizations
WordPress Application Passwords — use Basic auth with username:application_password.
Parameters
Query Parameters
Topic Slug read via $request->getSafe() in getBookmarks().
Order By Type read via $request->getSafe() in getBookmarks().
Search read via $request->getSafe() in getBookmarks().
Type read via $request->get() in getBookmarks().
Per Page read via $request->get() in getBookmarks().
10Page read via $request->get() in getBookmarks().
1Responses
Successful response