1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-06-28 00:44:48 +02:00

Clarify optional parameters in the POST section.

Spencer Curtis 2019-01-29 03:16:55 -07:00
parent cb6c621d35
commit 16e172a93e

@ -152,8 +152,13 @@ Required:
- `path (string)` - full path to the movie on disk **or** `rootFolderPath (string)` - full path will be created by combining the rootFolderPath with the movie title
Optional:
`monitored (bool)`
`addOptions (object)`
- `monitored (bool)` - whether the movie should be monitored or not.
- `addOptions (object)` - should contain a `searchForMovie (string)` key with a `bool` value whether Radarr should search for the movie upon being added. For example:
```JSON
"addOptions" : {
"searchForMovie" : true
}
```
##### Returns JsonObject ######