Merge remote-tracking branch 'remotes/upstream/develop' into 1149-oban-job-queue
[akkoma] / docs / api / pleroma_api.md
1 # Pleroma API
2
3 Requests that require it can be authenticated with [an OAuth token](https://tools.ietf.org/html/rfc6749), the `_pleroma_key` cookie, or [HTTP Basic Authentication](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization).
4
5 Request parameters can be passed via [query strings](https://en.wikipedia.org/wiki/Query_string) or as [form data](https://www.w3.org/TR/html401/interact/forms.html). Files must be uploaded as `multipart/form-data`.
6
7 ## `/api/pleroma/emoji`
8 ### Lists the custom emoji on that server.
9 * Method: `GET`
10 * Authentication: not required
11 * Params: none
12 * Response: JSON
13 * Example response:
14 ```json
15 {
16 "girlpower": {
17 "tags": [
18 "Finmoji"
19 ],
20 "image_url": "/finmoji/128px/girlpower-128.png"
21 },
22 "education": {
23 "tags": [
24 "Finmoji"
25 ],
26 "image_url": "/finmoji/128px/education-128.png"
27 },
28 "finnishlove": {
29 "tags": [
30 "Finmoji"
31 ],
32 "image_url": "/finmoji/128px/finnishlove-128.png"
33 }
34 }
35 ```
36 * Note: Same data as Mastodon API’s `/api/v1/custom_emojis` but in a different format
37
38 ## `/api/pleroma/follow_import`
39 ### Imports your follows, for example from a Mastodon CSV file.
40 * Method: `POST`
41 * Authentication: required
42 * Params:
43 * `list`: STRING or FILE containing a whitespace-separated list of accounts to follow
44 * Response: HTTP 200 on success, 500 on error
45 * Note: Users that can't be followed are silently skipped.
46
47 ## `/api/pleroma/captcha`
48 ### Get a new captcha
49 * Method: `GET`
50 * Authentication: not required
51 * Params: none
52 * Response: Provider specific JSON, the only guaranteed parameter is `type`
53 * Example response: `{"type": "kocaptcha", "token": "whatever", "url": "https://captcha.kotobank.ch/endpoint"}`
54
55 ## `/api/pleroma/delete_account`
56 ### Delete an account
57 * Method `POST`
58 * Authentication: required
59 * Params:
60 * `password`: user's password
61 * Response: JSON. Returns `{"status": "success"}` if the deletion was successful, `{"error": "[error message]"}` otherwise
62 * Example response: `{"error": "Invalid password."}`
63
64 ## `/api/pleroma/disable_account`
65 ### Disable an account
66 * Method `POST`
67 * Authentication: required
68 * Params:
69 * `password`: user's password
70 * Response: JSON. Returns `{"status": "success"}` if the account was successfully disabled, `{"error": "[error message]"}` otherwise
71 * Example response: `{"error": "Invalid password."}`
72
73 ## `/api/account/register`
74 ### Register a new user
75 * Method `POST`
76 * Authentication: not required
77 * Params:
78 * `nickname`
79 * `fullname`
80 * `bio`
81 * `email`
82 * `password`
83 * `confirm`
84 * `captcha_solution`: optional, contains provider-specific captcha solution,
85 * `captcha_token`: optional, contains provider-specific captcha token
86 * `token`: invite token required when the registrations aren't public.
87 * Response: JSON. Returns a user object on success, otherwise returns `{"error": "error_msg"}`
88 * Example response:
89 ```json
90 {
91 "background_image": null,
92 "cover_photo": "https://pleroma.soykaf.com/images/banner.png",
93 "created_at": "Tue Dec 18 16:55:56 +0000 2018",
94 "default_scope": "public",
95 "description": "blushy-crushy fediverse idol + pleroma dev\nlet's be friends \nぷれろまの生徒会長。謎の外人。日本語OK. \n公主病.",
96 "description_html": "blushy-crushy fediverse idol + pleroma dev.<br />let's be friends <br />ぷれろまの生徒会長。謎の外人。日本語OK. <br />公主病.",
97 "favourites_count": 0,
98 "fields": [],
99 "followers_count": 0,
100 "following": false,
101 "follows_you": false,
102 "friends_count": 0,
103 "id": 6,
104 "is_local": true,
105 "locked": false,
106 "name": "lain",
107 "name_html": "lain",
108 "no_rich_text": false,
109 "pleroma": {
110 "tags": []
111 },
112 "profile_image_url": "https://pleroma.soykaf.com/images/avi.png",
113 "profile_image_url_https": "https://pleroma.soykaf.com/images/avi.png",
114 "profile_image_url_original": "https://pleroma.soykaf.com/images/avi.png",
115 "profile_image_url_profile_size": "https://pleroma.soykaf.com/images/avi.png",
116 "rights": {
117 "delete_others_notice": false
118 },
119 "screen_name": "lain",
120 "statuses_count": 0,
121 "statusnet_blocking": false,
122 "statusnet_profile_url": "https://pleroma.soykaf.com/users/lain"
123 }
124 ```
125
126 ## `/api/pleroma/admin/`…
127 See [Admin-API](Admin-API.md)
128
129 ## `/api/v1/pleroma/notifications/read`
130 ### Mark notifications as read
131 * Method `POST`
132 * Authentication: required
133 * Params (mutually exclusive):
134 * `id`: a single notification id to read
135 * `max_id`: read all notifications up to this id
136 * Response: Notification entity/Array of Notification entities that were read. In case of `max_id`, only the first 80 read notifications will be returned.
137
138 ## `/api/v1/pleroma/accounts/:id/subscribe`
139 ### Subscribe to receive notifications for all statuses posted by a user
140 * Method `POST`
141 * Authentication: required
142 * Params:
143 * `id`: account id to subscribe to
144 * Response: JSON, returns a mastodon relationship object on success, otherwise returns `{"error": "error_msg"}`
145 * Example response:
146 ```json
147 {
148 "id": "abcdefg",
149 "following": true,
150 "followed_by": false,
151 "blocking": false,
152 "muting": false,
153 "muting_notifications": false,
154 "subscribing": true,
155 "requested": false,
156 "domain_blocking": false,
157 "showing_reblogs": true,
158 "endorsed": false
159 }
160 ```
161
162 ## `/api/v1/pleroma/accounts/:id/unsubscribe`
163 ### Unsubscribe to stop receiving notifications from user statuses
164 * Method `POST`
165 * Authentication: required
166 * Params:
167 * `id`: account id to unsubscribe from
168 * Response: JSON, returns a mastodon relationship object on success, otherwise returns `{"error": "error_msg"}`
169 * Example response:
170 ```json
171 {
172 "id": "abcdefg",
173 "following": true,
174 "followed_by": false,
175 "blocking": false,
176 "muting": false,
177 "muting_notifications": false,
178 "subscribing": false,
179 "requested": false,
180 "domain_blocking": false,
181 "showing_reblogs": true,
182 "endorsed": false
183 }
184 ```
185
186 ## `/api/v1/pleroma/accounts/:id/favourites`
187 ### Returns favorites timeline of any user
188 * Method `GET`
189 * Authentication: not required
190 * Params:
191 * `id`: the id of the account for whom to return results
192 * `limit`: optional, the number of records to retrieve
193 * `since_id`: optional, returns results that are more recent than the specified id
194 * `max_id`: optional, returns results that are older than the specified id
195 * Response: JSON, returns a list of Mastodon Status entities on success, otherwise returns `{"error": "error_msg"}`
196 * Example response:
197 ```json
198 [
199 {
200 "account": {
201 "id": "9hptFmUF3ztxYh3Svg",
202 "url": "https://pleroma.example.org/users/nick2",
203 "username": "nick2",
204 ...
205 },
206 "application": {"name": "Web", "website": null},
207 "bookmarked": false,
208 "card": null,
209 "content": "This is :moominmamma: note 0",
210 "created_at": "2019-04-15T15:42:15.000Z",
211 "emojis": [],
212 "favourited": false,
213 "favourites_count": 1,
214 "id": "9hptFmVJ02khbzYJaS",
215 "in_reply_to_account_id": null,
216 "in_reply_to_id": null,
217 "language": null,
218 "media_attachments": [],
219 "mentions": [],
220 "muted": false,
221 "pinned": false,
222 "pleroma": {
223 "content": {"text/plain": "This is :moominmamma: note 0"},
224 "conversation_id": 13679,
225 "local": true,
226 "spoiler_text": {"text/plain": "2hu"}
227 },
228 "reblog": null,
229 "reblogged": false,
230 "reblogs_count": 0,
231 "replies_count": 0,
232 "sensitive": false,
233 "spoiler_text": "2hu",
234 "tags": [{"name": "2hu", "url": "/tag/2hu"}],
235 "uri": "https://pleroma.example.org/objects/198ed2a1-7912-4482-b559-244a0369e984",
236 "url": "https://pleroma.example.org/notice/9hptFmVJ02khbzYJaS",
237 "visibility": "public"
238 }
239 ]
240 ```
241
242 ## `/api/v1/pleroma/accounts/update_*`
243 ### Set and clear account avatar, banner, and background
244
245 - PATCH `/api/v1/pleroma/accounts/update_avatar`: Set/clear user avatar image
246 - PATCH `/api/v1/pleroma/accounts/update_banner`: Set/clear user banner image
247 - PATCH `/api/v1/pleroma/accounts/update_background`: Set/clear user background image
248
249 ## `/api/v1/pleroma/accounts/confirmation_resend`
250 ### Resend confirmation email
251 * Method `POST`
252 * Params:
253 * `email`: email of that needs to be verified
254 * Authentication: not required
255 * Response: 204 No Content
256
257 ## `/api/v1/pleroma/mascot`
258 ### Gets user mascot image
259 * Method `GET`
260 * Authentication: required
261
262 * Response: JSON. Returns a mastodon media attachment entity.
263 * Example response:
264 ```json
265 {
266 "id": "abcdefg",
267 "url": "https://pleroma.example.org/media/abcdefg.png",
268 "type": "image",
269 "pleroma": {
270 "mime_type": "image/png"
271 }
272 }
273 ```
274
275 ### Updates user mascot image
276 * Method `PUT`
277 * Authentication: required
278 * Params:
279 * `image`: Multipart image
280 * Response: JSON. Returns a mastodon media attachment entity
281 when successful, otherwise returns HTTP 415 `{"error": "error_msg"}`
282 * Example response:
283 ```json
284 {
285 "id": "abcdefg",
286 "url": "https://pleroma.example.org/media/abcdefg.png",
287 "type": "image",
288 "pleroma": {
289 "mime_type": "image/png"
290 }
291 }
292 ```
293 * Note: Behaves exactly the same as `POST /api/v1/upload`.
294 Can only accept images - any attempt to upload non-image files will be met with `HTTP 415 Unsupported Media Type`.
295
296 ## `/api/pleroma/notification_settings`
297 ### Updates user notification settings
298 * Method `PUT`
299 * Authentication: required
300 * Params:
301 * `followers`: BOOLEAN field, receives notifications from followers
302 * `follows`: BOOLEAN field, receives notifications from people the user follows
303 * `remote`: BOOLEAN field, receives notifications from people on remote instances
304 * `local`: BOOLEAN field, receives notifications from people on the local instance
305 * Response: JSON. Returns `{"status": "success"}` if the update was successful, otherwise returns `{"error": "error_msg"}`
306
307 ## `/api/pleroma/healthcheck`
308 ### Healthcheck endpoint with additional system data.
309 * Method `GET`
310 * Authentication: not required
311 * Params: none
312 * Response: JSON, statuses (200 - healthy, 503 unhealthy).
313 * Example response:
314 ```json
315 {
316 "pool_size": 0, # database connection pool
317 "active": 0, # active processes
318 "idle": 0, # idle processes
319 "memory_used": 0.00, # Memory used
320 "healthy": true # Instance state
321 }
322 ```
323
324 # Pleroma Conversations
325
326 Pleroma Conversations have the same general structure that Mastodon Conversations have. The behavior differs in the following ways when using these endpoints:
327
328 1. Pleroma Conversations never add or remove recipients, unless explicitly changed by the user.
329 2. Pleroma Conversations statuses can be requested by Conversation id.
330 3. Pleroma Conversations can be replied to.
331
332 Conversations have the additional field "recipients" under the "pleroma" key. This holds a list of all the accounts that will receive a message in this conversation.
333
334 The status posting endpoint takes an additional parameter, `in_reply_to_conversation_id`, which, when set, will set the visiblity to direct and address only the people who are the recipients of that Conversation.
335
336
337 ## `GET /api/v1/pleroma/conversations/:id/statuses`
338 ### Timeline for a given conversation
339 * Method `GET`
340 * Authentication: required
341 * Params: Like other timelines
342 * Response: JSON, statuses (200 - healthy, 503 unhealthy).
343
344 ## `GET /api/v1/pleroma/conversations/:id`
345 ### The conversation with the given ID.
346 * Method `GET`
347 * Authentication: required
348 * Params: None
349 * Response: JSON, statuses (200 - healthy, 503 unhealthy).
350
351 ## `PATCH /api/v1/pleroma/conversations/:id`
352 ### Update a conversation. Used to change the set of recipients.
353 * Method `PATCH`
354 * Authentication: required
355 * Params:
356 * `recipients`: A list of ids of users that should receive posts to this conversation. This will replace the current list of recipients, so submit the full list. The owner of owner of the conversation will always be part of the set of recipients, though.
357 * Response: JSON, statuses (200 - healthy, 503 unhealthy)