From 8c4e39d098706a4eb79de57f56bb51b14479a69a Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sat, 13 Dec 2025 09:32:56 +0800 Subject: [PATCH] feat(openapi): add quick connect endpoint for linking jellyfin/emby accounts --- seerr-api.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/seerr-api.yml b/seerr-api.yml index 918f92f8..7d850210 100644 --- a/seerr-api.yml +++ b/seerr-api.yml @@ -4992,6 +4992,38 @@ paths: description: Unlink request invalid '404': description: User does not exist + /user/{userId}/settings/linked-accounts/jellyfin/quickconnect: + post: + summary: Link Jellyfin/Emby account with Quick Connect + description: Links a Jellyfin/Emby account to the user's profile using Quick Connect authentication + tags: + - users + parameters: + - in: path + name: userId + required: true + schema: + type: number + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + secret: + type: string + required: + - secret + responses: + '204': + description: Account successfully linked + '401': + description: Unauthorized + '422': + description: Account already linked + '500': + description: Server error /user/{userId}/settings/notifications: get: summary: Get notification settings for a user