3 Authentication is required and the user must be an admin.
5 ## `/api/pleroma/admin/users`
11 - *optional* `query`: **string** search term (e.g. nickname, domain, nickname@domain)
12 - *optional* `filters`: **string** comma-separated string of filters:
13 - `local`: only local users
14 - `external`: only external users
15 - `active`: only active users
16 - `deactivated`: only deactivated users
17 - `is_admin`: users with admin role
18 - `is_moderator`: users with moderator role
19 - *optional* `page`: **integer** page number
20 - *optional* `page_size`: **integer** number of users per page (default is `50`)
21 - *optional* `tags`: **[string]** tags list
22 - *optional* `name`: **string** user display name
23 - *optional* `email`: **string** user email
24 - 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`
43 "display_name": string
50 ## `/api/pleroma/admin/users`
57 - Response: User’s nickname
70 - Response: User’s nickname
72 ## `/api/pleroma/admin/users/follow`
73 ### Make a user follow another user
77 - `follower`: The nickname of the follower
78 - `followed`: The nickname of the followed
82 ## `/api/pleroma/admin/users/unfollow`
83 ### Make a user unfollow another user
87 - `follower`: The nickname of the follower
88 - `followed`: The nickname of the followed
92 ## `/api/pleroma/admin/users/:nickname/toggle_activation`
94 ### Toggle user activation
99 - Response: User’s object
109 ## `/api/pleroma/admin/users/tag`
111 ### Tag a list of users
115 - `nicknames` (array)
118 ### Untag a list of users
122 - `nicknames` (array)
125 ## `/api/pleroma/admin/users/:nickname/permission_group`
127 ### Get user user permission groups membership
135 "is_moderator": bool,
140 ## `/api/pleroma/admin/users/:nickname/permission_group/:permission_group`
142 Note: Available `:permission_group` is currently moderator and admin. 404 is returned when the permission group doesn’t exist.
144 ### Get user user permission groups membership per permission group
152 "is_moderator": bool,
157 ### Add user in permission group
162 - On failure: `{"error": "…"}`
163 - On success: JSON of the `user.info`
165 ### Remove user from permission group
170 - On failure: `{"error": "…"}`
171 - On success: JSON of the `user.info`
172 - Note: An admin cannot revoke their own admin status.
174 ## `/api/pleroma/admin/users/:nickname/activation_status`
176 ### Active or deactivate a user
181 - `status` BOOLEAN field, false value means deactivation.
183 ## `/api/pleroma/admin/users/:nickname_or_id`
185 ### Retrive the details of a user
191 - On failure: `Not found`
192 - On success: JSON of the user
194 ## `/api/pleroma/admin/users/:nickname_or_id/statuses`
196 ### Retrive user's latest statuses
201 - *optional* `page_size`: number of statuses to return (default is `20`)
202 - *optional* `godmode`: `true`/`false` – allows to see private statuses
204 - On failure: `Not found`
205 - On success: JSON array of user's latest statuses
207 ## `/api/pleroma/admin/relay`
215 - On success: URL of the followed relay
223 - On success: URL of the unfollowed relay
225 ## `/api/pleroma/admin/users/invite_token`
227 ### Create an account registration invite token
231 - *optional* `max_use` (integer)
232 - *optional* `expires_at` (date string e.g. "2019-04-07")
243 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
247 ## `/api/pleroma/admin/users/invites`
249 ### Get a list of generated invites
266 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
273 ## `/api/pleroma/admin/users/revoke_invite`
275 ### Revoke invite by token
290 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
296 ## `/api/pleroma/admin/users/email_invite`
298 ### Sends registration invite via email
305 ## `/api/pleroma/admin/users/:nickname/password_reset`
307 ### Get a password reset token for a given nickname
315 "token": "base64 reset token",
316 "link": "https://pleroma.social/api/pleroma/password_reset/url-encoded-base64-token"
321 ## `/api/pleroma/admin/users/:nickname/force_password_reset`
323 ### Force passord reset for a user with a given nickname
327 - Response: none (code `204`)
329 ## `/api/pleroma/admin/reports`
330 ### Get a list of reports
333 - *optional* `state`: **string** the state of reports. Valid values are `open`, `closed` and `resolved`
334 - *optional* `limit`: **integer** the number of records to retrieve
335 - *optional* `page`: **integer** page number
336 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
338 - On failure: 403 Forbidden error `{"error": "error_msg"}` when requested by anonymous or non-admin
339 - On success: JSON, returns a list of reports, where:
340 - `account`: the user who has been reported
341 - `actor`: the user who has sent the report
342 - `statuses`: list of statuses that have been included to the report
351 "avatar": "https://pleroma.example.org/images/avi.png",
352 "avatar_static": "https://pleroma.example.org/images/avi.png",
354 "created_at": "2019-04-23T17:32:04.000Z",
355 "display_name": "User",
358 "followers_count": 1,
359 "following_count": 1,
360 "header": "https://pleroma.example.org/images/banner.png",
361 "header_static": "https://pleroma.example.org/images/banner.png",
362 "id": "9i6dAJqSGSKMzLG2Lo",
366 "confirmation_pending": false,
367 "hide_favorites": true,
368 "hide_followers": false,
369 "hide_follows": false,
371 "is_moderator": false,
380 "tags": ["force_unlisted"],
382 "url": "https://pleroma.example.org/users/user",
387 "avatar": "https://pleroma.example.org/images/avi.png",
388 "avatar_static": "https://pleroma.example.org/images/avi.png",
390 "created_at": "2019-03-28T17:36:03.000Z",
391 "display_name": "Roger Braun",
394 "followers_count": 1,
395 "following_count": 1,
396 "header": "https://pleroma.example.org/images/banner.png",
397 "header_static": "https://pleroma.example.org/images/banner.png",
398 "id": "9hEkA5JsvAdlSrocam",
402 "confirmation_pending": false,
403 "hide_favorites": false,
404 "hide_followers": false,
405 "hide_follows": false,
407 "is_moderator": false,
416 "tags": ["force_unlisted"],
418 "url": "https://pleroma.example.org/users/lain",
421 "content": "Please delete it",
422 "created_at": "2019-04-29T19:48:15.000Z",
423 "id": "9iJGOv1j8hxuw19bcm",
434 "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>",
435 "created_at": "2019-04-23T19:15:47.000Z",
438 "favourites_count": 0,
439 "id": "9i6mQ9uVrrOmOime8m",
440 "in_reply_to_account_id": null,
441 "in_reply_to_id": null,
443 "media_attachments": [],
447 "id": "9hEkA5JsvAdlSrocam",
448 "url": "https://pleroma.example.org/users/lain",
453 "id": "9i6dAJqSGSKMzLG2Lo",
454 "url": "https://pleroma.example.org/users/user",
462 "text/plain": "@lain click on my link https://www.google.com/"
464 "conversation_id": 28,
465 "in_reply_to_account_acct": null,
478 "uri": "https://pleroma.example.org/objects/8717b90f-8e09-4b58-97b0-e3305472b396",
479 "url": "https://pleroma.example.org/notice/9i6mQ9uVrrOmOime8m",
480 "visibility": "direct"
488 ## `/api/pleroma/admin/reports/:id`
489 ### Get an individual report
495 - 403 Forbidden `{"error": "error_msg"}`
496 - 404 Not Found `"Not found"`
497 - On success: JSON, Report object (see above)
499 ## `/api/pleroma/admin/reports/:id`
500 ### Change the state of the report
504 - `state`: required, the new state. Valid values are `open`, `closed` and `resolved`
507 - 400 Bad Request `"Unsupported state"`
508 - 403 Forbidden `{"error": "error_msg"}`
509 - 404 Not Found `"Not found"`
510 - On success: JSON, Report object (see above)
512 ## `/api/pleroma/admin/reports/:id/respond`
513 ### Respond to a report
517 - `status`: required, the message
520 - 400 Bad Request `"Invalid parameters"` when `status` is missing
521 - 403 Forbidden `{"error": "error_msg"}`
522 - 404 Not Found `"Not found"`
523 - On success: JSON, created Mastodon Status entity
534 "content": "Your claim is going to be closed",
535 "created_at": "2019-05-11T17:13:03.000Z",
538 "favourites_count": 0,
539 "id": "9ihuiSL1405I65TmEq",
540 "in_reply_to_account_id": null,
541 "in_reply_to_id": null,
543 "media_attachments": [],
547 "id": "9i6dAJqSGSKMzLG2Lo",
548 "url": "https://pleroma.example.org/users/user",
553 "id": "9hEkA5JsvAdlSrocam",
554 "url": "https://pleroma.example.org/users/admin",
562 "text/plain": "Your claim is going to be closed"
564 "conversation_id": 35,
565 "in_reply_to_account_acct": null,
578 "uri": "https://pleroma.example.org/objects/cab0836d-9814-46cd-a0ea-529da9db5fcb",
579 "url": "https://pleroma.example.org/notice/9ihuiSL1405I65TmEq",
580 "visibility": "direct"
584 ## `/api/pleroma/admin/statuses/:id`
585 ### Change the scope of an individual reported status
589 - `sensitive`: optional, valid values are `true` or `false`
590 - `visibility`: optional, valid values are `public`, `private` and `unlisted`
593 - 400 Bad Request `"Unsupported visibility"`
594 - 403 Forbidden `{"error": "error_msg"}`
595 - 404 Not Found `"Not found"`
596 - On success: JSON, Mastodon Status entity
598 ## `/api/pleroma/admin/statuses/:id`
599 ### Delete an individual reported status
605 - 403 Forbidden `{"error": "error_msg"}`
606 - 404 Not Found `"Not found"`
607 - On success: 200 OK `{}`
610 ## `/api/pleroma/admin/config/migrate_to_db`
611 ### Run mix task pleroma.config migrate_to_db
612 Copy settings on key `:pleroma` to DB.
621 ## `/api/pleroma/admin/config/migrate_from_db`
622 ### Run mix task pleroma.config migrate_from_db
623 Copy all settings from DB to `config/prod.exported_from_db.secret.exs` with deletion from DB.
632 ## `/api/pleroma/admin/config`
633 ### List config settings
634 List config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
644 "key": string or string with leading `:` for atoms,
645 "value": string or {} or [] or {"tuple": []}
651 ## `/api/pleroma/admin/config`
652 ### Update config settings
653 Updating config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
654 Module name can be passed as string, which starts with `Pleroma`, e.g. `"Pleroma.Upload"`.
655 Atom keys and values can be passed with `:` in the beginning, e.g. `":upload"`.
656 Tuples can be passed as `{"tuple": ["first_val", Pleroma.Module, []]}`.
657 `{"tuple": ["some_string", "Pleroma.Some.Module", []]}` will be converted to `{"some_string", Pleroma.Some.Module, []}`.
658 Keywords can be passed as lists with 2 child tuples, e.g.
659 `[{"tuple": ["first_val", Pleroma.Module]}, {"tuple": ["second_val", true]}]`.
661 If value contains list of settings `[subkey: val1, subkey2: val2, subkey3: val3]`, it's possible to remove only subkeys instead of all settings passing `subkeys` parameter. E.g.:
662 {"group": "pleroma", "key": "some_key", "delete": "true", "subkeys": [":subkey", ":subkey3"]}.
664 Compile time settings (need instance reboot):
665 - all settings by this keys:
668 - `Pleroma.Web.Endpoint`
671 - `Pleroma.Captcha` -> `:seconds_valid`
672 - `Pleroma.Upload` -> `:proxy_remote`
673 - `:instance` -> `:upload_limit`
679 - `key` (string or string with leading `:` for atoms)
680 - `value` (string, [], {} or {"tuple": []})
681 - `delete` = true (optional, if parameter must be deleted)
682 - `subkeys` [(string with leading `:` for atoms)] (optional, works only if `delete=true` parameter is passed, otherwise will be ignored)
692 "key": "Pleroma.Upload",
694 {"tuple": [":uploader", "Pleroma.Uploaders.Local"]},
695 {"tuple": [":filters", ["Pleroma.Upload.Filter.Dedupe"]]},
696 {"tuple": [":link_name", true]},
697 {"tuple": [":proxy_remote", false]},
698 {"tuple": [":proxy_opts", [
699 {"tuple": [":redirect_on_failure", false]},
700 {"tuple": [":max_body_length", 1048576]},
701 {"tuple": [":http": [
702 {"tuple": [":follow_redirect", true]},
703 {"tuple": [":pool", ":upload"]},
707 {"tuple": [":dispatch", {
708 "tuple": ["/api/v1/streaming", "Pleroma.Web.MastodonAPI.WebsocketHandler", []]
723 "key": string or string with leading `:` for atoms,
724 "value": string or {} or [] or {"tuple": []}
730 ## `/api/pleroma/admin/moderation_log`
731 ### Get moderation log
734 - *optional* `page`: **integer** page number
735 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
736 - *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`
737 - *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
738 - *optional* `user_id`: **integer** filter logs by actor's id
739 - *optional* `search`: **string** search logs by the log message
750 "action": "relay_follow"
752 "time": 1502812026, // timestamp
753 "message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message
758 ## `POST /api/pleroma/admin/reload_emoji`
759 ### Reload the instance's custom emoji
761 * Authentication: required
763 * Response: JSON, "ok" and 200 status