From 21c297024ffc2bfd5de6b80e301205c7fa688b3f Mon Sep 17 00:00:00 2001 From: userdocs <16525024+userdocs@users.noreply.github.com> Date: Tue, 1 Dec 2020 04:17:47 +0000 Subject: [PATCH] Update swagger.json (#5439) [skip ci] Fix: /API Key/apikey generation when using the https://radarr.video/docs/api/ and setting an api key. It currently generates this output which will not work with Radarr v3 ``` curl -X GET "http://localhost:7878/api/v3/system/status?API%20Key=awawfaw" -H "accept: application/json" ``` --- src/Radarr.Api.V3/swagger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Radarr.Api.V3/swagger.json b/src/Radarr.Api.V3/swagger.json index 08cd5c99bf..39758174b0 100644 --- a/src/Radarr.Api.V3/swagger.json +++ b/src/Radarr.Api.V3/swagger.json @@ -3994,7 +3994,7 @@ "description": "Used when not providing the key via URL" }, "apikey": { - "name": "API Key", + "name": "apikey", "type": "apiKey", "in": "query", "description": "Used when not providing the key via header" @@ -4045,4 +4045,4 @@ "name": "System" } ] -} \ No newline at end of file +}