Automated API Docs update

ignore-downstream
pull/6593/head
Sonarr 2 months ago committed by Mark McDowall
parent 32c32e2f88
commit 653963a247

@ -3070,7 +3070,8 @@
}
}
}
}
},
"deprecated": true
},
"post": {
"tags": [
@ -3109,6 +3110,59 @@
}
}
},
"/api/v3/importlistexclusion/paged": {
"get": {
"tags": [
"ImportListExclusion"
],
"parameters": [
{
"name": "page",
"in": "query",
"schema": {
"type": "integer",
"format": "int32",
"default": 1
}
},
{
"name": "pageSize",
"in": "query",
"schema": {
"type": "integer",
"format": "int32",
"default": 10
}
},
{
"name": "sortKey",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "sortDirection",
"in": "query",
"schema": {
"$ref": "#/components/schemas/SortDirection"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ImportListExclusionResourcePagingResource"
}
}
}
}
}
}
},
"/api/v3/importlistexclusion/{id}": {
"put": {
"tags": [
@ -8889,6 +8943,38 @@
},
"additionalProperties": false
},
"ImportListExclusionResourcePagingResource": {
"type": "object",
"properties": {
"page": {
"type": "integer",
"format": "int32"
},
"pageSize": {
"type": "integer",
"format": "int32"
},
"sortKey": {
"type": "string",
"nullable": true
},
"sortDirection": {
"$ref": "#/components/schemas/SortDirection"
},
"totalRecords": {
"type": "integer",
"format": "int32"
},
"records": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ImportListExclusionResource"
},
"nullable": true
}
},
"additionalProperties": false
},
"ImportListResource": {
"type": "object",
"properties": {

Loading…
Cancel
Save