Merge branch 'develop' into feature/reports-groups-and-multiple-state-update
[akkoma] / docs / API / admin_api.md
1 # Admin API
2
3 Authentication is required and the user must be an admin.
4
5 ## `GET /api/pleroma/admin/users`
6
7 ### List users
8
9 - Query Params:
10 - *optional* `query`: **string** search term (e.g. nickname, domain, nickname@domain)
11 - *optional* `filters`: **string** comma-separated string of filters:
12 - `local`: only local users
13 - `external`: only external users
14 - `active`: only active users
15 - `deactivated`: only deactivated users
16 - `is_admin`: users with admin role
17 - `is_moderator`: users with moderator role
18 - *optional* `page`: **integer** page number
19 - *optional* `page_size`: **integer** number of users per page (default is `50`)
20 - *optional* `tags`: **[string]** tags list
21 - *optional* `name`: **string** user display name
22 - *optional* `email`: **string** user email
23 - 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`
24 - Response:
25
26 ```json
27 {
28 "page_size": integer,
29 "count": integer,
30 "users": [
31 {
32 "deactivated": bool,
33 "id": integer,
34 "nickname": string,
35 "roles": {
36 "admin": bool,
37 "moderator": bool
38 },
39 "local": bool,
40 "tags": array,
41 "avatar": string,
42 "display_name": string
43 },
44 ...
45 ]
46 }
47 ```
48
49 ## DEPRECATED `DELETE /api/pleroma/admin/users`
50
51 ### Remove a user
52
53 - Params:
54 - `nickname`
55 - Response: User’s nickname
56
57 ## `DELETE /api/pleroma/admin/users`
58
59 ### Remove a user
60
61 - Params:
62 - `nicknames`
63 - Response: Array of user nicknames
64
65 ### Create a user
66
67 - Method: `POST`
68 - Params:
69 `users`: [
70 {
71 `nickname`,
72 `email`,
73 `password`
74 }
75 ]
76 - Response: User’s nickname
77
78 ## `POST /api/pleroma/admin/users/follow`
79
80 ### Make a user follow another user
81
82 - Params:
83 - `follower`: The nickname of the follower
84 - `followed`: The nickname of the followed
85 - Response:
86 - "ok"
87
88 ## `POST /api/pleroma/admin/users/unfollow`
89
90 ### Make a user unfollow another user
91
92 - Params:
93 - `follower`: The nickname of the follower
94 - `followed`: The nickname of the followed
95 - Response:
96 - "ok"
97
98 ## `PATCH /api/pleroma/admin/users/:nickname/toggle_activation`
99
100 ### Toggle user activation
101
102 - Params:
103 - `nickname`
104 - Response: User’s object
105
106 ```json
107 {
108 "deactivated": bool,
109 "id": integer,
110 "nickname": string
111 }
112 ```
113
114 ## `PUT /api/pleroma/admin/users/tag`
115
116 ### Tag a list of users
117
118 - Params:
119 - `nicknames` (array)
120 - `tags` (array)
121
122 ## `DELETE /api/pleroma/admin/users/tag`
123
124 ### Untag a list of users
125
126 - Params:
127 - `nicknames` (array)
128 - `tags` (array)
129
130 ## `GET /api/pleroma/admin/users/:nickname/permission_group`
131
132 ### Get user user permission groups membership
133
134 - Params: none
135 - Response:
136
137 ```json
138 {
139 "is_moderator": bool,
140 "is_admin": bool
141 }
142 ```
143
144 ## `GET /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
145
146 Note: Available `:permission_group` is currently moderator and admin. 404 is returned when the permission group doesn’t exist.
147
148 ### Get user user permission groups membership per permission group
149
150 - Params: none
151 - Response:
152
153 ```json
154 {
155 "is_moderator": bool,
156 "is_admin": bool
157 }
158 ```
159
160 ## DEPRECATED `POST /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
161
162 ### Add user to permission group
163
164 - Params: none
165 - Response:
166 - On failure: `{"error": "…"}`
167 - On success: JSON of the user
168
169 ## `POST /api/pleroma/admin/users/permission_group/:permission_group`
170
171 ### Add users to permission group
172
173 - Params:
174 - `nicknames`: nicknames array
175 - Response:
176 - On failure: `{"error": "…"}`
177 - On success: JSON of the user
178
179 ## DEPRECATED `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
180
181 ## `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
182
183 ### Remove user from permission group
184
185 - Params: none
186 - Response:
187 - On failure: `{"error": "…"}`
188 - On success: JSON of the user
189 - Note: An admin cannot revoke their own admin status.
190
191 ## `DELETE /api/pleroma/admin/users/permission_group/:permission_group`
192
193 ### Remove users from permission group
194
195 - Params:
196 - `nicknames`: nicknames array
197 - Response:
198 - On failure: `{"error": "…"}`
199 - On success: JSON of the user
200 - Note: An admin cannot revoke their own admin status.
201
202 ## `PATCH /api/pleroma/admin/users/activate`
203
204 ### Activate user
205
206 - Params:
207 - `nicknames`: nicknames array
208 - Response:
209
210 ```json
211 {
212 users: [
213 {
214 // user object
215 }
216 ]
217 }
218 ```
219
220 ## `PATCH /api/pleroma/admin/users/deactivate`
221
222 ### Deactivate user
223
224 - Params:
225 - `nicknames`: nicknames array
226 - Response:
227
228 ```json
229 {
230 users: [
231 {
232 // user object
233 }
234 ]
235 }
236 ```
237
238 ## DEPRECATED `PATCH /api/pleroma/admin/users/:nickname/activation_status`
239
240 ### Active or deactivate a user
241
242 - Params:
243 - `nickname`
244 - `status` BOOLEAN field, false value means deactivation.
245
246 ## `GET /api/pleroma/admin/users/:nickname_or_id`
247
248 ### Retrive the details of a user
249
250 - Params:
251 - `nickname` or `id`
252 - Response:
253 - On failure: `Not found`
254 - On success: JSON of the user
255
256 ## `GET /api/pleroma/admin/users/:nickname_or_id/statuses`
257
258 ### Retrive user's latest statuses
259
260 - Params:
261 - `nickname` or `id`
262 - *optional* `page_size`: number of statuses to return (default is `20`)
263 - *optional* `godmode`: `true`/`false` – allows to see private statuses
264 - Response:
265 - On failure: `Not found`
266 - On success: JSON array of user's latest statuses
267
268 ## `POST /api/pleroma/admin/relay`
269
270 ### Follow a Relay
271
272 - Params:
273 - `relay_url`
274 - Response:
275 - On success: URL of the followed relay
276
277 ## `DELETE /api/pleroma/admin/relay`
278
279 ### Unfollow a Relay
280
281 - Params:
282 - `relay_url`
283 - Response:
284 - On success: URL of the unfollowed relay
285
286 ## `GET /api/pleroma/admin/relay`
287
288 ### List Relays
289
290 - Params: none
291 - Response:
292 - On success: JSON array of relays
293
294 ## `POST /api/pleroma/admin/users/invite_token`
295
296 ### Create an account registration invite token
297
298 - Params:
299 - *optional* `max_use` (integer)
300 - *optional* `expires_at` (date string e.g. "2019-04-07")
301 - Response:
302
303 ```json
304 {
305 "id": integer,
306 "token": string,
307 "used": boolean,
308 "expires_at": date,
309 "uses": integer,
310 "max_use": integer,
311 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
312 }
313 ```
314
315 ## `GET /api/pleroma/admin/users/invites`
316
317 ### Get a list of generated invites
318
319 - Params: none
320 - Response:
321
322 ```json
323 {
324
325 "invites": [
326 {
327 "id": integer,
328 "token": string,
329 "used": boolean,
330 "expires_at": date,
331 "uses": integer,
332 "max_use": integer,
333 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
334 },
335 ...
336 ]
337 }
338 ```
339
340 ## `POST /api/pleroma/admin/users/revoke_invite`
341
342 ### Revoke invite by token
343
344 - Params:
345 - `token`
346 - Response:
347
348 ```json
349 {
350 "id": integer,
351 "token": string,
352 "used": boolean,
353 "expires_at": date,
354 "uses": integer,
355 "max_use": integer,
356 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
357
358 }
359 ```
360
361 ## `POST /api/pleroma/admin/users/email_invite`
362
363 ### Sends registration invite via email
364
365 - Params:
366 - `email`
367 - `name`, optional
368
369 ## `GET /api/pleroma/admin/users/:nickname/password_reset`
370
371 ### Get a password reset token for a given nickname
372
373 - Params: none
374 - Response:
375
376 ```json
377 {
378 "token": "base64 reset token",
379 "link": "https://pleroma.social/api/pleroma/password_reset/url-encoded-base64-token"
380 }
381 ```
382
383 ## `PATCH /api/pleroma/admin/users/force_password_reset`
384
385 ### Force passord reset for a user with a given nickname
386
387 - Params:
388 - `nicknames`
389 - Response: none (code `204`)
390
391 ## `GET /api/pleroma/admin/reports`
392
393 ### Get a list of reports
394
395 - Params:
396 - *optional* `state`: **string** the state of reports. Valid values are `open`, `closed` and `resolved`
397 - *optional* `limit`: **integer** the number of records to retrieve
398 - *optional* `page`: **integer** page number
399 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
400 - Response:
401 - On failure: 403 Forbidden error `{"error": "error_msg"}` when requested by anonymous or non-admin
402 - On success: JSON, returns a list of reports, where:
403 - `account`: the user who has been reported
404 - `actor`: the user who has sent the report
405 - `statuses`: list of statuses that have been included to the report
406
407 ```json
408 {
409 "totalReports" : 1,
410 "reports": [
411 {
412 "account": {
413 "acct": "user",
414 "avatar": "https://pleroma.example.org/images/avi.png",
415 "avatar_static": "https://pleroma.example.org/images/avi.png",
416 "bot": false,
417 "created_at": "2019-04-23T17:32:04.000Z",
418 "display_name": "User",
419 "emojis": [],
420 "fields": [],
421 "followers_count": 1,
422 "following_count": 1,
423 "header": "https://pleroma.example.org/images/banner.png",
424 "header_static": "https://pleroma.example.org/images/banner.png",
425 "id": "9i6dAJqSGSKMzLG2Lo",
426 "locked": false,
427 "note": "",
428 "pleroma": {
429 "confirmation_pending": false,
430 "hide_favorites": true,
431 "hide_followers": false,
432 "hide_follows": false,
433 "is_admin": false,
434 "is_moderator": false,
435 "relationship": {},
436 "tags": []
437 },
438 "source": {
439 "note": "",
440 "pleroma": {},
441 "sensitive": false
442 },
443 "tags": ["force_unlisted"],
444 "statuses_count": 3,
445 "url": "https://pleroma.example.org/users/user",
446 "username": "user"
447 },
448 "actor": {
449 "acct": "lain",
450 "avatar": "https://pleroma.example.org/images/avi.png",
451 "avatar_static": "https://pleroma.example.org/images/avi.png",
452 "bot": false,
453 "created_at": "2019-03-28T17:36:03.000Z",
454 "display_name": "Roger Braun",
455 "emojis": [],
456 "fields": [],
457 "followers_count": 1,
458 "following_count": 1,
459 "header": "https://pleroma.example.org/images/banner.png",
460 "header_static": "https://pleroma.example.org/images/banner.png",
461 "id": "9hEkA5JsvAdlSrocam",
462 "locked": false,
463 "note": "",
464 "pleroma": {
465 "confirmation_pending": false,
466 "hide_favorites": false,
467 "hide_followers": false,
468 "hide_follows": false,
469 "is_admin": false,
470 "is_moderator": false,
471 "relationship": {},
472 "tags": []
473 },
474 "source": {
475 "note": "",
476 "pleroma": {},
477 "sensitive": false
478 },
479 "tags": ["force_unlisted"],
480 "statuses_count": 1,
481 "url": "https://pleroma.example.org/users/lain",
482 "username": "lain"
483 },
484 "content": "Please delete it",
485 "created_at": "2019-04-29T19:48:15.000Z",
486 "id": "9iJGOv1j8hxuw19bcm",
487 "state": "open",
488 "statuses": [
489 {
490 "account": { ... },
491 "application": {
492 "name": "Web",
493 "website": null
494 },
495 "bookmarked": false,
496 "card": null,
497 "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>",
498 "created_at": "2019-04-23T19:15:47.000Z",
499 "emojis": [],
500 "favourited": false,
501 "favourites_count": 0,
502 "id": "9i6mQ9uVrrOmOime8m",
503 "in_reply_to_account_id": null,
504 "in_reply_to_id": null,
505 "language": null,
506 "media_attachments": [],
507 "mentions": [
508 {
509 "acct": "lain",
510 "id": "9hEkA5JsvAdlSrocam",
511 "url": "https://pleroma.example.org/users/lain",
512 "username": "lain"
513 },
514 {
515 "acct": "user",
516 "id": "9i6dAJqSGSKMzLG2Lo",
517 "url": "https://pleroma.example.org/users/user",
518 "username": "user"
519 }
520 ],
521 "muted": false,
522 "pinned": false,
523 "pleroma": {
524 "content": {
525 "text/plain": "@lain click on my link https://www.google.com/"
526 },
527 "conversation_id": 28,
528 "in_reply_to_account_acct": null,
529 "local": true,
530 "spoiler_text": {
531 "text/plain": ""
532 }
533 },
534 "reblog": null,
535 "reblogged": false,
536 "reblogs_count": 0,
537 "replies_count": 0,
538 "sensitive": false,
539 "spoiler_text": "",
540 "tags": [],
541 "uri": "https://pleroma.example.org/objects/8717b90f-8e09-4b58-97b0-e3305472b396",
542 "url": "https://pleroma.example.org/notice/9i6mQ9uVrrOmOime8m",
543 "visibility": "direct"
544 }
545 ]
546 }
547 ]
548 }
549 ```
550
551 ## `GET /api/pleroma/admin/grouped_reports`
552
553 ### Get a list of reports, grouped by status
554
555 - Params: none
556 - On success: JSON, returns a list of reports, where:
557 - `date`: date of the latest report
558 - `account`: the user who has been reported (see `/api/pleroma/admin/reports` for reference)
559 - `status`: reported status (see `/api/pleroma/admin/reports` for reference)
560 - `actors`: users who had reported this status (see `/api/pleroma/admin/reports` for reference)
561 - `reports`: reports (see `/api/pleroma/admin/reports` for reference)
562
563 ```json
564 "reports": [
565 {
566 "date": "2019-10-07T12:31:39.615149Z",
567 "account": { ... },
568 "status": { ... },
569 "actors": [{ ... }, { ... }],
570 "reports": [{ ... }]
571 }
572 ]
573 ```
574
575 ## `GET /api/pleroma/admin/reports/:id`
576
577 ### Get an individual report
578
579 - Params:
580 - `id`
581 - Response:
582 - On failure:
583 - 403 Forbidden `{"error": "error_msg"}`
584 - 404 Not Found `"Not found"`
585 - On success: JSON, Report object (see above)
586
587 ## `PATCH /api/pleroma/admin/reports`
588
589 ### Change the state of one or multiple reports
590
591 - Params:
592
593 ```json
594 `reports`: [
595 {
596 `id`, // required, report id
597 `state` // required, the new state. Valid values are `open`, `closed` and `resolved`
598 },
599 ...
600 ]
601 ```
602
603 - Response:
604 - On failure:
605 - 400 Bad Request, JSON:
606
607 ```json
608 [
609 {
610 `id`, // report id
611 `error` // error message
612 }
613 ]
614 ```
615
616 - On success: `204`, empty response
617
618 ## `POST /api/pleroma/admin/reports/:id/respond`
619
620 ### Respond to a report
621
622 - Params:
623 - `id`
624 - `status`: required, the message
625 - Response:
626 - On failure:
627 - 400 Bad Request `"Invalid parameters"` when `status` is missing
628 - 403 Forbidden `{"error": "error_msg"}`
629 - 404 Not Found `"Not found"`
630 - On success: JSON, created Mastodon Status entity
631
632 ```json
633 {
634 "account": { ... },
635 "application": {
636 "name": "Web",
637 "website": null
638 },
639 "bookmarked": false,
640 "card": null,
641 "content": "Your claim is going to be closed",
642 "created_at": "2019-05-11T17:13:03.000Z",
643 "emojis": [],
644 "favourited": false,
645 "favourites_count": 0,
646 "id": "9ihuiSL1405I65TmEq",
647 "in_reply_to_account_id": null,
648 "in_reply_to_id": null,
649 "language": null,
650 "media_attachments": [],
651 "mentions": [
652 {
653 "acct": "user",
654 "id": "9i6dAJqSGSKMzLG2Lo",
655 "url": "https://pleroma.example.org/users/user",
656 "username": "user"
657 },
658 {
659 "acct": "admin",
660 "id": "9hEkA5JsvAdlSrocam",
661 "url": "https://pleroma.example.org/users/admin",
662 "username": "admin"
663 }
664 ],
665 "muted": false,
666 "pinned": false,
667 "pleroma": {
668 "content": {
669 "text/plain": "Your claim is going to be closed"
670 },
671 "conversation_id": 35,
672 "in_reply_to_account_acct": null,
673 "local": true,
674 "spoiler_text": {
675 "text/plain": ""
676 }
677 },
678 "reblog": null,
679 "reblogged": false,
680 "reblogs_count": 0,
681 "replies_count": 0,
682 "sensitive": false,
683 "spoiler_text": "",
684 "tags": [],
685 "uri": "https://pleroma.example.org/objects/cab0836d-9814-46cd-a0ea-529da9db5fcb",
686 "url": "https://pleroma.example.org/notice/9ihuiSL1405I65TmEq",
687 "visibility": "direct"
688 }
689 ```
690
691 ## `PUT /api/pleroma/admin/statuses/:id`
692
693 ### Change the scope of an individual reported status
694
695 - Params:
696 - `id`
697 - `sensitive`: optional, valid values are `true` or `false`
698 - `visibility`: optional, valid values are `public`, `private` and `unlisted`
699 - Response:
700 - On failure:
701 - 400 Bad Request `"Unsupported visibility"`
702 - 403 Forbidden `{"error": "error_msg"}`
703 - 404 Not Found `"Not found"`
704 - On success: JSON, Mastodon Status entity
705
706 ## `DELETE /api/pleroma/admin/statuses/:id`
707
708 ### Delete an individual reported status
709
710 - Params:
711 - `id`
712 - Response:
713 - On failure:
714 - 403 Forbidden `{"error": "error_msg"}`
715 - 404 Not Found `"Not found"`
716 - On success: 200 OK `{}`
717
718 ## `GET /api/pleroma/admin/config/migrate_to_db`
719
720 ### Run mix task pleroma.config migrate_to_db
721
722 Copy settings on key `:pleroma` to DB.
723
724 - Params: none
725 - Response:
726
727 ```json
728 {}
729 ```
730
731 ## `GET /api/pleroma/admin/config/migrate_from_db`
732
733 ### Run mix task pleroma.config migrate_from_db
734
735 Copy all settings from DB to `config/prod.exported_from_db.secret.exs` with deletion from DB.
736
737 - Params: none
738 - Response:
739
740 ```json
741 {}
742 ```
743
744 ## `GET /api/pleroma/admin/config`
745
746 ### List config settings
747
748 List config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
749
750 - Params: none
751 - Response:
752
753 ```json
754 {
755 configs: [
756 {
757 "group": string,
758 "key": string or string with leading `:` for atoms,
759 "value": string or {} or [] or {"tuple": []}
760 }
761 ]
762 }
763 ```
764
765 ## `POST /api/pleroma/admin/config`
766
767 ### Update config settings
768
769 Updating config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
770 Module name can be passed as string, which starts with `Pleroma`, e.g. `"Pleroma.Upload"`.
771 Atom keys and values can be passed with `:` in the beginning, e.g. `":upload"`.
772 Tuples can be passed as `{"tuple": ["first_val", Pleroma.Module, []]}`.
773 `{"tuple": ["some_string", "Pleroma.Some.Module", []]}` will be converted to `{"some_string", Pleroma.Some.Module, []}`.
774 Keywords can be passed as lists with 2 child tuples, e.g.
775 `[{"tuple": ["first_val", Pleroma.Module]}, {"tuple": ["second_val", true]}]`.
776
777 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.:
778 {"group": "pleroma", "key": "some_key", "delete": "true", "subkeys": [":subkey", ":subkey3"]}.
779
780 Compile time settings (need instance reboot):
781 - all settings by this keys:
782 - `:hackney_pools`
783 - `:chat`
784 - `Pleroma.Web.Endpoint`
785 - `Pleroma.Repo`
786 - part settings:
787 - `Pleroma.Captcha` -> `:seconds_valid`
788 - `Pleroma.Upload` -> `:proxy_remote`
789 - `:instance` -> `:upload_limit`
790
791 - Params:
792 - `configs` => [
793 - `group` (string)
794 - `key` (string or string with leading `:` for atoms)
795 - `value` (string, [], {} or {"tuple": []})
796 - `delete` = true (optional, if parameter must be deleted)
797 - `subkeys` [(string with leading `:` for atoms)] (optional, works only if `delete=true` parameter is passed, otherwise will be ignored)
798 ]
799
800 - Request (example):
801
802 ```json
803 {
804 configs: [
805 {
806 "group": "pleroma",
807 "key": "Pleroma.Upload",
808 "value": [
809 {"tuple": [":uploader", "Pleroma.Uploaders.Local"]},
810 {"tuple": [":filters", ["Pleroma.Upload.Filter.Dedupe"]]},
811 {"tuple": [":link_name", true]},
812 {"tuple": [":proxy_remote", false]},
813 {"tuple": [":proxy_opts", [
814 {"tuple": [":redirect_on_failure", false]},
815 {"tuple": [":max_body_length", 1048576]},
816 {"tuple": [":http": [
817 {"tuple": [":follow_redirect", true]},
818 {"tuple": [":pool", ":upload"]},
819 ]]}
820 ]
821 ]},
822 {"tuple": [":dispatch", {
823 "tuple": ["/api/v1/streaming", "Pleroma.Web.MastodonAPI.WebsocketHandler", []]
824 }]}
825 ]
826 }
827 ]
828 }
829 ```
830
831 - Response:
832
833 ```json
834 {
835 configs: [
836 {
837 "group": string,
838 "key": string or string with leading `:` for atoms,
839 "value": string or {} or [] or {"tuple": []}
840 }
841 ]
842 }
843 ```
844
845 ## `GET /api/pleroma/admin/moderation_log`
846
847 ### Get moderation log
848
849 - Params:
850 - *optional* `page`: **integer** page number
851 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
852 - *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`
853 - *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
854 - *optional* `user_id`: **integer** filter logs by actor's id
855 - *optional* `search`: **string** search logs by the log message
856 - Response:
857
858 ```json
859 [
860 {
861 "data": {
862 "actor": {
863 "id": 1,
864 "nickname": "lain"
865 },
866 "action": "relay_follow"
867 },
868 "time": 1502812026, // timestamp
869 "message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message
870 }
871 ]
872 ```
873
874 ## `POST /api/pleroma/admin/reload_emoji`
875
876 ### Reload the instance's custom emoji
877
878 - Authentication: required
879 - Params: None
880 - Response: JSON, "ok" and 200 status