akkoma/docs/api/admin_api.md

283 lines
5.3 KiB
Markdown
Raw Normal View History

2018-12-31 11:13:17 +00:00
# Admin API
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
Authentication is required and the user must be an admin.
2019-03-06 02:01:38 +00:00
## `/api/pleroma/admin/users`
2019-02-27 00:08:03 +00:00
### List users
- Method `GET`
2019-03-06 02:01:38 +00: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 14:34:14 +00:00
- Response:
```JSON
2019-03-02 14:32:46 +00:00
{
"page_size": integer,
"count": integer,
"users": [
2019-03-01 14:34:14 +00:00
{
2019-03-02 14:32:46 +00:00
"deactivated": bool,
"id": integer,
"nickname": string,
"roles": {
"admin": bool,
"moderator": bool
},
"local": bool,
"tags": array
2019-03-01 14:34:14 +00:00
},
...
2019-03-02 14:32:46 +00:00
]
}
2019-03-01 14:34:14 +00:00
```
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Remove a user
2019-02-27 00:08:03 +00:00
- Method `DELETE`
- Params:
- `nickname`
- Response: Users nickname
2018-12-31 11:13:17 +00:00
### Create a user
2019-02-27 00:08:03 +00:00
- Method: `POST`
- Params:
- `nickname`
- `email`
- `password`
- Response: Users nickname
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/follow`
### Make a user follow another user
- Methods: `POST`
- Params:
- `follower`: The nickname of the follower
- `followed`: The nickname of the followed
- Response:
- "ok"
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/unfollow`
### Make a user unfollow another user
- Methods: `POST`
- Params:
- `follower`: The nickname of the follower
- `followed`: The nickname of the followed
- Response:
- "ok"
2019-02-27 00:08:03 +00:00
## `/api/pleroma/admin/users/:nickname/toggle_activation`
### Toggle user activation
- Method: `PATCH`
- Params:
- `nickname`
- Response: Users object
```JSON
{
2019-03-02 14:32:46 +00:00
"deactivated": bool,
"id": integer,
"nickname": string
2019-02-27 00:08:03 +00:00
}
```
2018-12-31 11:13:17 +00:00
## `/api/pleroma/admin/users/tag`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Tag a list of users
2019-02-27 00:08:03 +00:00
- Method: `PUT`
- Params:
2019-05-15 22:36:26 +00:00
- `nicknames`
2019-02-27 00:08:03 +00:00
- `tags`
2018-12-31 11:13:17 +00:00
### Untag a list of users
2019-02-27 00:08:03 +00:00
- Method: `DELETE`
- Params:
2019-05-15 22:36:26 +00:00
- `nicknames`
2019-02-27 00:08:03 +00:00
- `tags`
2018-12-31 11:13:17 +00:00
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/:nickname/permission_group`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Get user user permission groups membership
2019-02-27 00:08:03 +00:00
- Method: `GET`
- Params: none
- Response:
2018-12-31 11:13:17 +00:00
```JSON
{
2019-03-02 14:32:46 +00:00
"is_moderator": bool,
"is_admin": bool
2018-12-31 11:13:17 +00:00
}
```
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/:nickname/permission_group/:permission_group`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00: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 00:08:03 +00:00
- Method: `GET`
- Params: none
- Response:
2018-12-31 11:13:17 +00:00
```JSON
{
2019-03-02 14:32:46 +00:00
"is_moderator": bool,
"is_admin": bool
2018-12-31 11:13:17 +00:00
}
```
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Add user in permission group
2019-02-27 00:08:03 +00:00
- Method: `POST`
- Params: none
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the `user.info`
2018-12-31 11:13:17 +00:00
### Remove user from permission group
2019-02-27 00:08:03 +00:00
- Method: `DELETE`
- Params: none
- Response:
- On failure: `{"error": "…"}`
- On success: JSON of the `user.info`
- Note: An admin cannot revoke their own admin status.
2018-12-31 11:13:17 +00:00
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/:nickname/activation_status`
### Active or deactivate a user
2019-02-27 00:08:03 +00:00
- Method: `PUT`
- Params:
- `nickname`
- `status` BOOLEAN field, false value means deactivation.
## `/api/pleroma/admin/users/:nickname`
### Retrive the details of a user
- Method: `GET`
- Params:
- `nickname`
- Response:
- On failure: `Not found`
- On success: JSON of the user
2018-12-31 11:13:17 +00:00
## `/api/pleroma/admin/relay`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Follow a Relay
2019-02-27 00:08:03 +00:00
- Methods: `POST`
- Params:
- `relay_url`
- Response:
- On success: URL of the followed relay
2018-12-31 11:13:17 +00:00
### Unfollow a Relay
2019-02-27 00:08:03 +00:00
- Methods: `DELETE`
- Params:
- `relay_url`
- Response:
- On success: URL of the unfollowed relay
2018-12-31 11:13:17 +00:00
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/invite_token`
2019-02-27 00:08:03 +00:00
### Get an account registration invite token
2019-02-27 00:08:03 +00:00
- Methods: `GET`
- Params:
- *optional* `invite` => [
- *optional* `max_use` (integer)
- *optional* `expires_at` (date string e.g. "2019-04-07")
]
2019-02-27 00:08:03 +00:00
- Response: invite token (base64 string)
2018-12-31 11:13:17 +00:00
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/invites`
### Get a list of generated invites
- Methods: `GET`
- Params: none
- Response:
```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`)
},
...
]
}
```
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/revoke_invite`
### Revoke invite by token
- Methods: `POST`
- Params:
- `token`
- 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`)
}
```
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/email_invite`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Sends registration invite via email
2019-02-27 00:08:03 +00:00
- Methods: `POST`
- Params:
- `email`
- `name`, optional
2018-12-31 11:13:17 +00:00
2019-05-11 08:32:04 +00:00
## `/api/pleroma/admin/users/:nickname/password_reset`
2019-02-27 00:08:03 +00:00
2018-12-31 11:13:17 +00:00
### Get a password reset token for a given nickname
2019-02-27 00:08:03 +00:00
- Methods: `GET`
- Params: none
- Response: password reset token (base64 string)