mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-29 22:10:52 +01:00
31 lines
502 B
Plaintext
31 lines
502 B
Plaintext
meta {
|
|
name: Create Delay Profile
|
|
type: http
|
|
seq: 6
|
|
}
|
|
|
|
post {
|
|
url: {{radarrUrl}}/api/v3/delayprofile
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
headers {
|
|
X-Api-Key: {{radarrApiKey}}
|
|
Content-Type: application/json
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"enableUsenet": true,
|
|
"enableTorrent": true,
|
|
"preferredProtocol": "usenet",
|
|
"usenetDelay": 30,
|
|
"torrentDelay": 60,
|
|
"bypassIfHighestQuality": true,
|
|
"bypassIfAboveCustomFormatScore": false,
|
|
"minimumCustomFormatScore": 0,
|
|
"tags": []
|
|
}
|
|
}
|