Document undocumented API endpoints (#2805)

* Document avatar removal API endpoint

* Document notification settings API endpoints

* Document access token list and delete API endpoints

* Document join code API endpoints

* Fix access token delete URL parameter name in docs
This commit is contained in:
Rob Zolkos
2026-04-07 15:56:43 -04:00
committed by GitHub
parent 21981898d2
commit 98b6bdcfb7
4 changed files with 130 additions and 0 deletions
+36
View File
@@ -60,3 +60,39 @@ Marks all unread notifications as read.
__Response:__
Returns `204 No Content` on success.
## `GET /:account_slug/notifications/settings`
Returns the current user's notification settings.
__Response:__
```json
{
"bundle_email_frequency": "every_few_hours"
}
```
Possible values for `bundle_email_frequency`: `never`, `every_few_hours`, `daily`, `weekly`.
## `PUT /:account_slug/notifications/settings`
Updates the current user's notification settings.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `bundle_email_frequency` | string | Yes | How often to bundle notification emails. One of: `never`, `every_few_hours`, `daily`, `weekly` |
__Request:__
```json
{
"user_settings": {
"bundle_email_frequency": "daily"
}
}
```
__Response:__
Returns `204 No Content` on success.