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"
```
This commit is contained in:
userdocs 2020-12-01 04:17:47 +00:00 committed by GitHub
parent c4324c8e47
commit 21c297024f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}
]
}
}