pleroma/docs/API/admin_api.md

889 lines
21 KiB
Markdown
Raw Normal View History

2018-12-31 12:13:17 +01:00
# Admin API
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
Authentication is required and the user must be an admin.
## `GET /api/pleroma/admin/users`
2019-02-27 01:08:03 +01:00
### List users
2019-03-06 03:01:38 +01:00
- Query Params:
- *optional* `query`: **string** search term (e.g. nickname, domain, nickname@domain)
- *optional* `filters`: **string** comma-separated string of filters:
- `local`: only local users
- `external`: only external users
- `active`: only active users
- `deactivated`: only deactivated users
- `is_admin`: users with admin role
- `is_moderator`: users with moderator role
- *optional* `page`: **integer** page number
- *optional* `page_size`: **integer** number of users per page (default is `50`)
- *optional* `tags`: **[string]** tags list
- *optional* `name`: **string** user display name
- *optional* `email`: **string** user email
- 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`
2019-03-01 15:34:14 +01:00
- Response:
2019-05-16 21:09:18 +02:00
```json
2019-03-02 15:32:46 +01:00
{
"page_size": integer,
"count": integer,
"users": [
2019-03-01 15:34:14 +01:00
{
2019-03-02 15:32:46 +01:00
"deactivated": bool,
"id": integer,
"nickname": string,
"roles": {
"admin": bool,
"moderator": bool
},
"local": bool,
"tags": array,
"avatar": string,
"display_name": string
2019-03-01 15:34:14 +01:00
},
...
2019-03-02 15:32:46 +01:00
]
}
2019-03-01 15:34:14 +01:00
```
## DEPRECATED `DELETE /api/pleroma/admin/users`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Remove a user
2019-02-27 01:08:03 +01:00
- Params:
- `nickname`
- Response: Users nickname
## `DELETE /api/pleroma/admin/users`
### Remove a user
- Params:
- `nicknames`
- Response: Array of user nicknames
2018-12-31 12:13:17 +01:00
### Create a user
2019-02-27 01:08:03 +01:00
- Method: `POST`
- Params:
2019-09-13 05:31:16 +02:00
`users`: [
{
`nickname`,
`email`,
`password`
}
]
2019-02-27 01:08:03 +01:00
- Response: Users nickname
## `POST /api/pleroma/admin/users/follow`
### Make a user follow another user
- Params:
- `follower`: The nickname of the follower
- `followed`: The nickname of the followed
- Response:
- "ok"
## `POST /api/pleroma/admin/users/unfollow`
### Make a user unfollow another user
- Params:
- `follower`: The nickname of the follower
- `followed`: The nickname of the followed
- Response:
- "ok"
## `PATCH /api/pleroma/admin/users/:nickname/toggle_activation`
2019-02-27 01:08:03 +01:00
### Toggle user activation
- Params:
- `nickname`
- Response: Users object
2019-05-16 21:09:18 +02:00
```json
2019-02-27 01:08:03 +01:00
{
2019-03-02 15:32:46 +01:00
"deactivated": bool,
"id": integer,
"nickname": string
2019-02-27 01:08:03 +01:00
}
```
2018-12-31 12:13:17 +01:00
## `PUT /api/pleroma/admin/users/tag`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Tag a list of users
2019-02-27 01:08:03 +01:00
- Params:
2019-05-16 00:46:43 +02:00
- `nicknames` (array)
2019-05-16 00:48:53 +02:00
- `tags` (array)
2019-02-27 01:08:03 +01:00
## `DELETE /api/pleroma/admin/users/tag`
2018-12-31 12:13:17 +01:00
### Untag a list of users
2019-02-27 01:08:03 +01:00
- Params:
2019-05-16 00:46:43 +02:00
- `nicknames` (array)
2019-05-16 00:48:53 +02:00
- `tags` (array)
2018-12-31 12:13:17 +01:00
## `GET /api/pleroma/admin/users/:nickname/permission_group`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Get user user permission groups membership
2019-02-27 01:08:03 +01:00
- Params: none
- Response:
2019-05-16 21:09:18 +02:00
```json
2018-12-31 12:13:17 +01:00
{
2019-03-02 15:32:46 +01:00
"is_moderator": bool,
"is_admin": bool
2018-12-31 12:13:17 +01:00
}
```
## `GET /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
Note: Available `:permission_group` is currently moderator and admin. 404 is returned when the permission group doesnt exist.
### Get user user permission groups membership per permission group
2019-02-27 01:08:03 +01:00
- Params: none
- Response:
2019-05-16 21:09:18 +02:00
```json
2018-12-31 12:13:17 +01:00
{
2019-03-02 15:32:46 +01:00
"is_moderator": bool,
"is_admin": bool
2018-12-31 12:13:17 +01:00
}
```
2019-02-27 01:08:03 +01:00
## DEPRECATED `POST /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
### Add user to permission group
2019-02-27 01:08:03 +01:00
- Params: none
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the user
2019-02-27 01:08:03 +01:00
## `POST /api/pleroma/admin/users/permission_group/:permission_group`
### Add users to permission group
2019-02-27 01:08:03 +01:00
- Params:
- `nicknames`: nicknames array
2019-02-27 01:08:03 +01:00
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the user
2019-02-27 01:08:03 +01:00
## DEPRECATED `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
2019-02-27 01:08:03 +01:00
## `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
2018-12-31 12:13:17 +01:00
### Remove user from permission group
2019-02-27 01:08:03 +01:00
- Params: none
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the user
2019-02-27 01:08:03 +01:00
- Note: An admin cannot revoke their own admin status.
2018-12-31 12:13:17 +01:00
## `DELETE /api/pleroma/admin/users/permission_group/:permission_group`
### Remove users from permission group
- Params:
- `nicknames`: nicknames array
2019-02-27 01:08:03 +01:00
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the user
2019-02-27 01:08:03 +01:00
- Note: An admin cannot revoke their own admin status.
2018-12-31 12:13:17 +01:00
## `PATCH /api/pleroma/admin/users/activate`
### Activate user
2019-02-27 01:08:03 +01:00
- Params:
- `nicknames`: nicknames array
- Response:
```json
{
users: [
{
// user object
}
]
}
```
## `PATCH /api/pleroma/admin/users/deactivate`
### Deactivate user
- Params:
- `nicknames`: nicknames array
- Response:
```json
{
users: [
{
// user object
}
]
}
```
## `GET /api/pleroma/admin/users/:nickname_or_id`
### Retrive the details of a user
- Params:
2019-07-06 14:16:56 +02:00
- `nickname` or `id`
2019-07-05 18:33:53 +02:00
- Response:
- On failure: `Not found`
- On success: JSON of the user
## `GET /api/pleroma/admin/users/:nickname_or_id/statuses`
### Retrive user's latest statuses
- Params:
- `nickname` or `id`
- *optional* `page_size`: number of statuses to return (default is `20`)
- *optional* `godmode`: `true`/`false` allows to see private statuses
- Response:
- On failure: `Not found`
- On success: JSON array of user's latest statuses
## `POST /api/pleroma/admin/relay`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Follow a Relay
2019-02-27 01:08:03 +01:00
- Params:
- `relay_url`
- Response:
- On success: URL of the followed relay
## `DELETE /api/pleroma/admin/relay`
2018-12-31 12:13:17 +01:00
### Unfollow a Relay
2019-02-27 01:08:03 +01:00
- Params:
- `relay_url`
- Response:
- On success: URL of the unfollowed relay
2018-12-31 12:13:17 +01:00
## `GET /api/pleroma/admin/relay`
### List Relays
- Params: none
- Response:
- On success: JSON array of relays
## `POST /api/pleroma/admin/users/invite_token`
2019-02-27 01:08:03 +01:00
2019-09-13 07:07:29 +02:00
### Create an account registration invite token
2019-02-27 01:08:03 +01:00
- Params:
2019-09-07 07:56:22 +02:00
- *optional* `max_use` (integer)
- *optional* `expires_at` (date string e.g. "2019-04-07")
- Response:
```json
{
"id": integer,
"token": string,
"used": boolean,
"expires_at": date,
"uses": integer,
"max_use": integer,
"invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
}
```
2018-12-31 12:13:17 +01:00
## `GET /api/pleroma/admin/users/invites`
### Get a list of generated invites
- Params: none
- Response:
2019-05-16 21:09:18 +02:00
```json
{
"invites": [
{
"id": integer,
"token": string,
"used": boolean,
"expires_at": date,
"uses": integer,
"max_use": integer,
"invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
},
...
]
}
```
## `POST /api/pleroma/admin/users/revoke_invite`
### Revoke invite by token
- Params:
- `token`
- Response:
2019-05-16 21:09:18 +02:00
```json
{
"id": integer,
"token": string,
"used": boolean,
"expires_at": date,
"uses": integer,
"max_use": integer,
"invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
}
```
## `POST /api/pleroma/admin/users/email_invite`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Sends registration invite via email
2019-02-27 01:08:03 +01:00
- Params:
- `email`
- `name`, optional
2018-12-31 12:13:17 +01:00
## `GET /api/pleroma/admin/users/:nickname/password_reset`
2019-02-27 01:08:03 +01:00
2018-12-31 12:13:17 +01:00
### Get a password reset token for a given nickname
2019-02-27 01:08:03 +01:00
- Params: none
2019-09-22 15:45:38 +02:00
- Response:
```json
{
"token": "base64 reset token",
"link": "https://pleroma.social/api/pleroma/password_reset/url-encoded-base64-token"
2019-09-22 15:45:38 +02:00
}
```
## `PATCH /api/pleroma/admin/users/force_password_reset`
### Force passord reset for a user with a given nickname
2019-11-01 18:26:52 +01:00
- Params:
- `nicknames`
- Response: none (code `204`)
## `GET /api/pleroma/admin/reports`
2019-05-16 21:09:18 +02:00
### Get a list of reports
2019-05-16 21:09:18 +02:00
- Params:
2019-09-28 23:01:35 +02:00
- *optional* `state`: **string** the state of reports. Valid values are `open`, `closed` and `resolved`
- *optional* `limit`: **integer** the number of records to retrieve
- *optional* `page`: **integer** page number
- *optional* `page_size`: **integer** number of log entries per page (default is `50`)
- Response:
2019-05-16 21:09:18 +02:00
- On failure: 403 Forbidden error `{"error": "error_msg"}` when requested by anonymous or non-admin
- On success: JSON, returns a list of reports, where:
- `account`: the user who has been reported
- `actor`: the user who has sent the report
- `statuses`: list of statuses that have been included to the report
```json
{
"totalReports" : 1,
2019-05-16 21:09:18 +02:00
"reports": [
{
"account": {
"acct": "user",
"avatar": "https://pleroma.example.org/images/avi.png",
"avatar_static": "https://pleroma.example.org/images/avi.png",
"bot": false,
"created_at": "2019-04-23T17:32:04.000Z",
"display_name": "User",
"emojis": [],
"fields": [],
"followers_count": 1,
"following_count": 1,
"header": "https://pleroma.example.org/images/banner.png",
"header_static": "https://pleroma.example.org/images/banner.png",
"id": "9i6dAJqSGSKMzLG2Lo",
"locked": false,
"note": "",
"pleroma": {
"confirmation_pending": false,
"hide_favorites": true,
"hide_followers": false,
"hide_follows": false,
"is_admin": false,
"is_moderator": false,
"relationship": {},
"tags": []
},
"source": {
"note": "",
"pleroma": {},
"sensitive": false
},
"tags": ["force_unlisted"],
2019-05-16 21:09:18 +02:00
"statuses_count": 3,
"url": "https://pleroma.example.org/users/user",
"username": "user"
},
"actor": {
"acct": "lain",
"avatar": "https://pleroma.example.org/images/avi.png",
"avatar_static": "https://pleroma.example.org/images/avi.png",
"bot": false,
"created_at": "2019-03-28T17:36:03.000Z",
"display_name": "Roger Braun",
"emojis": [],
"fields": [],
"followers_count": 1,
"following_count": 1,
"header": "https://pleroma.example.org/images/banner.png",
"header_static": "https://pleroma.example.org/images/banner.png",
"id": "9hEkA5JsvAdlSrocam",
"locked": false,
"note": "",
"pleroma": {
"confirmation_pending": false,
"hide_favorites": false,
"hide_followers": false,
"hide_follows": false,
"is_admin": false,
"is_moderator": false,
"relationship": {},
"tags": []
},
"source": {
"note": "",
"pleroma": {},
"sensitive": false
},
"tags": ["force_unlisted"],
2019-05-16 21:09:18 +02:00
"statuses_count": 1,
"url": "https://pleroma.example.org/users/lain",
"username": "lain"
},
"content": "Please delete it",
"created_at": "2019-04-29T19:48:15.000Z",
"id": "9iJGOv1j8hxuw19bcm",
"state": "open",
"statuses": [
{
"account": { ... },
"application": {
"name": "Web",
"website": null
},
"bookmarked": false,
"card": null,
"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>",
"created_at": "2019-04-23T19:15:47.000Z",
"emojis": [],
"favourited": false,
"favourites_count": 0,
"id": "9i6mQ9uVrrOmOime8m",
"in_reply_to_account_id": null,
"in_reply_to_id": null,
"language": null,
"media_attachments": [],
"mentions": [
{
"acct": "lain",
"id": "9hEkA5JsvAdlSrocam",
"url": "https://pleroma.example.org/users/lain",
"username": "lain"
},
{
"acct": "user",
"id": "9i6dAJqSGSKMzLG2Lo",
"url": "https://pleroma.example.org/users/user",
"username": "user"
}
],
"muted": false,
"pinned": false,
"pleroma": {
"content": {
"text/plain": "@lain click on my link https://www.google.com/"
},
"conversation_id": 28,
"in_reply_to_account_acct": null,
"local": true,
"spoiler_text": {
"text/plain": ""
}
},
"reblog": null,
"reblogged": false,
"reblogs_count": 0,
"replies_count": 0,
"sensitive": false,
"spoiler_text": "",
"tags": [],
"uri": "https://pleroma.example.org/objects/8717b90f-8e09-4b58-97b0-e3305472b396",
"url": "https://pleroma.example.org/notice/9i6mQ9uVrrOmOime8m",
"visibility": "direct"
}
]
}
2019-10-07 14:01:18 +02:00
]
}
```
## `GET /api/pleroma/admin/grouped_reports`
### Get a list of reports, grouped by status
- Params: none
- On success: JSON, returns a list of reports, where:
- `date`: date of the latest report
- `account`: the user who has been reported (see `/api/pleroma/admin/reports` for reference)
- `status`: reported status (see `/api/pleroma/admin/reports` for reference)
- `actors`: users who had reported this status (see `/api/pleroma/admin/reports` for reference)
- `reports`: reports (see `/api/pleroma/admin/reports` for reference)
```json
"reports": [
{
2019-10-07 14:01:18 +02:00
"date": "2019-10-07T12:31:39.615149Z",
"account": { ... },
"status": { ... },
"actors": [{ ... }, { ... }],
"reports": [{ ... }]
}
2019-05-16 21:09:18 +02:00
]
```
## `GET /api/pleroma/admin/reports/:id`
2019-05-16 21:09:18 +02:00
### Get an individual report
2019-05-16 21:09:18 +02:00
- Params:
- `id`
- Response:
- On failure:
2019-05-16 21:09:18 +02:00
- 403 Forbidden `{"error": "error_msg"}`
- 404 Not Found `"Not found"`
- On success: JSON, Report object (see above)
## `PATCH /api/pleroma/admin/reports`
### Change the state of one or multiple reports
2019-05-16 21:09:18 +02:00
- Params:
```json
`reports`: [
{
`id`, // required, report id
`state` // required, the new state. Valid values are `open`, `closed` and `resolved`
},
...
]
```
- Response:
- On failure:
- 400 Bad Request, JSON:
```json
[
{
`id`, // report id
`error` // error message
}
]
```
- On success: `204`, empty response
## `POST /api/pleroma/admin/reports/:id/respond`
2019-05-16 21:09:18 +02:00
### Respond to a report
2019-05-16 21:09:18 +02:00
- Params:
- `id`
- `status`: required, the message
- Response:
- On failure:
- 400 Bad Request `"Invalid parameters"` when `status` is missing
- 403 Forbidden `{"error": "error_msg"}`
2019-05-16 21:09:18 +02:00
- 404 Not Found `"Not found"`
- On success: JSON, created Mastodon Status entity
```json
{
"account": { ... },
"application": {
"name": "Web",
"website": null
},
"bookmarked": false,
"card": null,
"content": "Your claim is going to be closed",
"created_at": "2019-05-11T17:13:03.000Z",
"emojis": [],
"favourited": false,
"favourites_count": 0,
"id": "9ihuiSL1405I65TmEq",
"in_reply_to_account_id": null,
"in_reply_to_id": null,
"language": null,
"media_attachments": [],
"mentions": [
{
"acct": "user",
"id": "9i6dAJqSGSKMzLG2Lo",
"url": "https://pleroma.example.org/users/user",
"username": "user"
},
{
"acct": "admin",
"id": "9hEkA5JsvAdlSrocam",
"url": "https://pleroma.example.org/users/admin",
"username": "admin"
}
],
"muted": false,
"pinned": false,
"pleroma": {
"content": {
"text/plain": "Your claim is going to be closed"
},
"conversation_id": 35,
"in_reply_to_account_acct": null,
"local": true,
"spoiler_text": {
"text/plain": ""
}
},
"reblog": null,
"reblogged": false,
"reblogs_count": 0,
"replies_count": 0,
"sensitive": false,
"spoiler_text": "",
"tags": [],
"uri": "https://pleroma.example.org/objects/cab0836d-9814-46cd-a0ea-529da9db5fcb",
"url": "https://pleroma.example.org/notice/9ihuiSL1405I65TmEq",
"visibility": "direct"
}
```
## `PUT /api/pleroma/admin/statuses/:id`
2019-05-16 21:09:18 +02:00
### Change the scope of an individual reported status
2019-05-16 21:09:18 +02:00
- Params:
- `id`
- `sensitive`: optional, valid values are `true` or `false`
- `visibility`: optional, valid values are `public`, `private` and `unlisted`
- Response:
- On failure:
2019-05-16 21:09:18 +02:00
- 400 Bad Request `"Unsupported visibility"`
- 403 Forbidden `{"error": "error_msg"}`
2019-05-16 21:09:18 +02:00
- 404 Not Found `"Not found"`
- On success: JSON, Mastodon Status entity
## `DELETE /api/pleroma/admin/statuses/:id`
2019-05-16 21:09:18 +02:00
### Delete an individual reported status
2019-05-16 21:09:18 +02:00
- Params:
- `id`
- Response:
- On failure:
- 403 Forbidden `{"error": "error_msg"}`
2019-05-16 21:09:18 +02:00
- 404 Not Found `"Not found"`
- On success: 200 OK `{}`
## `GET /api/pleroma/admin/config/migrate_to_db`
2019-07-30 18:36:05 +02:00
### Run mix task pleroma.config migrate_to_db
2019-07-30 18:36:05 +02:00
Copy settings on key `:pleroma` to DB.
2019-07-30 18:36:05 +02:00
- Params: none
- Response:
```json
{}
```
## `GET /api/pleroma/admin/config/migrate_from_db`
2019-07-30 18:36:05 +02:00
### Run mix task pleroma.config migrate_from_db
2019-07-30 18:36:05 +02:00
Copy all settings from DB to `config/prod.exported_from_db.secret.exs` with deletion from DB.
2019-07-30 18:36:05 +02:00
- Params: none
- Response:
```json
{}
```
## `GET /api/pleroma/admin/config`
### List config settings
2019-07-23 21:17:00 +02:00
List config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
- Params: none
- Response:
```json
{
configs: [
{
2019-06-23 07:16:16 +02:00
"group": string,
2019-07-11 15:02:13 +02:00
"key": string or string with leading `:` for atoms,
2019-06-23 07:16:16 +02:00
"value": string or {} or [] or {"tuple": []}
}
]
}
```
## `POST /api/pleroma/admin/config`
### Update config settings
2019-07-23 21:17:00 +02:00
Updating config settings only works with `:pleroma => :instance => :dynamic_configuration` setting to `true`.
Module name can be passed as string, which starts with `Pleroma`, e.g. `"Pleroma.Upload"`.
2019-07-11 15:02:13 +02:00
Atom keys and values can be passed with `:` in the beginning, e.g. `":upload"`.
Tuples can be passed as `{"tuple": ["first_val", Pleroma.Module, []]}`.
`{"tuple": ["some_string", "Pleroma.Some.Module", []]}` will be converted to `{"some_string", Pleroma.Some.Module, []}`.
2019-07-11 15:02:13 +02:00
Keywords can be passed as lists with 2 child tuples, e.g.
`[{"tuple": ["first_val", Pleroma.Module]}, {"tuple": ["second_val", true]}]`.
2019-08-03 20:16:09 +02:00
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.:
{"group": "pleroma", "key": "some_key", "delete": "true", "subkeys": [":subkey", ":subkey3"]}.
Compile time settings (need instance reboot):
- all settings by this keys:
- `:hackney_pools`
- `:chat`
- `Pleroma.Web.Endpoint`
- `Pleroma.Repo`
- part settings:
- `Pleroma.Captcha` -> `:seconds_valid`
- `Pleroma.Upload` -> `:proxy_remote`
- `:instance` -> `:upload_limit`
- Params:
- `configs` => [
2019-06-23 07:16:16 +02:00
- `group` (string)
2019-07-11 15:02:13 +02:00
- `key` (string or string with leading `:` for atoms)
2019-06-23 07:16:16 +02:00
- `value` (string, [], {} or {"tuple": []})
- `delete` = true (optional, if parameter must be deleted)
2019-08-03 20:16:09 +02:00
- `subkeys` [(string with leading `:` for atoms)] (optional, works only if `delete=true` parameter is passed, otherwise will be ignored)
]
- Request (example):
```json
{
configs: [
{
2019-06-23 07:16:16 +02:00
"group": "pleroma",
"key": "Pleroma.Upload",
2019-07-11 15:02:13 +02:00
"value": [
{"tuple": [":uploader", "Pleroma.Uploaders.Local"]},
{"tuple": [":filters", ["Pleroma.Upload.Filter.Dedupe"]]},
{"tuple": [":link_name", true]},
{"tuple": [":proxy_remote", false]},
{"tuple": [":proxy_opts", [
{"tuple": [":redirect_on_failure", false]},
{"tuple": [":max_body_length", 1048576]},
{"tuple": [":http": [
{"tuple": [":follow_redirect", true]},
{"tuple": [":pool", ":upload"]},
]]}
]
]},
{"tuple": [":dispatch", {
"tuple": ["/api/v1/streaming", "Pleroma.Web.MastodonAPI.WebsocketHandler", []]
2019-07-11 15:02:13 +02:00
}]}
]
}
]
}
2019-09-26 18:10:34 +02:00
```
- Response:
```json
{
configs: [
{
2019-06-23 07:16:16 +02:00
"group": string,
2019-07-11 15:02:13 +02:00
"key": string or string with leading `:` for atoms,
"value": string or {} or [] or {"tuple": []}
}
]
}
```
2019-08-25 21:39:37 +02:00
## `GET /api/pleroma/admin/moderation_log`
2019-08-25 21:39:37 +02:00
### Get moderation log
2019-08-25 21:39:37 +02:00
- Params:
- *optional* `page`: **integer** page number
2019-09-26 18:20:47 +02:00
- *optional* `page_size`: **integer** number of log entries per page (default is `50`)
- *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`
- *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
- *optional* `user_id`: **integer** filter logs by actor's id
- *optional* `search`: **string** search logs by the log message
2019-08-25 21:39:37 +02:00
- Response:
```json
[
{
"data": {
"actor": {
"id": 1,
"nickname": "lain"
},
"action": "relay_follow"
},
"time": 1502812026, // timestamp
"message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message
}
]
```
2019-09-12 19:38:57 +02:00
## `POST /api/pleroma/admin/reload_emoji`
2019-09-12 19:38:57 +02:00
### Reload the instance's custom emoji
- Authentication: required
- Params: None
- Response: JSON, "ok" and 200 status
## `PATCH /api/pleroma/admin/users/confirm_email`
### Confirm users' emails
- Params:
- `nicknames`
- Response: Array of user nicknames
## `PATCH /api/pleroma/admin/users/resend_confirmation_email`
### Resend confirmation email
- Params:
- `nicknames`
- Response: Array of user nicknames