Skip to content

Returns the paginated list of members who hold a FluentCommunity management role, with their role set and profile attached.

The optional search term matches display name, email address or login. Members whose profile is not active are excluded.

Endpoint

  • Method: GET

  • Path: /admin/managers

  • Edition: PRO

  • Controller: ProAdminController@getManagers

  • Route source: fluent-community-pro/app/Http/Routes/api.php:10

  • Controller source: fluent-community-pro/app/Http/Controllers/ProAdminController.php

  • Requires the FluentCommunity community-admin permission (or a WordPress super admin).

  • Requires FluentCommunity Pro.

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 Admin Managers

GET
/admin/managers

Returns the paginated list of members who hold a FluentCommunity management role, with their role set and profile attached.

Controller: ProAdminController@getManagers
Route source: fluent-community-pro/app/Http/Routes/api.php:10

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Parameters

Query Parameters

search

Search read via $request->get() in getManagers().

Type
string

Responses

Successful response

application/json
JSON
{
  
"managers": {
  
  
"current_page": 0,
  
  
"data": [
  
  
  
{
  
  
  
  
"ID": 0,
  
  
  
  
"community_role": {
  
  
  
  
  
"created_at": "string",
  
  
  
  
  
"id": 0,
  
  
  
  
  
"meta_key": "string",
  
  
  
  
  
"object_id": "string",
  
  
  
  
  
"object_type": "string",
  
  
  
  
  
"updated_at": "string",
  
  
  
  
  
"value": [
  
  
  
  
  
  
"string"
  
  
  
  
  
]
  
  
  
  
},
  
  
  
  
"display_name": "string",
  
  
  
  
"photo": "string",
  
  
  
  
"user_email": "string",
  
  
  
  
"user_login": "string",
  
  
  
  
"user_nicename": "string",
  
  
  
  
"user_registered": "string",
  
  
  
  
"user_status": "string",
  
  
  
  
"user_url": "string",
  
  
  
  
"xprofile": {
  
  
  
  
  
"avatar": "string",
  
  
  
  
  
"badge": "string",
  
  
  
  
  
"created_at": "string",
  
  
  
  
  
"display_name": "string",
  
  
  
  
  
"id": "string",
  
  
  
  
  
"is_verified": 0,
  
  
  
  
  
"last_activity": "string",
  
  
  
  
  
"meta": {
  
  
  
  
  
  
"cover_photo": "string",
  
  
  
  
  
  
"social_links": {
  
  
  
  
  
  
  
"fb": "string",
  
  
  
  
  
  
  
"linkedin": "string",
  
  
  
  
  
  
  
"twitter": "string"
  
  
  
  
  
  
},
  
  
  
  
  
  
"website": "string"
  
  
  
  
  
},
  
  
  
  
  
"permalink": "string",
  
  
  
  
  
"short_description": "string",
  
  
  
  
  
"status": "string",
  
  
  
  
  
"total_points": 0,
  
  
  
  
  
"updated_at": "string",
  
  
  
  
  
"user_id": 0,
  
  
  
  
  
"username": "string"
  
  
  
  
}
  
  
  
}
  
  
],
  
  
"first_page_url": "string",
  
  
"from": 0,
  
  
"last_page": 0,
  
  
"last_page_url": "string",
  
  
"links": [
  
  
  
{
  
  
  
  
"active": true,
  
  
  
  
"label": "string",
  
  
  
  
"url": "string"
  
  
  
}
  
  
],
  
  
"next_page_url": "string",
  
  
"path": "string",
  
  
"per_page": 0,
  
  
"prev_page_url": "string",
  
  
"to": 0,
  
  
"total": 0
  
},
  
"total": 0
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation