docs: quality definition requests

This commit is contained in:
Sam Chau
2026-01-22 08:01:33 +10:30
parent 14cfbdc60c
commit 9a55932500
3 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
meta {
name: Get Quality Definitions
type: http
seq: 9
}
get {
url: {{radarrUrl}}/api/v3/qualitydefinition
body: none
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
}

View File

@@ -0,0 +1,34 @@
meta {
name: Update Quality Definition
type: http
seq: 10
}
put {
url: {{radarrUrl}}/api/v3/qualitydefinition/1
body: json
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
Content-Type: application/json
}
body:json {
{
"id": 1,
"quality": {
"id": 0,
"name": "Unknown",
"source": "unknown",
"resolution": 0,
"modifier": "none"
},
"title": "Unknown",
"weight": 1,
"minSize": 0,
"maxSize": 2001,
"preferredSize": 1990
}
}

View File

@@ -0,0 +1,36 @@
meta {
name: Update Quality Definitions (All)
type: http
seq: 11
}
put {
url: {{radarrUrl}}/api/v3/qualitydefinition/update
body: json
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
Content-Type: application/json
}
body:json {
[
{
"id": 8,
"quality": {
"id": 1,
"name": "SDTV",
"source": "tv",
"resolution": 480,
"modifier": "none"
},
"title": "SDTV",
"weight": 8,
"minSize": 0,
"maxSize": 2000,
"preferredSize": 1990
}
]
}