{"id":23286881,"url":"https://github.com/devopsarr/lidarr-go","last_synced_at":"2026-03-05T08:30:53.496Z","repository":{"id":65331784,"uuid":"585013392","full_name":"devopsarr/lidarr-go","owner":"devopsarr","description":"go SDK for Lidarr","archived":false,"fork":false,"pushed_at":"2026-01-19T17:10:45.000Z","size":2925,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-19T23:19:15.993Z","etag":null,"topics":["go","golang","lidarr","sdk-go"],"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-01-04T05:01:47.000Z","updated_at":"2026-01-19T17:10:01.000Z","dependencies_parsed_at":"2023-11-19T23:23:03.574Z","dependency_job_id":"e4bf4c42-dc1a-4f92-8fcf-74eef5cc746a","html_url":"https://github.com/devopsarr/lidarr-go","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/devopsarr/lidarr-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Flidarr-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Flidarr-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Flidarr-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Flidarr-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devopsarr","download_url":"https://codeload.github.com/devopsarr/lidarr-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopsarr%2Flidarr-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30115910,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","lidarr","sdk-go"],"created_at":"2024-12-20T02:15:00.360Z","updated_at":"2026-03-05T08:30:53.455Z","avatar_url":"https://github.com/devopsarr.png","language":null,"readme":"# Go API client for lidarr\n\nLidarr 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: v2.9.6.4552\n- Package version: 1.2.0 \u003c!--- x-release-please-version --\u003e\n- Generator version: 7.12.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 lidarr \"github.com/devopsarr/lidarr-go/lidarr\"\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 `lidarr.ContextServerIndex` of type `int`.\n\n```go\nctx := context.WithValue(context.Background(), lidarr.ContextServerIndex, 1)\n```\n\n### Templated Server URL\n\nTemplated server URL is formatted using default variables from configuration or from context value `lidarr.ContextServerVariables` of type `map[string]string`.\n\n```go\nctx := context.WithValue(context.Background(), lidarr.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 `lidarr.ContextOperationServerIndices` and `lidarr.ContextOperationServerVariables` context maps.\n\n```go\nctx := context.WithValue(context.Background(), lidarr.ContextOperationServerIndices, map[string]int{\n\t\"{classname}Service.{nickname}\": 2,\n})\nctx = context.WithValue(context.Background(), lidarr.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:8686*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AlbumAPI* | [**CreateAlbum**](docs/AlbumAPI.md#createalbum) | **Post** /api/v1/album | \n*AlbumAPI* | [**DeleteAlbum**](docs/AlbumAPI.md#deletealbum) | **Delete** /api/v1/album/{id} | \n*AlbumAPI* | [**GetAlbumById**](docs/AlbumAPI.md#getalbumbyid) | **Get** /api/v1/album/{id} | \n*AlbumAPI* | [**ListAlbum**](docs/AlbumAPI.md#listalbum) | **Get** /api/v1/album | \n*AlbumAPI* | [**PutAlbumMonitor**](docs/AlbumAPI.md#putalbummonitor) | **Put** /api/v1/album/monitor | \n*AlbumAPI* | [**UpdateAlbum**](docs/AlbumAPI.md#updatealbum) | **Put** /api/v1/album/{id} | \n*AlbumLookupAPI* | [**ListAlbumLookup**](docs/AlbumLookupAPI.md#listalbumlookup) | **Get** /api/v1/album/lookup | \n*AlbumStudioAPI* | [**CreateAlbumStudio**](docs/AlbumStudioAPI.md#createalbumstudio) | **Post** /api/v1/albumstudio | \n*ApiInfoAPI* | [**GetApi**](docs/ApiInfoAPI.md#getapi) | **Get** /api | \n*ArtistAPI* | [**CreateArtist**](docs/ArtistAPI.md#createartist) | **Post** /api/v1/artist | \n*ArtistAPI* | [**DeleteArtist**](docs/ArtistAPI.md#deleteartist) | **Delete** /api/v1/artist/{id} | \n*ArtistAPI* | [**GetArtistById**](docs/ArtistAPI.md#getartistbyid) | **Get** /api/v1/artist/{id} | \n*ArtistAPI* | [**ListArtist**](docs/ArtistAPI.md#listartist) | **Get** /api/v1/artist | \n*ArtistAPI* | [**UpdateArtist**](docs/ArtistAPI.md#updateartist) | **Put** /api/v1/artist/{id} | \n*ArtistEditorAPI* | [**DeleteArtistEditor**](docs/ArtistEditorAPI.md#deleteartisteditor) | **Delete** /api/v1/artist/editor | \n*ArtistEditorAPI* | [**PutArtistEditor**](docs/ArtistEditorAPI.md#putartisteditor) | **Put** /api/v1/artist/editor | \n*ArtistLookupAPI* | [**ListArtistLookup**](docs/ArtistLookupAPI.md#listartistlookup) | **Get** /api/v1/artist/lookup | \n*AuthenticationAPI* | [**CreateLogin**](docs/AuthenticationAPI.md#createlogin) | **Post** /login | \n*AuthenticationAPI* | [**GetLogout**](docs/AuthenticationAPI.md#getlogout) | **Get** /logout | \n*AutoTaggingAPI* | [**CreateAutoTagging**](docs/AutoTaggingAPI.md#createautotagging) | **Post** /api/v1/autotagging | \n*AutoTaggingAPI* | [**DeleteAutoTagging**](docs/AutoTaggingAPI.md#deleteautotagging) | **Delete** /api/v1/autotagging/{id} | \n*AutoTaggingAPI* | [**GetAutoTaggingById**](docs/AutoTaggingAPI.md#getautotaggingbyid) | **Get** /api/v1/autotagging/{id} | \n*AutoTaggingAPI* | [**ListAutoTagging**](docs/AutoTaggingAPI.md#listautotagging) | **Get** /api/v1/autotagging | \n*AutoTaggingAPI* | [**ListAutoTaggingSchema**](docs/AutoTaggingAPI.md#listautotaggingschema) | **Get** /api/v1/autotagging/schema | \n*AutoTaggingAPI* | [**UpdateAutoTagging**](docs/AutoTaggingAPI.md#updateautotagging) | **Put** /api/v1/autotagging/{id} | \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*CalendarAPI* | [**GetCalendarById**](docs/CalendarAPI.md#getcalendarbyid) | **Get** /api/v1/calendar/{id} | \n*CalendarAPI* | [**ListCalendar**](docs/CalendarAPI.md#listcalendar) | **Get** /api/v1/calendar | \n*CalendarFeedAPI* | [**GetFeedV1CalendarLidarrIcs**](docs/CalendarFeedAPI.md#getfeedv1calendarlidarrics) | **Get** /feed/v1/calendar/lidarr.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* | [**DeleteCustomFormatBulk**](docs/CustomFormatAPI.md#deletecustomformatbulk) | **Delete** /api/v1/customformat/bulk | \n*CustomFormatAPI* | [**GetCustomFormatById**](docs/CustomFormatAPI.md#getcustomformatbyid) | **Get** /api/v1/customformat/{id} | \n*CustomFormatAPI* | [**ListCustomFormat**](docs/CustomFormatAPI.md#listcustomformat) | **Get** /api/v1/customformat | \n*CustomFormatAPI* | [**ListCustomFormatSchema**](docs/CustomFormatAPI.md#listcustomformatschema) | **Get** /api/v1/customformat/schema | \n*CustomFormatAPI* | [**PutCustomFormatBulk**](docs/CustomFormatAPI.md#putcustomformatbulk) | **Put** /api/v1/customformat/bulk | \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*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*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* | [**ListHistoryArtist**](docs/HistoryAPI.md#listhistoryartist) | **Get** /api/v1/history/artist | \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*IndexerFlagAPI* | [**ListIndexerFlag**](docs/IndexerFlagAPI.md#listindexerflag) | **Get** /api/v1/indexerflag | \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* | [**GetMediaCoverAlbumByFilename**](docs/MediaCoverAPI.md#getmediacoveralbumbyfilename) | **Get** /api/v1/mediacover/album/{albumId}/{filename} | \n*MediaCoverAPI* | [**GetMediaCoverArtistByFilename**](docs/MediaCoverAPI.md#getmediacoverartistbyfilename) | **Get** /api/v1/mediacover/artist/{artistId}/{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*PingAPI* | [**HeadPing**](docs/PingAPI.md#headping) | **Head** /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*RenameTrackAPI* | [**ListRename**](docs/RenameTrackAPI.md#listrename) | **Get** /api/v1/rename | \n*RetagTrackAPI* | [**ListRetag**](docs/RetagTrackAPI.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* | [**ListSearch**](docs/SearchAPI.md#listsearch) | **Get** /api/v1/search | \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*TrackAPI* | [**GetTrackById**](docs/TrackAPI.md#gettrackbyid) | **Get** /api/v1/track/{id} | \n*TrackAPI* | [**ListTrack**](docs/TrackAPI.md#listtrack) | **Get** /api/v1/track | \n*TrackFileAPI* | [**DeleteTrackFile**](docs/TrackFileAPI.md#deletetrackfile) | **Delete** /api/v1/trackfile/{id} | \n*TrackFileAPI* | [**DeleteTrackFileBulk**](docs/TrackFileAPI.md#deletetrackfilebulk) | **Delete** /api/v1/trackfile/bulk | \n*TrackFileAPI* | [**GetTrackFileById**](docs/TrackFileAPI.md#gettrackfilebyid) | **Get** /api/v1/trackfile/{id} | \n*TrackFileAPI* | [**ListTrackFile**](docs/TrackFileAPI.md#listtrackfile) | **Get** /api/v1/trackfile | \n*TrackFileAPI* | [**PutTrackFileEditor**](docs/TrackFileAPI.md#puttrackfileeditor) | **Put** /api/v1/trackfile/editor | \n*TrackFileAPI* | [**UpdateTrackFile**](docs/TrackFileAPI.md#updatetrackfile) | **Put** /api/v1/trackfile/{id} | \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 - [AddAlbumOptions](docs/AddAlbumOptions.md)\n - [AddArtistOptions](docs/AddArtistOptions.md)\n - [AlbumAddType](docs/AlbumAddType.md)\n - [AlbumReleaseResource](docs/AlbumReleaseResource.md)\n - [AlbumResource](docs/AlbumResource.md)\n - [AlbumResourcePagingResource](docs/AlbumResourcePagingResource.md)\n - [AlbumStatisticsResource](docs/AlbumStatisticsResource.md)\n - [AlbumStudioArtistResource](docs/AlbumStudioArtistResource.md)\n - [AlbumStudioResource](docs/AlbumStudioResource.md)\n - [AlbumsMonitoredResource](docs/AlbumsMonitoredResource.md)\n - [AllowFingerprinting](docs/AllowFingerprinting.md)\n - [ApplyTags](docs/ApplyTags.md)\n - [ArtistEditorResource](docs/ArtistEditorResource.md)\n - [ArtistResource](docs/ArtistResource.md)\n - [ArtistStatisticsResource](docs/ArtistStatisticsResource.md)\n - [ArtistStatusType](docs/ArtistStatusType.md)\n - [ArtistTitleInfo](docs/ArtistTitleInfo.md)\n - [AuthenticationRequiredType](docs/AuthenticationRequiredType.md)\n - [AuthenticationType](docs/AuthenticationType.md)\n - [AutoTaggingResource](docs/AutoTaggingResource.md)\n - [AutoTaggingSpecificationSchema](docs/AutoTaggingSpecificationSchema.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 - [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 - [CustomFormatBulkResource](docs/CustomFormatBulkResource.md)\n - [CustomFormatResource](docs/CustomFormatResource.md)\n - [CustomFormatSpecificationSchema](docs/CustomFormatSpecificationSchema.md)\n - [DatabaseType](docs/DatabaseType.md)\n - [DelayProfileResource](docs/DelayProfileResource.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 - [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 - [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 - [IndexerFlagResource](docs/IndexerFlagResource.md)\n - [IndexerResource](docs/IndexerResource.md)\n - [IsoCountry](docs/IsoCountry.md)\n - [LanguageResource](docs/LanguageResource.md)\n - [Links](docs/Links.md)\n - [LocalizationResource](docs/LocalizationResource.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 - [MediumResource](docs/MediumResource.md)\n - [Member](docs/Member.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 - [ParsedAlbumInfo](docs/ParsedAlbumInfo.md)\n - [ParsedTrackInfo](docs/ParsedTrackInfo.md)\n - [PingResource](docs/PingResource.md)\n - [PrimaryAlbumType](docs/PrimaryAlbumType.md)\n - [PrivacyLevel](docs/PrivacyLevel.md)\n - [ProfileFormatItemResource](docs/ProfileFormatItemResource.md)\n - [ProfilePrimaryAlbumTypeItemResource](docs/ProfilePrimaryAlbumTypeItemResource.md)\n - [ProfileReleaseStatusItemResource](docs/ProfileReleaseStatusItemResource.md)\n - [ProfileSecondaryAlbumTypeItemResource](docs/ProfileSecondaryAlbumTypeItemResource.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 - [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 - [ReleaseStatus](docs/ReleaseStatus.md)\n - [RemotePathMappingResource](docs/RemotePathMappingResource.md)\n - [RenameTrackResource](docs/RenameTrackResource.md)\n - [RescanAfterRefreshType](docs/RescanAfterRefreshType.md)\n - [RetagTrackResource](docs/RetagTrackResource.md)\n - [Revision](docs/Revision.md)\n - [RootFolderResource](docs/RootFolderResource.md)\n - [RuntimeMode](docs/RuntimeMode.md)\n - [SearchResource](docs/SearchResource.md)\n - [SecondaryAlbumType](docs/SecondaryAlbumType.md)\n - [SelectOption](docs/SelectOption.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 - [TrackFileListResource](docs/TrackFileListResource.md)\n - [TrackFileResource](docs/TrackFileResource.md)\n - [TrackResource](docs/TrackResource.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\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\tlidarr.ContextAPIKeys,\n\t\tmap[string]lidarr.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\tlidarr.ContextAPIKeys,\n\t\tmap[string]lidarr.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%2Flidarr-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevopsarr%2Flidarr-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevopsarr%2Flidarr-go/lists"}