{"id":23286875,"url":"https://github.com/devopsarr/readarr-go","last_synced_at":"2025-06-18T03:34:09.041Z","repository":{"id":65298874,"uuid":"585013494","full_name":"devopsarr/readarr-go","owner":"devopsarr","description":"go SDK for Readarr","archived":false,"fork":false,"pushed_at":"2025-04-27T18:23:18.000Z","size":2091,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-14T22:18:14.149Z","etag":null,"topics":["go","golang","readarr","sdk-python"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devopsarr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-04T05:02:13.000Z","updated_at":"2025-03-14T09:35:48.000Z","dependencies_parsed_at":"2023-12-22T12:08:44.974Z","dependency_job_id":"59bb5485-ce63-4c15-9cc0-046bdea1ef8c","html_url":"https://github.com/devopsarr/readarr-go","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/devopsarr/readarr-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Freadarr-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Freadarr-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Freadarr-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Freadarr-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devopsarr","download_url":"https://codeload.github.com/devopsarr/readarr-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Freadarr-go/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260482720,"owners_count":23015975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","readarr","sdk-python"],"created_at":"2024-12-20T02:14:58.485Z","updated_at":"2025-06-18T03:34:04.018Z","avatar_url":"https://github.com/devopsarr.png","language":null,"readme":"# Go API client for readarr\n\nReadarr API docs\n\n## Overview\nThis API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.\n\n- API version: v0.3.18.2411\n- Package version: 1.0.0 \u003c!--- x-release-please-version --\u003e\n- Generator version: 7.10.0\n- Build package: org.openapitools.codegen.languages.GoClientCodegen\n\n## Installation\n\nInstall the following dependencies:\n\n```sh\ngo get github.com/stretchr/testify/assert\ngo get golang.org/x/net/context\n```\n\nPut the package under your project folder and add the following in import:\n\n```go\nimport readarr \"github.com/devopsarr/readarr-go/readarr\"\n```\n\nTo use a proxy, set the environment variable `HTTP_PROXY`:\n\n```go\nos.Setenv(\"HTTP_PROXY\", \"http://proxy_name:proxy_port\")\n```\n\n## Configuration of Server URL\n\nDefault configuration comes with `Servers` field that contains server objects as defined in the OpenAPI specification.\n\n### Select Server Configuration\n\nFor using other server than the one defined on index 0 set context value `readarr.ContextServerIndex` of type `int`.\n\n```go\nctx := context.WithValue(context.Background(), readarr.ContextServerIndex, 1)\n```\n\n### Templated Server URL\n\nTemplated server URL is formatted using default variables from configuration or from context value `readarr.ContextServerVariables` of type `map[string]string`.\n\n```go\nctx := context.WithValue(context.Background(), readarr.ContextServerVariables, map[string]string{\n\t\"basePath\": \"v2\",\n})\n```\n\nNote, enum values are always validated and all unused variables are silently ignored.\n\n### URLs Configuration per Operation\n\nEach operation can use different server URL defined using `OperationServers` map in the `Configuration`.\nAn operation is uniquely identified by `\"{classname}Service.{nickname}\"` string.\nSimilar rules for overriding default operation server index and variables applies by using `readarr.ContextOperationServerIndices` and `readarr.ContextOperationServerVariables` context maps.\n\n```go\nctx := context.WithValue(context.Background(), readarr.ContextOperationServerIndices, map[string]int{\n\t\"{classname}Service.{nickname}\": 2,\n})\nctx = context.WithValue(context.Background(), readarr.ContextOperationServerVariables, map[string]map[string]string{\n\t\"{classname}Service.{nickname}\": {\n\t\t\"port\": \"8443\",\n\t},\n})\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost:8787*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ApiInfoAPI* | [**GetApi**](docs/ApiInfoAPI.md#getapi) | **Get** /api | \n*AuthenticationAPI* | [**CreateLogin**](docs/AuthenticationAPI.md#createlogin) | **Post** /login | \n*AuthenticationAPI* | [**GetLogout**](docs/AuthenticationAPI.md#getlogout) | **Get** /logout | \n*AuthorAPI* | [**CreateAuthor**](docs/AuthorAPI.md#createauthor) | **Post** /api/v1/author | \n*AuthorAPI* | [**DeleteAuthor**](docs/AuthorAPI.md#deleteauthor) | **Delete** /api/v1/author/{id} | \n*AuthorAPI* | [**GetAuthorById**](docs/AuthorAPI.md#getauthorbyid) | **Get** /api/v1/author/{id} | \n*AuthorAPI* | [**ListAuthor**](docs/AuthorAPI.md#listauthor) | **Get** /api/v1/author | \n*AuthorAPI* | [**UpdateAuthor**](docs/AuthorAPI.md#updateauthor) | **Put** /api/v1/author/{id} | \n*AuthorEditorAPI* | [**DeleteAuthorEditor**](docs/AuthorEditorAPI.md#deleteauthoreditor) | **Delete** /api/v1/author/editor | \n*AuthorEditorAPI* | [**PutAuthorEditor**](docs/AuthorEditorAPI.md#putauthoreditor) | **Put** /api/v1/author/editor | \n*AuthorLookupAPI* | [**GetAuthorLookup**](docs/AuthorLookupAPI.md#getauthorlookup) | **Get** /api/v1/author/lookup | \n*BackupAPI* | [**CreateSystemBackupRestoreById**](docs/BackupAPI.md#createsystembackuprestorebyid) | **Post** /api/v1/system/backup/restore/{id} | \n*BackupAPI* | [**CreateSystemBackupRestoreUpload**](docs/BackupAPI.md#createsystembackuprestoreupload) | **Post** /api/v1/system/backup/restore/upload | \n*BackupAPI* | [**DeleteSystemBackup**](docs/BackupAPI.md#deletesystembackup) | **Delete** /api/v1/system/backup/{id} | \n*BackupAPI* | [**ListSystemBackup**](docs/BackupAPI.md#listsystembackup) | **Get** /api/v1/system/backup | \n*BlocklistAPI* | [**DeleteBlocklist**](docs/BlocklistAPI.md#deleteblocklist) | **Delete** /api/v1/blocklist/{id} | \n*BlocklistAPI* | [**DeleteBlocklistBulk**](docs/BlocklistAPI.md#deleteblocklistbulk) | **Delete** /api/v1/blocklist/bulk | \n*BlocklistAPI* | [**GetBlocklist**](docs/BlocklistAPI.md#getblocklist) | **Get** /api/v1/blocklist | \n*BookAPI* | [**CreateBook**](docs/BookAPI.md#createbook) | **Post** /api/v1/book | \n*BookAPI* | [**DeleteBook**](docs/BookAPI.md#deletebook) | **Delete** /api/v1/book/{id} | \n*BookAPI* | [**GetBookById**](docs/BookAPI.md#getbookbyid) | **Get** /api/v1/book/{id} | \n*BookAPI* | [**GetBookOverview**](docs/BookAPI.md#getbookoverview) | **Get** /api/v1/book/{id}/overview | \n*BookAPI* | [**ListBook**](docs/BookAPI.md#listbook) | **Get** /api/v1/book | \n*BookAPI* | [**PutBookMonitor**](docs/BookAPI.md#putbookmonitor) | **Put** /api/v1/book/monitor | \n*BookAPI* | [**UpdateBook**](docs/BookAPI.md#updatebook) | **Put** /api/v1/book/{id} | \n*BookEditorAPI* | [**DeleteBookEditor**](docs/BookEditorAPI.md#deletebookeditor) | **Delete** /api/v1/book/editor | \n*BookEditorAPI* | [**PutBookEditor**](docs/BookEditorAPI.md#putbookeditor) | **Put** /api/v1/book/editor | \n*BookFileAPI* | [**DeleteBookFile**](docs/BookFileAPI.md#deletebookfile) | **Delete** /api/v1/bookfile/{id} | \n*BookFileAPI* | [**DeleteBookFileBulk**](docs/BookFileAPI.md#deletebookfilebulk) | **Delete** /api/v1/bookfile/bulk | \n*BookFileAPI* | [**GetBookFileById**](docs/BookFileAPI.md#getbookfilebyid) | **Get** /api/v1/bookfile/{id} | \n*BookFileAPI* | [**ListBookFile**](docs/BookFileAPI.md#listbookfile) | **Get** /api/v1/bookfile | \n*BookFileAPI* | [**PutBookFileEditor**](docs/BookFileAPI.md#putbookfileeditor) | **Put** /api/v1/bookfile/editor | \n*BookFileAPI* | [**UpdateBookFile**](docs/BookFileAPI.md#updatebookfile) | **Put** /api/v1/bookfile/{id} | \n*BookLookupAPI* | [**GetBookLookup**](docs/BookLookupAPI.md#getbooklookup) | **Get** /api/v1/book/lookup | \n*BookshelfAPI* | [**CreateBookshelf**](docs/BookshelfAPI.md#createbookshelf) | **Post** /api/v1/bookshelf | \n*CalendarAPI* | [**GetCalendarById**](docs/CalendarAPI.md#getcalendarbyid) | **Get** /api/v1/calendar/{id} | \n*CalendarAPI* | [**ListCalendar**](docs/CalendarAPI.md#listcalendar) | **Get** /api/v1/calendar | \n*CalendarFeedAPI* | [**GetFeedV1CalendarReadarrIcs**](docs/CalendarFeedAPI.md#getfeedv1calendarreadarrics) | **Get** /feed/v1/calendar/readarr.ics | \n*CommandAPI* | [**CreateCommand**](docs/CommandAPI.md#createcommand) | **Post** /api/v1/command | \n*CommandAPI* | [**DeleteCommand**](docs/CommandAPI.md#deletecommand) | **Delete** /api/v1/command/{id} | \n*CommandAPI* | [**GetCommandById**](docs/CommandAPI.md#getcommandbyid) | **Get** /api/v1/command/{id} | \n*CommandAPI* | [**ListCommand**](docs/CommandAPI.md#listcommand) | **Get** /api/v1/command | \n*CustomFilterAPI* | [**CreateCustomFilter**](docs/CustomFilterAPI.md#createcustomfilter) | **Post** /api/v1/customfilter | \n*CustomFilterAPI* | [**DeleteCustomFilter**](docs/CustomFilterAPI.md#deletecustomfilter) | **Delete** /api/v1/customfilter/{id} | \n*CustomFilterAPI* | [**GetCustomFilterById**](docs/CustomFilterAPI.md#getcustomfilterbyid) | **Get** /api/v1/customfilter/{id} | \n*CustomFilterAPI* | [**ListCustomFilter**](docs/CustomFilterAPI.md#listcustomfilter) | **Get** /api/v1/customfilter | \n*CustomFilterAPI* | [**UpdateCustomFilter**](docs/CustomFilterAPI.md#updatecustomfilter) | **Put** /api/v1/customfilter/{id} | \n*CustomFormatAPI* | [**CreateCustomFormat**](docs/CustomFormatAPI.md#createcustomformat) | **Post** /api/v1/customformat | \n*CustomFormatAPI* | [**DeleteCustomFormat**](docs/CustomFormatAPI.md#deletecustomformat) | **Delete** /api/v1/customformat/{id} | \n*CustomFormatAPI* | [**GetCustomFormatById**](docs/CustomFormatAPI.md#getcustomformatbyid) | **Get** /api/v1/customformat/{id} | \n*CustomFormatAPI* | [**GetCustomFormatSchema**](docs/CustomFormatAPI.md#getcustomformatschema) | **Get** /api/v1/customformat/schema | \n*CustomFormatAPI* | [**ListCustomFormat**](docs/CustomFormatAPI.md#listcustomformat) | **Get** /api/v1/customformat | \n*CustomFormatAPI* | [**UpdateCustomFormat**](docs/CustomFormatAPI.md#updatecustomformat) | **Put** /api/v1/customformat/{id} | \n*CutoffAPI* | [**GetWantedCutoff**](docs/CutoffAPI.md#getwantedcutoff) | **Get** /api/v1/wanted/cutoff | \n*CutoffAPI* | [**GetWantedCutoffById**](docs/CutoffAPI.md#getwantedcutoffbyid) | **Get** /api/v1/wanted/cutoff/{id} | \n*DelayProfileAPI* | [**CreateDelayProfile**](docs/DelayProfileAPI.md#createdelayprofile) | **Post** /api/v1/delayprofile | \n*DelayProfileAPI* | [**DeleteDelayProfile**](docs/DelayProfileAPI.md#deletedelayprofile) | **Delete** /api/v1/delayprofile/{id} | \n*DelayProfileAPI* | [**GetDelayProfileById**](docs/DelayProfileAPI.md#getdelayprofilebyid) | **Get** /api/v1/delayprofile/{id} | \n*DelayProfileAPI* | [**ListDelayProfile**](docs/DelayProfileAPI.md#listdelayprofile) | **Get** /api/v1/delayprofile | \n*DelayProfileAPI* | [**UpdateDelayProfile**](docs/DelayProfileAPI.md#updatedelayprofile) | **Put** /api/v1/delayprofile/{id} | \n*DelayProfileAPI* | [**UpdateDelayProfileReorder**](docs/DelayProfileAPI.md#updatedelayprofilereorder) | **Put** /api/v1/delayprofile/reorder/{id} | \n*DevelopmentConfigAPI* | [**GetDevelopmentConfig**](docs/DevelopmentConfigAPI.md#getdevelopmentconfig) | **Get** /api/v1/config/development | \n*DevelopmentConfigAPI* | [**GetDevelopmentConfigById**](docs/DevelopmentConfigAPI.md#getdevelopmentconfigbyid) | **Get** /api/v1/config/development/{id} | \n*DevelopmentConfigAPI* | [**UpdateDevelopmentConfig**](docs/DevelopmentConfigAPI.md#updatedevelopmentconfig) | **Put** /api/v1/config/development/{id} | \n*DiskSpaceAPI* | [**ListDiskSpace**](docs/DiskSpaceAPI.md#listdiskspace) | **Get** /api/v1/diskspace | \n*DownloadClientAPI* | [**CreateDownloadClient**](docs/DownloadClientAPI.md#createdownloadclient) | **Post** /api/v1/downloadclient | \n*DownloadClientAPI* | [**CreateDownloadClientActionByName**](docs/DownloadClientAPI.md#createdownloadclientactionbyname) | **Post** /api/v1/downloadclient/action/{name} | \n*DownloadClientAPI* | [**DeleteDownloadClient**](docs/DownloadClientAPI.md#deletedownloadclient) | **Delete** /api/v1/downloadclient/{id} | \n*DownloadClientAPI* | [**DeleteDownloadClientBulk**](docs/DownloadClientAPI.md#deletedownloadclientbulk) | **Delete** /api/v1/downloadclient/bulk | \n*DownloadClientAPI* | [**GetDownloadClientById**](docs/DownloadClientAPI.md#getdownloadclientbyid) | **Get** /api/v1/downloadclient/{id} | \n*DownloadClientAPI* | [**ListDownloadClient**](docs/DownloadClientAPI.md#listdownloadclient) | **Get** /api/v1/downloadclient | \n*DownloadClientAPI* | [**ListDownloadClientSchema**](docs/DownloadClientAPI.md#listdownloadclientschema) | **Get** /api/v1/downloadclient/schema | \n*DownloadClientAPI* | [**PutDownloadClientBulk**](docs/DownloadClientAPI.md#putdownloadclientbulk) | **Put** /api/v1/downloadclient/bulk | \n*DownloadClientAPI* | [**TestDownloadClient**](docs/DownloadClientAPI.md#testdownloadclient) | **Post** /api/v1/downloadclient/test | \n*DownloadClientAPI* | [**TestallDownloadClient**](docs/DownloadClientAPI.md#testalldownloadclient) | **Post** /api/v1/downloadclient/testall | \n*DownloadClientAPI* | [**UpdateDownloadClient**](docs/DownloadClientAPI.md#updatedownloadclient) | **Put** /api/v1/downloadclient/{id} | \n*DownloadClientConfigAPI* | [**GetDownloadClientConfig**](docs/DownloadClientConfigAPI.md#getdownloadclientconfig) | **Get** /api/v1/config/downloadclient | \n*DownloadClientConfigAPI* | [**GetDownloadClientConfigById**](docs/DownloadClientConfigAPI.md#getdownloadclientconfigbyid) | **Get** /api/v1/config/downloadclient/{id} | \n*DownloadClientConfigAPI* | [**UpdateDownloadClientConfig**](docs/DownloadClientConfigAPI.md#updatedownloadclientconfig) | **Put** /api/v1/config/downloadclient/{id} | \n*EditionAPI* | [**ListEdition**](docs/EditionAPI.md#listedition) | **Get** /api/v1/edition | \n*FileSystemAPI* | [**GetFileSystem**](docs/FileSystemAPI.md#getfilesystem) | **Get** /api/v1/filesystem | \n*FileSystemAPI* | [**GetFileSystemMediafiles**](docs/FileSystemAPI.md#getfilesystemmediafiles) | **Get** /api/v1/filesystem/mediafiles | \n*FileSystemAPI* | [**GetFileSystemType**](docs/FileSystemAPI.md#getfilesystemtype) | **Get** /api/v1/filesystem/type | \n*HealthAPI* | [**ListHealth**](docs/HealthAPI.md#listhealth) | **Get** /api/v1/health | \n*HistoryAPI* | [**CreateHistoryFailedById**](docs/HistoryAPI.md#createhistoryfailedbyid) | **Post** /api/v1/history/failed/{id} | \n*HistoryAPI* | [**GetHistory**](docs/HistoryAPI.md#gethistory) | **Get** /api/v1/history | \n*HistoryAPI* | [**ListHistoryAuthor**](docs/HistoryAPI.md#listhistoryauthor) | **Get** /api/v1/history/author | \n*HistoryAPI* | [**ListHistorySince**](docs/HistoryAPI.md#listhistorysince) | **Get** /api/v1/history/since | \n*HostConfigAPI* | [**GetHostConfig**](docs/HostConfigAPI.md#gethostconfig) | **Get** /api/v1/config/host | \n*HostConfigAPI* | [**GetHostConfigById**](docs/HostConfigAPI.md#gethostconfigbyid) | **Get** /api/v1/config/host/{id} | \n*HostConfigAPI* | [**UpdateHostConfig**](docs/HostConfigAPI.md#updatehostconfig) | **Put** /api/v1/config/host/{id} | \n*ImportListAPI* | [**CreateImportList**](docs/ImportListAPI.md#createimportlist) | **Post** /api/v1/importlist | \n*ImportListAPI* | [**CreateImportListActionByName**](docs/ImportListAPI.md#createimportlistactionbyname) | **Post** /api/v1/importlist/action/{name} | \n*ImportListAPI* | [**DeleteImportList**](docs/ImportListAPI.md#deleteimportlist) | **Delete** /api/v1/importlist/{id} | \n*ImportListAPI* | [**DeleteImportListBulk**](docs/ImportListAPI.md#deleteimportlistbulk) | **Delete** /api/v1/importlist/bulk | \n*ImportListAPI* | [**GetImportListById**](docs/ImportListAPI.md#getimportlistbyid) | **Get** /api/v1/importlist/{id} | \n*ImportListAPI* | [**ListImportList**](docs/ImportListAPI.md#listimportlist) | **Get** /api/v1/importlist | \n*ImportListAPI* | [**ListImportListSchema**](docs/ImportListAPI.md#listimportlistschema) | **Get** /api/v1/importlist/schema | \n*ImportListAPI* | [**PutImportListBulk**](docs/ImportListAPI.md#putimportlistbulk) | **Put** /api/v1/importlist/bulk | \n*ImportListAPI* | [**TestImportList**](docs/ImportListAPI.md#testimportlist) | **Post** /api/v1/importlist/test | \n*ImportListAPI* | [**TestallImportList**](docs/ImportListAPI.md#testallimportlist) | **Post** /api/v1/importlist/testall | \n*ImportListAPI* | [**UpdateImportList**](docs/ImportListAPI.md#updateimportlist) | **Put** /api/v1/importlist/{id} | \n*ImportListExclusionAPI* | [**CreateImportListExclusion**](docs/ImportListExclusionAPI.md#createimportlistexclusion) | **Post** /api/v1/importlistexclusion | \n*ImportListExclusionAPI* | [**DeleteImportListExclusion**](docs/ImportListExclusionAPI.md#deleteimportlistexclusion) | **Delete** /api/v1/importlistexclusion/{id} | \n*ImportListExclusionAPI* | [**GetImportListExclusionById**](docs/ImportListExclusionAPI.md#getimportlistexclusionbyid) | **Get** /api/v1/importlistexclusion/{id} | \n*ImportListExclusionAPI* | [**ListImportListExclusion**](docs/ImportListExclusionAPI.md#listimportlistexclusion) | **Get** /api/v1/importlistexclusion | \n*ImportListExclusionAPI* | [**UpdateImportListExclusion**](docs/ImportListExclusionAPI.md#updateimportlistexclusion) | **Put** /api/v1/importlistexclusion/{id} | \n*IndexerAPI* | [**CreateIndexer**](docs/IndexerAPI.md#createindexer) | **Post** /api/v1/indexer | \n*IndexerAPI* | [**CreateIndexerActionByName**](docs/IndexerAPI.md#createindexeractionbyname) | **Post** /api/v1/indexer/action/{name} | \n*IndexerAPI* | [**DeleteIndexer**](docs/IndexerAPI.md#deleteindexer) | **Delete** /api/v1/indexer/{id} | \n*IndexerAPI* | [**DeleteIndexerBulk**](docs/IndexerAPI.md#deleteindexerbulk) | **Delete** /api/v1/indexer/bulk | \n*IndexerAPI* | [**GetIndexerById**](docs/IndexerAPI.md#getindexerbyid) | **Get** /api/v1/indexer/{id} | \n*IndexerAPI* | [**ListIndexer**](docs/IndexerAPI.md#listindexer) | **Get** /api/v1/indexer | \n*IndexerAPI* | [**ListIndexerSchema**](docs/IndexerAPI.md#listindexerschema) | **Get** /api/v1/indexer/schema | \n*IndexerAPI* | [**PutIndexerBulk**](docs/IndexerAPI.md#putindexerbulk) | **Put** /api/v1/indexer/bulk | \n*IndexerAPI* | [**TestIndexer**](docs/IndexerAPI.md#testindexer) | **Post** /api/v1/indexer/test | \n*IndexerAPI* | [**TestallIndexer**](docs/IndexerAPI.md#testallindexer) | **Post** /api/v1/indexer/testall | \n*IndexerAPI* | [**UpdateIndexer**](docs/IndexerAPI.md#updateindexer) | **Put** /api/v1/indexer/{id} | \n*IndexerConfigAPI* | [**GetIndexerConfig**](docs/IndexerConfigAPI.md#getindexerconfig) | **Get** /api/v1/config/indexer | \n*IndexerConfigAPI* | [**GetIndexerConfigById**](docs/IndexerConfigAPI.md#getindexerconfigbyid) | **Get** /api/v1/config/indexer/{id} | \n*IndexerConfigAPI* | [**UpdateIndexerConfig**](docs/IndexerConfigAPI.md#updateindexerconfig) | **Put** /api/v1/config/indexer/{id} | \n*LanguageAPI* | [**GetLanguageById**](docs/LanguageAPI.md#getlanguagebyid) | **Get** /api/v1/language/{id} | \n*LanguageAPI* | [**ListLanguage**](docs/LanguageAPI.md#listlanguage) | **Get** /api/v1/language | \n*LocalizationAPI* | [**GetLocalization**](docs/LocalizationAPI.md#getlocalization) | **Get** /api/v1/localization | \n*LogAPI* | [**GetLog**](docs/LogAPI.md#getlog) | **Get** /api/v1/log | \n*LogFileAPI* | [**GetLogFileByFilename**](docs/LogFileAPI.md#getlogfilebyfilename) | **Get** /api/v1/log/file/{filename} | \n*LogFileAPI* | [**ListLogFile**](docs/LogFileAPI.md#listlogfile) | **Get** /api/v1/log/file | \n*ManualImportAPI* | [**CreateManualImport**](docs/ManualImportAPI.md#createmanualimport) | **Post** /api/v1/manualimport | \n*ManualImportAPI* | [**ListManualImport**](docs/ManualImportAPI.md#listmanualimport) | **Get** /api/v1/manualimport | \n*MediaCoverAPI* | [**GetMediaCoverAuthorByFilename**](docs/MediaCoverAPI.md#getmediacoverauthorbyfilename) | **Get** /api/v1/mediacover/author/{authorId}/{filename} | \n*MediaCoverAPI* | [**GetMediaCoverBookByFilename**](docs/MediaCoverAPI.md#getmediacoverbookbyfilename) | **Get** /api/v1/mediacover/book/{bookId}/{filename} | \n*MediaManagementConfigAPI* | [**GetMediaManagementConfig**](docs/MediaManagementConfigAPI.md#getmediamanagementconfig) | **Get** /api/v1/config/mediamanagement | \n*MediaManagementConfigAPI* | [**GetMediaManagementConfigById**](docs/MediaManagementConfigAPI.md#getmediamanagementconfigbyid) | **Get** /api/v1/config/mediamanagement/{id} | \n*MediaManagementConfigAPI* | [**UpdateMediaManagementConfig**](docs/MediaManagementConfigAPI.md#updatemediamanagementconfig) | **Put** /api/v1/config/mediamanagement/{id} | \n*MetadataAPI* | [**CreateMetadata**](docs/MetadataAPI.md#createmetadata) | **Post** /api/v1/metadata | \n*MetadataAPI* | [**CreateMetadataActionByName**](docs/MetadataAPI.md#createmetadataactionbyname) | **Post** /api/v1/metadata/action/{name} | \n*MetadataAPI* | [**DeleteMetadata**](docs/MetadataAPI.md#deletemetadata) | **Delete** /api/v1/metadata/{id} | \n*MetadataAPI* | [**GetMetadataById**](docs/MetadataAPI.md#getmetadatabyid) | **Get** /api/v1/metadata/{id} | \n*MetadataAPI* | [**ListMetadata**](docs/MetadataAPI.md#listmetadata) | **Get** /api/v1/metadata | \n*MetadataAPI* | [**ListMetadataSchema**](docs/MetadataAPI.md#listmetadataschema) | **Get** /api/v1/metadata/schema | \n*MetadataAPI* | [**TestMetadata**](docs/MetadataAPI.md#testmetadata) | **Post** /api/v1/metadata/test | \n*MetadataAPI* | [**TestallMetadata**](docs/MetadataAPI.md#testallmetadata) | **Post** /api/v1/metadata/testall | \n*MetadataAPI* | [**UpdateMetadata**](docs/MetadataAPI.md#updatemetadata) | **Put** /api/v1/metadata/{id} | \n*MetadataProfileAPI* | [**CreateMetadataProfile**](docs/MetadataProfileAPI.md#createmetadataprofile) | **Post** /api/v1/metadataprofile | \n*MetadataProfileAPI* | [**DeleteMetadataProfile**](docs/MetadataProfileAPI.md#deletemetadataprofile) | **Delete** /api/v1/metadataprofile/{id} | \n*MetadataProfileAPI* | [**GetMetadataProfileById**](docs/MetadataProfileAPI.md#getmetadataprofilebyid) | **Get** /api/v1/metadataprofile/{id} | \n*MetadataProfileAPI* | [**ListMetadataProfile**](docs/MetadataProfileAPI.md#listmetadataprofile) | **Get** /api/v1/metadataprofile | \n*MetadataProfileAPI* | [**UpdateMetadataProfile**](docs/MetadataProfileAPI.md#updatemetadataprofile) | **Put** /api/v1/metadataprofile/{id} | \n*MetadataProfileSchemaAPI* | [**GetMetadataprofileSchema**](docs/MetadataProfileSchemaAPI.md#getmetadataprofileschema) | **Get** /api/v1/metadataprofile/schema | \n*MetadataProviderConfigAPI* | [**GetMetadataProviderConfig**](docs/MetadataProviderConfigAPI.md#getmetadataproviderconfig) | **Get** /api/v1/config/metadataprovider | \n*MetadataProviderConfigAPI* | [**GetMetadataProviderConfigById**](docs/MetadataProviderConfigAPI.md#getmetadataproviderconfigbyid) | **Get** /api/v1/config/metadataprovider/{id} | \n*MetadataProviderConfigAPI* | [**UpdateMetadataProviderConfig**](docs/MetadataProviderConfigAPI.md#updatemetadataproviderconfig) | **Put** /api/v1/config/metadataprovider/{id} | \n*MissingAPI* | [**GetWantedMissing**](docs/MissingAPI.md#getwantedmissing) | **Get** /api/v1/wanted/missing | \n*MissingAPI* | [**GetWantedMissingById**](docs/MissingAPI.md#getwantedmissingbyid) | **Get** /api/v1/wanted/missing/{id} | \n*NamingConfigAPI* | [**GetNamingConfig**](docs/NamingConfigAPI.md#getnamingconfig) | **Get** /api/v1/config/naming | \n*NamingConfigAPI* | [**GetNamingConfigById**](docs/NamingConfigAPI.md#getnamingconfigbyid) | **Get** /api/v1/config/naming/{id} | \n*NamingConfigAPI* | [**GetNamingConfigExamples**](docs/NamingConfigAPI.md#getnamingconfigexamples) | **Get** /api/v1/config/naming/examples | \n*NamingConfigAPI* | [**UpdateNamingConfig**](docs/NamingConfigAPI.md#updatenamingconfig) | **Put** /api/v1/config/naming/{id} | \n*NotificationAPI* | [**CreateNotification**](docs/NotificationAPI.md#createnotification) | **Post** /api/v1/notification | \n*NotificationAPI* | [**CreateNotificationActionByName**](docs/NotificationAPI.md#createnotificationactionbyname) | **Post** /api/v1/notification/action/{name} | \n*NotificationAPI* | [**DeleteNotification**](docs/NotificationAPI.md#deletenotification) | **Delete** /api/v1/notification/{id} | \n*NotificationAPI* | [**GetNotificationById**](docs/NotificationAPI.md#getnotificationbyid) | **Get** /api/v1/notification/{id} | \n*NotificationAPI* | [**ListNotification**](docs/NotificationAPI.md#listnotification) | **Get** /api/v1/notification | \n*NotificationAPI* | [**ListNotificationSchema**](docs/NotificationAPI.md#listnotificationschema) | **Get** /api/v1/notification/schema | \n*NotificationAPI* | [**TestNotification**](docs/NotificationAPI.md#testnotification) | **Post** /api/v1/notification/test | \n*NotificationAPI* | [**TestallNotification**](docs/NotificationAPI.md#testallnotification) | **Post** /api/v1/notification/testall | \n*NotificationAPI* | [**UpdateNotification**](docs/NotificationAPI.md#updatenotification) | **Put** /api/v1/notification/{id} | \n*ParseAPI* | [**GetParse**](docs/ParseAPI.md#getparse) | **Get** /api/v1/parse | \n*PingAPI* | [**GetPing**](docs/PingAPI.md#getping) | **Get** /ping | \n*QualityDefinitionAPI* | [**GetQualityDefinitionById**](docs/QualityDefinitionAPI.md#getqualitydefinitionbyid) | **Get** /api/v1/qualitydefinition/{id} | \n*QualityDefinitionAPI* | [**ListQualityDefinition**](docs/QualityDefinitionAPI.md#listqualitydefinition) | **Get** /api/v1/qualitydefinition | \n*QualityDefinitionAPI* | [**PutQualityDefinitionUpdate**](docs/QualityDefinitionAPI.md#putqualitydefinitionupdate) | **Put** /api/v1/qualitydefinition/update | \n*QualityDefinitionAPI* | [**UpdateQualityDefinition**](docs/QualityDefinitionAPI.md#updatequalitydefinition) | **Put** /api/v1/qualitydefinition/{id} | \n*QualityProfileAPI* | [**CreateQualityProfile**](docs/QualityProfileAPI.md#createqualityprofile) | **Post** /api/v1/qualityprofile | \n*QualityProfileAPI* | [**DeleteQualityProfile**](docs/QualityProfileAPI.md#deletequalityprofile) | **Delete** /api/v1/qualityprofile/{id} | \n*QualityProfileAPI* | [**GetQualityProfileById**](docs/QualityProfileAPI.md#getqualityprofilebyid) | **Get** /api/v1/qualityprofile/{id} | \n*QualityProfileAPI* | [**ListQualityProfile**](docs/QualityProfileAPI.md#listqualityprofile) | **Get** /api/v1/qualityprofile | \n*QualityProfileAPI* | [**UpdateQualityProfile**](docs/QualityProfileAPI.md#updatequalityprofile) | **Put** /api/v1/qualityprofile/{id} | \n*QualityProfileSchemaAPI* | [**GetQualityprofileSchema**](docs/QualityProfileSchemaAPI.md#getqualityprofileschema) | **Get** /api/v1/qualityprofile/schema | \n*QueueAPI* | [**DeleteQueue**](docs/QueueAPI.md#deletequeue) | **Delete** /api/v1/queue/{id} | \n*QueueAPI* | [**DeleteQueueBulk**](docs/QueueAPI.md#deletequeuebulk) | **Delete** /api/v1/queue/bulk | \n*QueueAPI* | [**GetQueue**](docs/QueueAPI.md#getqueue) | **Get** /api/v1/queue | \n*QueueActionAPI* | [**CreateQueueGrabBulk**](docs/QueueActionAPI.md#createqueuegrabbulk) | **Post** /api/v1/queue/grab/bulk | \n*QueueActionAPI* | [**CreateQueueGrabById**](docs/QueueActionAPI.md#createqueuegrabbyid) | **Post** /api/v1/queue/grab/{id} | \n*QueueDetailsAPI* | [**ListQueueDetails**](docs/QueueDetailsAPI.md#listqueuedetails) | **Get** /api/v1/queue/details | \n*QueueStatusAPI* | [**GetQueueStatus**](docs/QueueStatusAPI.md#getqueuestatus) | **Get** /api/v1/queue/status | \n*ReleaseAPI* | [**CreateRelease**](docs/ReleaseAPI.md#createrelease) | **Post** /api/v1/release | \n*ReleaseAPI* | [**ListRelease**](docs/ReleaseAPI.md#listrelease) | **Get** /api/v1/release | \n*ReleaseProfileAPI* | [**CreateReleaseProfile**](docs/ReleaseProfileAPI.md#createreleaseprofile) | **Post** /api/v1/releaseprofile | \n*ReleaseProfileAPI* | [**DeleteReleaseProfile**](docs/ReleaseProfileAPI.md#deletereleaseprofile) | **Delete** /api/v1/releaseprofile/{id} | \n*ReleaseProfileAPI* | [**GetReleaseProfileById**](docs/ReleaseProfileAPI.md#getreleaseprofilebyid) | **Get** /api/v1/releaseprofile/{id} | \n*ReleaseProfileAPI* | [**ListReleaseProfile**](docs/ReleaseProfileAPI.md#listreleaseprofile) | **Get** /api/v1/releaseprofile | \n*ReleaseProfileAPI* | [**UpdateReleaseProfile**](docs/ReleaseProfileAPI.md#updatereleaseprofile) | **Put** /api/v1/releaseprofile/{id} | \n*ReleasePushAPI* | [**CreateReleasePush**](docs/ReleasePushAPI.md#createreleasepush) | **Post** /api/v1/release/push | \n*RemotePathMappingAPI* | [**CreateRemotePathMapping**](docs/RemotePathMappingAPI.md#createremotepathmapping) | **Post** /api/v1/remotepathmapping | \n*RemotePathMappingAPI* | [**DeleteRemotePathMapping**](docs/RemotePathMappingAPI.md#deleteremotepathmapping) | **Delete** /api/v1/remotepathmapping/{id} | \n*RemotePathMappingAPI* | [**GetRemotePathMappingById**](docs/RemotePathMappingAPI.md#getremotepathmappingbyid) | **Get** /api/v1/remotepathmapping/{id} | \n*RemotePathMappingAPI* | [**ListRemotePathMapping**](docs/RemotePathMappingAPI.md#listremotepathmapping) | **Get** /api/v1/remotepathmapping | \n*RemotePathMappingAPI* | [**UpdateRemotePathMapping**](docs/RemotePathMappingAPI.md#updateremotepathmapping) | **Put** /api/v1/remotepathmapping/{id} | \n*RenameBookAPI* | [**ListRename**](docs/RenameBookAPI.md#listrename) | **Get** /api/v1/rename | \n*RetagBookAPI* | [**ListRetag**](docs/RetagBookAPI.md#listretag) | **Get** /api/v1/retag | \n*RootFolderAPI* | [**CreateRootFolder**](docs/RootFolderAPI.md#createrootfolder) | **Post** /api/v1/rootfolder | \n*RootFolderAPI* | [**DeleteRootFolder**](docs/RootFolderAPI.md#deleterootfolder) | **Delete** /api/v1/rootfolder/{id} | \n*RootFolderAPI* | [**GetRootFolderById**](docs/RootFolderAPI.md#getrootfolderbyid) | **Get** /api/v1/rootfolder/{id} | \n*RootFolderAPI* | [**ListRootFolder**](docs/RootFolderAPI.md#listrootfolder) | **Get** /api/v1/rootfolder | \n*RootFolderAPI* | [**UpdateRootFolder**](docs/RootFolderAPI.md#updaterootfolder) | **Put** /api/v1/rootfolder/{id} | \n*SearchAPI* | [**GetSearch**](docs/SearchAPI.md#getsearch) | **Get** /api/v1/search | \n*SeriesAPI* | [**ListSeries**](docs/SeriesAPI.md#listseries) | **Get** /api/v1/series | \n*StaticResourceAPI* | [**Get**](docs/StaticResourceAPI.md#get) | **Get** / | \n*StaticResourceAPI* | [**GetByPath**](docs/StaticResourceAPI.md#getbypath) | **Get** /{path} | \n*StaticResourceAPI* | [**GetContentByPath**](docs/StaticResourceAPI.md#getcontentbypath) | **Get** /content/{path} | \n*StaticResourceAPI* | [**GetLogin**](docs/StaticResourceAPI.md#getlogin) | **Get** /login | \n*SystemAPI* | [**CreateSystemRestart**](docs/SystemAPI.md#createsystemrestart) | **Post** /api/v1/system/restart | \n*SystemAPI* | [**CreateSystemShutdown**](docs/SystemAPI.md#createsystemshutdown) | **Post** /api/v1/system/shutdown | \n*SystemAPI* | [**GetSystemRoutes**](docs/SystemAPI.md#getsystemroutes) | **Get** /api/v1/system/routes | \n*SystemAPI* | [**GetSystemRoutesDuplicate**](docs/SystemAPI.md#getsystemroutesduplicate) | **Get** /api/v1/system/routes/duplicate | \n*SystemAPI* | [**GetSystemStatus**](docs/SystemAPI.md#getsystemstatus) | **Get** /api/v1/system/status | \n*TagAPI* | [**CreateTag**](docs/TagAPI.md#createtag) | **Post** /api/v1/tag | \n*TagAPI* | [**DeleteTag**](docs/TagAPI.md#deletetag) | **Delete** /api/v1/tag/{id} | \n*TagAPI* | [**GetTagById**](docs/TagAPI.md#gettagbyid) | **Get** /api/v1/tag/{id} | \n*TagAPI* | [**ListTag**](docs/TagAPI.md#listtag) | **Get** /api/v1/tag | \n*TagAPI* | [**UpdateTag**](docs/TagAPI.md#updatetag) | **Put** /api/v1/tag/{id} | \n*TagDetailsAPI* | [**GetTagDetailById**](docs/TagDetailsAPI.md#gettagdetailbyid) | **Get** /api/v1/tag/detail/{id} | \n*TagDetailsAPI* | [**ListTagDetail**](docs/TagDetailsAPI.md#listtagdetail) | **Get** /api/v1/tag/detail | \n*TaskAPI* | [**GetSystemTaskById**](docs/TaskAPI.md#getsystemtaskbyid) | **Get** /api/v1/system/task/{id} | \n*TaskAPI* | [**ListSystemTask**](docs/TaskAPI.md#listsystemtask) | **Get** /api/v1/system/task | \n*UiConfigAPI* | [**GetUiConfig**](docs/UiConfigAPI.md#getuiconfig) | **Get** /api/v1/config/ui | \n*UiConfigAPI* | [**GetUiConfigById**](docs/UiConfigAPI.md#getuiconfigbyid) | **Get** /api/v1/config/ui/{id} | \n*UiConfigAPI* | [**UpdateUiConfig**](docs/UiConfigAPI.md#updateuiconfig) | **Put** /api/v1/config/ui/{id} | \n*UpdateAPI* | [**ListUpdate**](docs/UpdateAPI.md#listupdate) | **Get** /api/v1/update | \n*UpdateLogFileAPI* | [**GetLogFileUpdateByFilename**](docs/UpdateLogFileAPI.md#getlogfileupdatebyfilename) | **Get** /api/v1/log/file/update/{filename} | \n*UpdateLogFileAPI* | [**ListLogFileUpdate**](docs/UpdateLogFileAPI.md#listlogfileupdate) | **Get** /api/v1/log/file/update | \n\n\n## Documentation For Models\n\n - [AddAuthorOptions](docs/AddAuthorOptions.md)\n - [AddBookOptions](docs/AddBookOptions.md)\n - [AllowFingerprinting](docs/AllowFingerprinting.md)\n - [ApiInfoResource](docs/ApiInfoResource.md)\n - [ApplyTags](docs/ApplyTags.md)\n - [AuthenticationType](docs/AuthenticationType.md)\n - [Author](docs/Author.md)\n - [AuthorEditorResource](docs/AuthorEditorResource.md)\n - [AuthorLazyLoaded](docs/AuthorLazyLoaded.md)\n - [AuthorMetadata](docs/AuthorMetadata.md)\n - [AuthorMetadataLazyLoaded](docs/AuthorMetadataLazyLoaded.md)\n - [AuthorResource](docs/AuthorResource.md)\n - [AuthorStatisticsResource](docs/AuthorStatisticsResource.md)\n - [AuthorStatusType](docs/AuthorStatusType.md)\n - [AuthorTitleInfo](docs/AuthorTitleInfo.md)\n - [BackupResource](docs/BackupResource.md)\n - [BackupType](docs/BackupType.md)\n - [BlocklistBulkResource](docs/BlocklistBulkResource.md)\n - [BlocklistResource](docs/BlocklistResource.md)\n - [BlocklistResourcePagingResource](docs/BlocklistResourcePagingResource.md)\n - [Book](docs/Book.md)\n - [BookAddType](docs/BookAddType.md)\n - [BookEditorResource](docs/BookEditorResource.md)\n - [BookFile](docs/BookFile.md)\n - [BookFileListLazyLoaded](docs/BookFileListLazyLoaded.md)\n - [BookFileListResource](docs/BookFileListResource.md)\n - [BookFileResource](docs/BookFileResource.md)\n - [BookLazyLoaded](docs/BookLazyLoaded.md)\n - [BookListLazyLoaded](docs/BookListLazyLoaded.md)\n - [BookResource](docs/BookResource.md)\n - [BookResourcePagingResource](docs/BookResourcePagingResource.md)\n - [BookStatisticsResource](docs/BookStatisticsResource.md)\n - [BooksMonitoredResource](docs/BooksMonitoredResource.md)\n - [BookshelfAuthorResource](docs/BookshelfAuthorResource.md)\n - [BookshelfResource](docs/BookshelfResource.md)\n - [CertificateValidationType](docs/CertificateValidationType.md)\n - [Command](docs/Command.md)\n - [CommandPriority](docs/CommandPriority.md)\n - [CommandResource](docs/CommandResource.md)\n - [CommandResult](docs/CommandResult.md)\n - [CommandStatus](docs/CommandStatus.md)\n - [CommandTrigger](docs/CommandTrigger.md)\n - [CustomFilterResource](docs/CustomFilterResource.md)\n - [CustomFormat](docs/CustomFormat.md)\n - [CustomFormatResource](docs/CustomFormatResource.md)\n - [CustomFormatSpecificationSchema](docs/CustomFormatSpecificationSchema.md)\n - [DatabaseType](docs/DatabaseType.md)\n - [DelayProfileResource](docs/DelayProfileResource.md)\n - [DevelopmentConfigResource](docs/DevelopmentConfigResource.md)\n - [DiskSpaceResource](docs/DiskSpaceResource.md)\n - [DownloadClientBulkResource](docs/DownloadClientBulkResource.md)\n - [DownloadClientConfigResource](docs/DownloadClientConfigResource.md)\n - [DownloadClientResource](docs/DownloadClientResource.md)\n - [DownloadProtocol](docs/DownloadProtocol.md)\n - [Edition](docs/Edition.md)\n - [EditionLazyLoaded](docs/EditionLazyLoaded.md)\n - [EditionListLazyLoaded](docs/EditionListLazyLoaded.md)\n - [EditionResource](docs/EditionResource.md)\n - [EntityHistoryEventType](docs/EntityHistoryEventType.md)\n - [Field](docs/Field.md)\n - [FileDateType](docs/FileDateType.md)\n - [HealthCheckResult](docs/HealthCheckResult.md)\n - [HealthResource](docs/HealthResource.md)\n - [HistoryResource](docs/HistoryResource.md)\n - [HistoryResourcePagingResource](docs/HistoryResourcePagingResource.md)\n - [HostConfigResource](docs/HostConfigResource.md)\n - [ICustomFormatSpecification](docs/ICustomFormatSpecification.md)\n - [ImportListBulkResource](docs/ImportListBulkResource.md)\n - [ImportListExclusionResource](docs/ImportListExclusionResource.md)\n - [ImportListMonitorType](docs/ImportListMonitorType.md)\n - [ImportListResource](docs/ImportListResource.md)\n - [ImportListType](docs/ImportListType.md)\n - [IndexerBulkResource](docs/IndexerBulkResource.md)\n - [IndexerConfigResource](docs/IndexerConfigResource.md)\n - [IndexerResource](docs/IndexerResource.md)\n - [IsoCountry](docs/IsoCountry.md)\n - [LanguageResource](docs/LanguageResource.md)\n - [Links](docs/Links.md)\n - [LogFileResource](docs/LogFileResource.md)\n - [LogResource](docs/LogResource.md)\n - [LogResourcePagingResource](docs/LogResourcePagingResource.md)\n - [ManualImportResource](docs/ManualImportResource.md)\n - [ManualImportUpdateResource](docs/ManualImportUpdateResource.md)\n - [MediaCover](docs/MediaCover.md)\n - [MediaCoverTypes](docs/MediaCoverTypes.md)\n - [MediaInfoModel](docs/MediaInfoModel.md)\n - [MediaInfoResource](docs/MediaInfoResource.md)\n - [MediaManagementConfigResource](docs/MediaManagementConfigResource.md)\n - [MetadataProfile](docs/MetadataProfile.md)\n - [MetadataProfileLazyLoaded](docs/MetadataProfileLazyLoaded.md)\n - [MetadataProfileResource](docs/MetadataProfileResource.md)\n - [MetadataProviderConfigResource](docs/MetadataProviderConfigResource.md)\n - [MetadataResource](docs/MetadataResource.md)\n - [MonitorTypes](docs/MonitorTypes.md)\n - [MonitoringOptions](docs/MonitoringOptions.md)\n - [NamingConfigResource](docs/NamingConfigResource.md)\n - [NewItemMonitorTypes](docs/NewItemMonitorTypes.md)\n - [NotificationResource](docs/NotificationResource.md)\n - [ParseResource](docs/ParseResource.md)\n - [ParsedBookInfo](docs/ParsedBookInfo.md)\n - [ParsedTrackInfo](docs/ParsedTrackInfo.md)\n - [PingResource](docs/PingResource.md)\n - [ProfileFormatItem](docs/ProfileFormatItem.md)\n - [ProfileFormatItemResource](docs/ProfileFormatItemResource.md)\n - [ProperDownloadTypes](docs/ProperDownloadTypes.md)\n - [ProviderMessage](docs/ProviderMessage.md)\n - [ProviderMessageType](docs/ProviderMessageType.md)\n - [ProxyType](docs/ProxyType.md)\n - [Quality](docs/Quality.md)\n - [QualityDefinitionResource](docs/QualityDefinitionResource.md)\n - [QualityModel](docs/QualityModel.md)\n - [QualityProfile](docs/QualityProfile.md)\n - [QualityProfileLazyLoaded](docs/QualityProfileLazyLoaded.md)\n - [QualityProfileQualityItem](docs/QualityProfileQualityItem.md)\n - [QualityProfileQualityItemResource](docs/QualityProfileQualityItemResource.md)\n - [QualityProfileResource](docs/QualityProfileResource.md)\n - [QueueBulkResource](docs/QueueBulkResource.md)\n - [QueueResource](docs/QueueResource.md)\n - [QueueResourcePagingResource](docs/QueueResourcePagingResource.md)\n - [QueueStatusResource](docs/QueueStatusResource.md)\n - [Ratings](docs/Ratings.md)\n - [Rejection](docs/Rejection.md)\n - [RejectionType](docs/RejectionType.md)\n - [ReleaseProfileResource](docs/ReleaseProfileResource.md)\n - [ReleaseResource](docs/ReleaseResource.md)\n - [RemotePathMappingResource](docs/RemotePathMappingResource.md)\n - [RenameBookResource](docs/RenameBookResource.md)\n - [RescanAfterRefreshType](docs/RescanAfterRefreshType.md)\n - [RetagBookResource](docs/RetagBookResource.md)\n - [Revision](docs/Revision.md)\n - [RootFolderResource](docs/RootFolderResource.md)\n - [RuntimeMode](docs/RuntimeMode.md)\n - [SelectOption](docs/SelectOption.md)\n - [Series](docs/Series.md)\n - [SeriesBookLink](docs/SeriesBookLink.md)\n - [SeriesBookLinkListLazyLoaded](docs/SeriesBookLinkListLazyLoaded.md)\n - [SeriesBookLinkResource](docs/SeriesBookLinkResource.md)\n - [SeriesLazyLoaded](docs/SeriesLazyLoaded.md)\n - [SeriesListLazyLoaded](docs/SeriesListLazyLoaded.md)\n - [SeriesResource](docs/SeriesResource.md)\n - [SortDirection](docs/SortDirection.md)\n - [SystemResource](docs/SystemResource.md)\n - [TagDetailsResource](docs/TagDetailsResource.md)\n - [TagDifference](docs/TagDifference.md)\n - [TagResource](docs/TagResource.md)\n - [TaskResource](docs/TaskResource.md)\n - [TrackedDownloadState](docs/TrackedDownloadState.md)\n - [TrackedDownloadStatus](docs/TrackedDownloadStatus.md)\n - [TrackedDownloadStatusMessage](docs/TrackedDownloadStatusMessage.md)\n - [UiConfigResource](docs/UiConfigResource.md)\n - [UpdateChanges](docs/UpdateChanges.md)\n - [UpdateMechanism](docs/UpdateMechanism.md)\n - [UpdateResource](docs/UpdateResource.md)\n - [WriteAudioTagsType](docs/WriteAudioTagsType.md)\n - [WriteBookTagsType](docs/WriteBookTagsType.md)\n\n\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n### X-Api-Key\n\n- **Type**: API key\n- **API key parameter name**: X-Api-Key\n- **Location**: HTTP header\n\nNote, each API key must be added to a map of `map[string]APIKey` where the key is: X-Api-Key and passed in as the auth context for each request.\n\nExample\n\n```go\nauth := context.WithValue(\n\t\tcontext.Background(),\n\t\treadarr.ContextAPIKeys,\n\t\tmap[string]readarr.APIKey{\n\t\t\t\"X-Api-Key\": {Key: \"API_KEY_STRING\"},\n\t\t},\n\t)\nr, err := client.Service.Operation(auth, args)\n```\n\n### apikey\n\n- **Type**: API key\n- **API key parameter name**: apikey\n- **Location**: URL query string\n\nNote, each API key must be added to a map of `map[string]APIKey` where the key is: apikey and passed in as the auth context for each request.\n\nExample\n\n```go\nauth := context.WithValue(\n\t\tcontext.Background(),\n\t\treadarr.ContextAPIKeys,\n\t\tmap[string]readarr.APIKey{\n\t\t\t\"apikey\": {Key: \"API_KEY_STRING\"},\n\t\t},\n\t)\nr, err := client.Service.Operation(auth, args)\n```\n\n\n## Documentation for Utility Methods\n\nDue to the fact that model structure members are all pointers, this package contains\na number of utility functions to easily obtain pointers to values of basic types.\nEach of these functions takes a value of the given basic type and returns a pointer to it:\n\n* `PtrBool`\n* `PtrInt`\n* `PtrInt32`\n* `PtrInt64`\n* `PtrFloat`\n* `PtrFloat32`\n* `PtrFloat64`\n* `PtrString`\n* `PtrTime`\n\n## Author\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevopsarr%2Freadarr-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevopsarr%2Freadarr-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevopsarr%2Freadarr-go/lists"}