add_new
Add new media content to your library by specifying service, title, and foreign ID, enabling organized media management and automated workflows.
Instructions
Add new media to library
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| foreignId | Yes | ||
| monitored | No | ||
| qualityProfileId | No | ||
| rootFolderPath | No | ||
| service | Yes | ||
| title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"foreignId": {
"type": "number"
},
"monitored": {
"type": "boolean"
},
"qualityProfileId": {
"type": "number"
},
"rootFolderPath": {
"type": "string"
},
"service": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"service",
"title",
"foreignId"
],
"type": "object"
}