3 Authentication is required and the user must be an admin.
7 * `[:auth, :enforce_oauth_admin_scope_usage]` — OAuth admin scope requirement toggle.
8 If `true`, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token (client app must support admin scopes).
9 If `false` and token doesn't have admin scope(s), `is_admin` user flag grants access to admin-specific actions.
10 Note that client app needs to explicitly support admin scopes and request them when obtaining auth token.
12 ## `GET /api/pleroma/admin/users`
17 - *optional* `query`: **string** search term (e.g. nickname, domain, nickname@domain)
18 - *optional* `filters`: **string** comma-separated string of filters:
19 - `local`: only local users
20 - `external`: only external users
21 - `active`: only active users
22 - `deactivated`: only deactivated users
23 - `is_admin`: users with admin role
24 - `is_moderator`: users with moderator role
25 - *optional* `page`: **integer** page number
26 - *optional* `page_size`: **integer** number of users per page (default is `50`)
27 - *optional* `tags`: **[string]** tags list
28 - *optional* `name`: **string** user display name
29 - *optional* `email`: **string** user email
30 - Example: `https://mypleroma.org/api/pleroma/admin/users?query=john&filters=local,active&page=1&page_size=10&tags[]=some_tag&tags[]=another_tag&name=display_name&email=email@example.com`
49 "display_name": string
56 ## DEPRECATED `DELETE /api/pleroma/admin/users`
62 - Response: User’s nickname
64 ## `DELETE /api/pleroma/admin/users`
70 - Response: Array of user nicknames
83 - Response: User’s nickname
85 ## `POST /api/pleroma/admin/users/follow`
87 ### Make a user follow another user
90 - `follower`: The nickname of the follower
91 - `followed`: The nickname of the followed
95 ## `POST /api/pleroma/admin/users/unfollow`
97 ### Make a user unfollow another user
100 - `follower`: The nickname of the follower
101 - `followed`: The nickname of the followed
105 ## `PATCH /api/pleroma/admin/users/:nickname/toggle_activation`
107 ### Toggle user activation
111 - Response: User’s object
121 ## `PUT /api/pleroma/admin/users/tag`
123 ### Tag a list of users
126 - `nicknames` (array)
129 ## `DELETE /api/pleroma/admin/users/tag`
131 ### Untag a list of users
134 - `nicknames` (array)
137 ## `GET /api/pleroma/admin/users/:nickname/permission_group`
139 ### Get user user permission groups membership
146 "is_moderator": bool,
151 ## `GET /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
153 Note: Available `:permission_group` is currently moderator and admin. 404 is returned when the permission group doesn’t exist.
155 ### Get user user permission groups membership per permission group
162 "is_moderator": bool,
167 ## DEPRECATED `POST /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
169 ### Add user to permission group
173 - On failure: `{"error": "…"}`
174 - On success: JSON of the user
176 ## `POST /api/pleroma/admin/users/permission_group/:permission_group`
178 ### Add users to permission group
181 - `nicknames`: nicknames array
183 - On failure: `{"error": "…"}`
184 - On success: JSON of the user
186 ## DEPRECATED `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
188 ## `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
190 ### Remove user from permission group
194 - On failure: `{"error": "…"}`
195 - On success: JSON of the user
196 - Note: An admin cannot revoke their own admin status.
198 ## `DELETE /api/pleroma/admin/users/permission_group/:permission_group`
200 ### Remove users from permission group
203 - `nicknames`: nicknames array
205 - On failure: `{"error": "…"}`
206 - On success: JSON of the user
207 - Note: An admin cannot revoke their own admin status.
209 ## `PATCH /api/pleroma/admin/users/activate`
214 - `nicknames`: nicknames array
227 ## `PATCH /api/pleroma/admin/users/deactivate`
232 - `nicknames`: nicknames array
245 ## `GET /api/pleroma/admin/users/:nickname_or_id`
247 ### Retrive the details of a user
252 - On failure: `Not found`
253 - On success: JSON of the user
255 ## `GET /api/pleroma/admin/users/:nickname_or_id/statuses`
257 ### Retrive user's latest statuses
261 - *optional* `page_size`: number of statuses to return (default is `20`)
262 - *optional* `godmode`: `true`/`false` – allows to see private statuses
264 - On failure: `Not found`
265 - On success: JSON array of user's latest statuses
267 ## `POST /api/pleroma/admin/relay`
274 - On success: URL of the followed relay
276 ## `DELETE /api/pleroma/admin/relay`
283 - On success: URL of the unfollowed relay
285 ## `GET /api/pleroma/admin/relay`
291 - On success: JSON array of relays
293 ## `POST /api/pleroma/admin/users/invite_token`
295 ### Create an account registration invite token
298 - *optional* `max_use` (integer)
299 - *optional* `expires_at` (date string e.g. "2019-04-07")
310 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
314 ## `GET /api/pleroma/admin/users/invites`
316 ### Get a list of generated invites
332 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
339 ## `POST /api/pleroma/admin/users/revoke_invite`
341 ### Revoke invite by token
355 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
360 ## `POST /api/pleroma/admin/users/email_invite`
362 ### Sends registration invite via email
368 ## `GET /api/pleroma/admin/users/:nickname/password_reset`
370 ### Get a password reset token for a given nickname
377 "token": "base64 reset token",
378 "link": "https://pleroma.social/api/pleroma/password_reset/url-encoded-base64-token"
382 ## `PATCH /api/pleroma/admin/users/force_password_reset`
384 ### Force passord reset for a user with a given nickname
388 - Response: none (code `204`)
390 ## `GET /api/pleroma/admin/reports`
392 ### Get a list of reports
395 - *optional* `state`: **string** the state of reports. Valid values are `open`, `closed` and `resolved`
396 - *optional* `limit`: **integer** the number of records to retrieve
397 - *optional* `page`: **integer** page number
398 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
400 - On failure: 403 Forbidden error `{"error": "error_msg"}` when requested by anonymous or non-admin
401 - On success: JSON, returns a list of reports, where:
402 - `account`: the user who has been reported
403 - `actor`: the user who has sent the report
404 - `statuses`: list of statuses that have been included to the report
413 "avatar": "https://pleroma.example.org/images/avi.png",
414 "avatar_static": "https://pleroma.example.org/images/avi.png",
416 "created_at": "2019-04-23T17:32:04.000Z",
417 "display_name": "User",
420 "followers_count": 1,
421 "following_count": 1,
422 "header": "https://pleroma.example.org/images/banner.png",
423 "header_static": "https://pleroma.example.org/images/banner.png",
424 "id": "9i6dAJqSGSKMzLG2Lo",
428 "confirmation_pending": false,
429 "hide_favorites": true,
430 "hide_followers": false,
431 "hide_follows": false,
433 "is_moderator": false,
442 "tags": ["force_unlisted"],
444 "url": "https://pleroma.example.org/users/user",
449 "avatar": "https://pleroma.example.org/images/avi.png",
450 "avatar_static": "https://pleroma.example.org/images/avi.png",
452 "created_at": "2019-03-28T17:36:03.000Z",
453 "display_name": "Roger Braun",
456 "followers_count": 1,
457 "following_count": 1,
458 "header": "https://pleroma.example.org/images/banner.png",
459 "header_static": "https://pleroma.example.org/images/banner.png",
460 "id": "9hEkA5JsvAdlSrocam",
464 "confirmation_pending": false,
465 "hide_favorites": false,
466 "hide_followers": false,
467 "hide_follows": false,
469 "is_moderator": false,
478 "tags": ["force_unlisted"],
480 "url": "https://pleroma.example.org/users/lain",
483 "content": "Please delete it",
484 "created_at": "2019-04-29T19:48:15.000Z",
485 "id": "9iJGOv1j8hxuw19bcm",
496 "content": "<span class=\"h-card\"><a data-user=\"9hEkA5JsvAdlSrocam\" class=\"u-url mention\" href=\"https://pleroma.example.org/users/lain\">@<span>lain</span></a></span> click on my link <a href=\"https://www.google.com/\">https://www.google.com/</a>",
497 "created_at": "2019-04-23T19:15:47.000Z",
500 "favourites_count": 0,
501 "id": "9i6mQ9uVrrOmOime8m",
502 "in_reply_to_account_id": null,
503 "in_reply_to_id": null,
505 "media_attachments": [],
509 "id": "9hEkA5JsvAdlSrocam",
510 "url": "https://pleroma.example.org/users/lain",
515 "id": "9i6dAJqSGSKMzLG2Lo",
516 "url": "https://pleroma.example.org/users/user",
524 "text/plain": "@lain click on my link https://www.google.com/"
526 "conversation_id": 28,
527 "in_reply_to_account_acct": null,
540 "uri": "https://pleroma.example.org/objects/8717b90f-8e09-4b58-97b0-e3305472b396",
541 "url": "https://pleroma.example.org/notice/9i6mQ9uVrrOmOime8m",
542 "visibility": "direct"
550 ## `GET /api/pleroma/admin/grouped_reports`
552 ### Get a list of reports, grouped by status
555 - On success: JSON, returns a list of reports, where:
556 - `date`: date of the latest report
557 - `account`: the user who has been reported (see `/api/pleroma/admin/reports` for reference)
558 - `status`: reported status (see `/api/pleroma/admin/reports` for reference)
559 - `actors`: users who had reported this status (see `/api/pleroma/admin/reports` for reference)
560 - `reports`: reports (see `/api/pleroma/admin/reports` for reference)
565 "date": "2019-10-07T12:31:39.615149Z",
568 "actors": [{ ... }, { ... }],
574 ## `GET /api/pleroma/admin/reports/:id`
576 ### Get an individual report
582 - 403 Forbidden `{"error": "error_msg"}`
583 - 404 Not Found `"Not found"`
584 - On success: JSON, Report object (see above)
586 ## `PATCH /api/pleroma/admin/reports`
588 ### Change the state of one or multiple reports
595 `id`, // required, report id
596 `state` // required, the new state. Valid values are `open`, `closed` and `resolved`
604 - 400 Bad Request, JSON:
610 `error` // error message
615 - On success: `204`, empty response
617 ## `POST /api/pleroma/admin/reports/:id/notes`
619 ### Create report note
622 - `id`: required, report id
623 - `content`: required, the message
626 - 400 Bad Request `"Invalid parameters"` when `status` is missing
627 - On success: `204`, empty response
629 ## `POST /api/pleroma/admin/reports/:report_id/notes/:id`
631 ### Delete report note
634 - `report_id`: required, report id
635 - `id`: required, note id
638 - 400 Bad Request `"Invalid parameters"` when `status` is missing
639 - On success: `204`, empty response
641 ## `PUT /api/pleroma/admin/statuses/:id`
643 ### Change the scope of an individual reported status
647 - `sensitive`: optional, valid values are `true` or `false`
648 - `visibility`: optional, valid values are `public`, `private` and `unlisted`
651 - 400 Bad Request `"Unsupported visibility"`
652 - 403 Forbidden `{"error": "error_msg"}`
653 - 404 Not Found `"Not found"`
654 - On success: JSON, Mastodon Status entity
656 ## `DELETE /api/pleroma/admin/statuses/:id`
658 ### Delete an individual reported status
664 - 403 Forbidden `{"error": "error_msg"}`
665 - 404 Not Found `"Not found"`
666 - On success: 200 OK `{}`
668 ## `GET /api/pleroma/admin/config/migrate_from_db`
670 ### Run mix task pleroma.config migrate_from_db
672 Copies all settings from database to `config/{env}.exported_from_db.secret.exs` with deletion from the table. Where `{env}` is the environment in which `pleroma` is running.
677 - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
683 ## `GET /api/pleroma/admin/config`
685 ### Get saved config settings
687 **Only works when `:dynamic_configuration` is `true`.**
692 - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
693 - 400 Bad Request `"To use dynamic configuration migrate your settings to database."`
700 "key": "Pleroma.Upload",
707 ## `POST /api/pleroma/admin/config`
709 ### Update config settings
711 **Only works when `:dynamic_configuration` is `true`.**
713 Some modifications are necessary to save the config settings correctly:
715 - strings which start with `Pleroma.`, `Phoenix.`, `Tesla.` or strings like `Oban`, `Ueberauth` will be converted to modules;
717 "Pleroma.Upload" -> Pleroma.Upload
720 - strings starting with `:` will be converted to atoms;
722 ":pleroma" -> :pleroma
724 - objects with `tuple` key and array value will be converted to atoms;
726 {"tuple": ["string", "Pleroma.Upload", []]} -> {"string", Pleroma.Upload, []}
728 - arrays with *tuple objects* and 2 childs in array will be converted to keywords;
730 [{"tuple": [":key1", "value"]}, {"tuple": [":key2", "value"]}] -> [key1: "value", key2: "value"]
733 Most of the settings will be applied in `runtime`, this means that you don't need to restart the instance. But some settings are applied in `compile time` and require a reboot of the instance, such as:
734 - all settings inside these keys:
737 - `Pleroma.Web.Endpoint`
738 - partially settings inside these keys:
739 - `:seconds_valid` in `Pleroma.Captcha`
740 - `:proxy_remote` in `Pleroma.Upload`
741 - `:upload_limit` in `:instance`
744 - `configs` - array of config objects
745 - config object params:
746 - `group` - string (**required**)
747 - `key` - string (**required**)
748 - `value` - string, [], {} or {"tuple": []} (**required**)
749 - `delete` - true (*optional*, if setting must be deleted)
750 - `subkeys` - array of strings (*optional*, only works when `delete=true` parameter is passed, otherwise will be ignored)
752 *When a value have several nested settings, you can delete only some nested settings by passing a parameter `subkeys`, without deleting all settings by key.*
754 [subkey: val1, subkey2: val2, subkey3: val3] \\ initial value
755 {"group": ":pleroma", "key": "some_key", "delete": true, "subkeys": [":subkey", ":subkey3"]} \\ passing json for deletion
756 [subkey2: val2] \\ value after deletion
759 *Most of the settings can be partially updated through merge old values with new values, except settings value of which is list or is not keyword.*
761 Example of setting without keyword in value:
763 config :tesla, :adapter, Tesla.Adapter.Hackney
766 List of settings which have list in value:
769 {:pleroma, :ecto_repos},
772 {:cors_plug, [:max_age, :methods, :expose, :headers]},
773 {:auto_linker, :opts},
774 {:swarm, :node_blacklist}
778 *Settings without explicit key must be sended in separate config object params.*
788 {"group": ":quack", "key": ":level", "value": ":debug"},
789 {"group": ":quack", "key": ":meta", "value": [":all"]},
801 "key": "Pleroma.Upload",
803 {"tuple": [":uploader", "Pleroma.Uploaders.Local"]},
804 {"tuple": [":filters", ["Pleroma.Upload.Filter.Dedupe"]]},
805 {"tuple": [":link_name", true]},
806 {"tuple": [":proxy_remote", false]},
807 {"tuple": [":proxy_opts", [
808 {"tuple": [":redirect_on_failure", false]},
809 {"tuple": [":max_body_length", 1048576]},
810 {"tuple": [":http": [
811 {"tuple": [":follow_redirect", true]},
812 {"tuple": [":pool", ":upload"]},
816 {"tuple": [":dispatch", {
817 "tuple": ["/api/v1/streaming", "Pleroma.Web.MastodonAPI.WebsocketHandler", []]
827 - 400 Bad Request `"To use this endpoint you need to enable dynamic configuration."`
833 "key": "Pleroma.Upload",
840 ## ` GET /api/pleroma/admin/config/descriptions`
842 ### Get JSON with config descriptions.
843 Loads json generated from `config/descriptions.exs`.
850 "group": ":pleroma", // string
851 "key": "ModuleName", // string
852 "type": "group", // string or list with possible values,
853 "description": "Upload general settings", // string
856 "key": ":uploader", // string or module name `Pleroma.Upload`
858 "description": "Module which will be used for uploads",
859 "suggestions": ["module1", "module2"]
863 "type": ["list", "module"],
864 "description": "List of filter modules for uploads",
866 "module1", "module2", "module3"
873 ## `GET /api/pleroma/admin/moderation_log`
875 ### Get moderation log
878 - *optional* `page`: **integer** page number
879 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
880 - *optional* `start_date`: **datetime (ISO 8601)** filter logs by creation date, start from `start_date`. Accepts datetime in ISO 8601 format (YYYY-MM-DDThh:mm:ss), e.g. `2005-08-09T18:31:42`
881 - *optional* `end_date`: **datetime (ISO 8601)** filter logs by creation date, end by from `end_date`. Accepts datetime in ISO 8601 format (YYYY-MM-DDThh:mm:ss), e.g. 2005-08-09T18:31:42
882 - *optional* `user_id`: **integer** filter logs by actor's id
883 - *optional* `search`: **string** search logs by the log message
894 "action": "relay_follow"
896 "time": 1502812026, // timestamp
897 "message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message
902 ## `POST /api/pleroma/admin/reload_emoji`
904 ### Reload the instance's custom emoji
906 - Authentication: required
908 - Response: JSON, "ok" and 200 status
910 ## `PATCH /api/pleroma/admin/users/confirm_email`
912 ### Confirm users' emails
916 - Response: Array of user nicknames
918 ## `PATCH /api/pleroma/admin/users/resend_confirmation_email`
920 ### Resend confirmation email
924 - Response: Array of user nicknames