api.json 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677
  1. {
  2. "openapi": "3.0.0",
  3. "info": {
  4. "title": "Organizr API",
  5. "description": "Organizr - Accept no others",
  6. "version": "2.0"
  7. },
  8. "servers": [
  9. {
  10. "url": "https://organizr.dev/",
  11. "description": "This Organizr Install"
  12. },
  13. {
  14. "url": "https://demo.organizr.app",
  15. "description": "Organizr Demo API"
  16. },
  17. {
  18. "url": "{schema}://{hostPath}",
  19. "description": "Custom Organizr API",
  20. "variables": {
  21. "schema": {
  22. "enum": [
  23. "https",
  24. "http"
  25. ],
  26. "default": "http"
  27. },
  28. "hostPath": {
  29. "default": "localhost",
  30. "description": "Your Organizr URL"
  31. }
  32. }
  33. }
  34. ],
  35. "paths": {
  36. "/api/v2/plugins/chat/settings": {
  37. "get": {
  38. "tags": [
  39. "plugins-chat"
  40. ],
  41. "summary": "Get settings",
  42. "responses": {
  43. "200": {
  44. "description": "Success",
  45. "content": {
  46. "application/json": {
  47. "schema": {
  48. "$ref": "#/components/schemas/pluginSettingsPage"
  49. }
  50. }
  51. }
  52. },
  53. "401": {
  54. "description": "Unauthorized"
  55. }
  56. },
  57. "security": [
  58. {
  59. "api_key": []
  60. }
  61. ]
  62. }
  63. },
  64. "/api/v2/plugins/chat/message": {
  65. "get": {
  66. "tags": [
  67. "plugins-chat"
  68. ],
  69. "summary": "Get all messages",
  70. "responses": {
  71. "200": {
  72. "description": "Success",
  73. "content": {
  74. "application/json": {
  75. "schema": {
  76. "$ref": "#/components/schemas/getChatMessages"
  77. }
  78. }
  79. }
  80. },
  81. "401": {
  82. "description": "Unauthorized"
  83. }
  84. },
  85. "security": [
  86. {
  87. "api_key": []
  88. }
  89. ]
  90. },
  91. "post": {
  92. "tags": [
  93. "plugins-chat"
  94. ],
  95. "summary": "Submit a message",
  96. "requestBody": {
  97. "description": "Success",
  98. "required": true,
  99. "content": {
  100. "application/x-www-form-urlencoded": {
  101. "schema": {
  102. "properties": {
  103. "message": {
  104. "description": "message to send",
  105. "type": "string"
  106. }
  107. },
  108. "type": "object"
  109. }
  110. },
  111. "application/json": {
  112. "schema": {
  113. "$ref": "#/components/schemas/submitMessageData"
  114. }
  115. }
  116. }
  117. },
  118. "responses": {
  119. "200": {
  120. "description": "Success",
  121. "content": {
  122. "application/json": {
  123. "schema": {
  124. "$ref": "#/components/schemas/submitMessage"
  125. }
  126. }
  127. }
  128. },
  129. "401": {
  130. "description": "Unauthorized"
  131. }
  132. },
  133. "security": [
  134. {
  135. "api_key": []
  136. }
  137. ]
  138. }
  139. },
  140. "/api/v2/plugins/healthchecks/settings": {
  141. "get": {
  142. "tags": [
  143. "plugins-healthchecks"
  144. ],
  145. "summary": "Get settings",
  146. "responses": {
  147. "200": {
  148. "description": "Success",
  149. "content": {
  150. "application/json": {
  151. "schema": {
  152. "$ref": "#/components/schemas/pluginSettingsPage"
  153. }
  154. }
  155. }
  156. },
  157. "401": {
  158. "description": "Unauthorized"
  159. }
  160. },
  161. "security": [
  162. {
  163. "api_key": []
  164. }
  165. ]
  166. }
  167. },
  168. "/api/v2/plugins/healthchecks/run": {
  169. "get": {
  170. "tags": [
  171. "plugins-healthchecks"
  172. ],
  173. "summary": "Run Healthchecks.io plugin",
  174. "responses": {
  175. "200": {
  176. "description": "Success",
  177. "content": {
  178. "application/json": {
  179. "schema": {
  180. "$ref": "#/components/schemas/healthChecksRun"
  181. }
  182. }
  183. }
  184. },
  185. "401": {
  186. "description": "Unauthorized"
  187. }
  188. },
  189. "security": [
  190. {
  191. "api_key": []
  192. }
  193. ]
  194. }
  195. },
  196. "/api/v2/plugins/invites/settings": {
  197. "get": {
  198. "tags": [
  199. "plugins-invites"
  200. ],
  201. "summary": "Get settings",
  202. "responses": {
  203. "200": {
  204. "description": "Success",
  205. "content": {
  206. "application/json": {
  207. "schema": {
  208. "$ref": "#/components/schemas/pluginSettingsPage"
  209. }
  210. }
  211. }
  212. },
  213. "401": {
  214. "description": "Unauthorized"
  215. }
  216. },
  217. "security": [
  218. {
  219. "api_key": []
  220. }
  221. ]
  222. }
  223. },
  224. "/api/v2/plugins/invites": {
  225. "get": {
  226. "tags": [
  227. "plugins-invites"
  228. ],
  229. "summary": "Get All Invites",
  230. "responses": {
  231. "200": {
  232. "description": "Success",
  233. "content": {
  234. "application/json": {
  235. "schema": {
  236. "$ref": "#/components/schemas/getInvites"
  237. }
  238. }
  239. }
  240. },
  241. "401": {
  242. "description": "Unauthorized"
  243. }
  244. },
  245. "security": [
  246. {
  247. "api_key": []
  248. }
  249. ]
  250. },
  251. "post": {
  252. "tags": [
  253. "plugins-invites"
  254. ],
  255. "summary": "Create Invite Code",
  256. "responses": {
  257. "200": {
  258. "description": "Success",
  259. "content": {
  260. "application/json": {
  261. "schema": {
  262. "$ref": "#/components/schemas/createInviteCode"
  263. }
  264. }
  265. }
  266. },
  267. "401": {
  268. "description": "Unauthorized"
  269. }
  270. },
  271. "security": [
  272. {
  273. "api_key": []
  274. }
  275. ]
  276. }
  277. },
  278. "/api/v2/plugins/invites/{code}": {
  279. "get": {
  280. "tags": [
  281. "plugins-invites"
  282. ],
  283. "summary": "Verify Invite Code",
  284. "parameters": [
  285. {
  286. "name": "code",
  287. "in": "path",
  288. "description": "The Invite Code",
  289. "required": true,
  290. "schema": {
  291. "type": "integer",
  292. "format": "int64"
  293. }
  294. }
  295. ],
  296. "responses": {
  297. "200": {
  298. "description": "Success",
  299. "content": {
  300. "application/json": {
  301. "schema": {
  302. "$ref": "#/components/schemas/verifyInviteCode"
  303. }
  304. }
  305. }
  306. },
  307. "401": {
  308. "description": "Unauthorized"
  309. }
  310. }
  311. },
  312. "post": {
  313. "tags": [
  314. "plugins-invites"
  315. ],
  316. "summary": "Use Invite Code",
  317. "parameters": [
  318. {
  319. "name": "code",
  320. "in": "path",
  321. "description": "The Invite Code",
  322. "required": true,
  323. "schema": {
  324. "type": "integer",
  325. "format": "int64"
  326. }
  327. }
  328. ],
  329. "responses": {
  330. "200": {
  331. "description": "Success",
  332. "content": {
  333. "application/json": {
  334. "schema": {
  335. "$ref": "#/components/schemas/useInviteCode"
  336. }
  337. }
  338. }
  339. },
  340. "401": {
  341. "description": "Unauthorized"
  342. }
  343. }
  344. },
  345. "delete": {
  346. "tags": [
  347. "plugins-invites"
  348. ],
  349. "summary": "Delete Invite Code",
  350. "parameters": [
  351. {
  352. "name": "code",
  353. "in": "path",
  354. "description": "The Invite Code",
  355. "required": true,
  356. "schema": {
  357. "type": "integer",
  358. "format": "int64"
  359. }
  360. }
  361. ],
  362. "responses": {
  363. "200": {
  364. "description": "Success",
  365. "content": {
  366. "application/json": {
  367. "schema": {
  368. "$ref": "#/components/schemas/deleteInviteCode"
  369. }
  370. }
  371. }
  372. },
  373. "401": {
  374. "description": "Unauthorized"
  375. }
  376. },
  377. "security": [
  378. {
  379. "api_key": []
  380. }
  381. ]
  382. }
  383. },
  384. "/api/v2/plugins/php-mailer/settings": {
  385. "get": {
  386. "tags": [
  387. "plugins-php-mailer"
  388. ],
  389. "summary": "Get settings",
  390. "responses": {
  391. "200": {
  392. "description": "Success",
  393. "content": {
  394. "application/json": {
  395. "schema": {
  396. "$ref": "#/components/schemas/pluginSettingsPage"
  397. }
  398. }
  399. }
  400. },
  401. "401": {
  402. "description": "Unauthorized"
  403. }
  404. },
  405. "security": [
  406. {
  407. "api_key": []
  408. }
  409. ]
  410. }
  411. },
  412. "/api/v2/plugins/php-mailer/email/test": {
  413. "get": {
  414. "tags": [
  415. "plugins-php-mailer"
  416. ],
  417. "summary": "Send Test Email to Default Admin Email",
  418. "responses": {
  419. "200": {
  420. "description": "Success",
  421. "content": {
  422. "application/json": {
  423. "schema": {
  424. "$ref": "#/components/schemas/successNullData"
  425. }
  426. }
  427. }
  428. },
  429. "401": {
  430. "description": "Unauthorized"
  431. }
  432. },
  433. "security": [
  434. {
  435. "api_key": []
  436. }
  437. ]
  438. }
  439. },
  440. "/api/v2/plugins/php-mailer/email/send": {
  441. "post": {
  442. "tags": [
  443. "plugins-php-mailer"
  444. ],
  445. "summary": "Send Email",
  446. "requestBody": {
  447. "description": "Success",
  448. "required": true,
  449. "content": {
  450. "application/json": {
  451. "schema": {
  452. "$ref": "#/components/schemas/sendEmailData"
  453. }
  454. }
  455. }
  456. },
  457. "responses": {
  458. "200": {
  459. "description": "Success",
  460. "content": {
  461. "application/json": {
  462. "schema": {
  463. "$ref": "#/components/schemas/successNullData"
  464. }
  465. }
  466. }
  467. },
  468. "401": {
  469. "description": "Unauthorized"
  470. }
  471. },
  472. "security": [
  473. {
  474. "api_key": []
  475. }
  476. ]
  477. }
  478. },
  479. "/api/v2/plugins/php-mailer/email/list": {
  480. "get": {
  481. "tags": [
  482. "plugins-php-mailer"
  483. ],
  484. "summary": "Get List of User Emails",
  485. "responses": {
  486. "200": {
  487. "description": "Success",
  488. "content": {
  489. "application/json": {
  490. "schema": {
  491. "$ref": "#/components/schemas/php-mailer-email-list"
  492. }
  493. }
  494. }
  495. },
  496. "401": {
  497. "description": "Unauthorized"
  498. }
  499. },
  500. "security": [
  501. {
  502. "api_key": []
  503. }
  504. ]
  505. }
  506. },
  507. "/api/v2/plugins/shuck-stop/settings": {
  508. "get": {
  509. "tags": [
  510. "plugins-shuck-stop"
  511. ],
  512. "summary": "Get settings",
  513. "responses": {
  514. "200": {
  515. "description": "Success",
  516. "content": {
  517. "application/json": {
  518. "schema": {
  519. "$ref": "#/components/schemas/pluginSettingsPage"
  520. }
  521. }
  522. }
  523. },
  524. "401": {
  525. "description": "Unauthorized"
  526. }
  527. },
  528. "security": [
  529. {
  530. "api_key": []
  531. }
  532. ]
  533. }
  534. },
  535. "/api/v2/plugins/shuck-stop/run": {
  536. "get": {
  537. "tags": [
  538. "plugins-shuck-stop"
  539. ],
  540. "summary": "Run ShuckStop plugin",
  541. "responses": {
  542. "200": {
  543. "description": "Success",
  544. "content": {
  545. "application/json": {
  546. "schema": {
  547. "$ref": "#/components/schemas/shuckStopRun"
  548. }
  549. }
  550. }
  551. },
  552. "401": {
  553. "description": "Unauthorized"
  554. }
  555. },
  556. "security": [
  557. {
  558. "api_key": []
  559. }
  560. ]
  561. }
  562. },
  563. "/api/v2/plugins/speedtest/settings": {
  564. "get": {
  565. "tags": [
  566. "plugins-speedtest"
  567. ],
  568. "summary": "Get settings",
  569. "responses": {
  570. "200": {
  571. "description": "Success",
  572. "content": {
  573. "application/json": {
  574. "schema": {
  575. "$ref": "#/components/schemas/pluginSettingsPage"
  576. }
  577. }
  578. }
  579. },
  580. "401": {
  581. "description": "Unauthorized"
  582. }
  583. },
  584. "security": [
  585. {
  586. "api_key": []
  587. }
  588. ]
  589. }
  590. },
  591. "/api/v2/2fa": {
  592. "put": {
  593. "tags": [
  594. "2fa"
  595. ],
  596. "summary": "Save 2FA code",
  597. "requestBody": {
  598. "description": "Success",
  599. "required": true,
  600. "content": {
  601. "application/json": {
  602. "schema": {
  603. "$ref": "#/components/schemas/submit-2fa-save"
  604. }
  605. }
  606. }
  607. },
  608. "responses": {
  609. "200": {
  610. "description": "Success",
  611. "content": {
  612. "application/json": {
  613. "schema": {
  614. "$ref": "#/components/schemas/success-message"
  615. }
  616. }
  617. }
  618. },
  619. "401": {
  620. "description": "Unauthorized",
  621. "content": {
  622. "application/json": {
  623. "schema": {
  624. "$ref": "#/components/schemas/unauthorized-message"
  625. }
  626. }
  627. }
  628. },
  629. "422": {
  630. "description": "Error",
  631. "content": {
  632. "application/json": {
  633. "schema": {
  634. "$ref": "#/components/schemas/error-message"
  635. }
  636. }
  637. }
  638. }
  639. },
  640. "security": [
  641. {
  642. "api_key": []
  643. }
  644. ]
  645. },
  646. "post": {
  647. "tags": [
  648. "2fa"
  649. ],
  650. "summary": "Verify 2FA code",
  651. "requestBody": {
  652. "description": "Success",
  653. "required": true,
  654. "content": {
  655. "application/json": {
  656. "schema": {
  657. "$ref": "#/components/schemas/submit-2fa-verify"
  658. }
  659. }
  660. }
  661. },
  662. "responses": {
  663. "200": {
  664. "description": "Success",
  665. "content": {
  666. "application/json": {
  667. "schema": {
  668. "$ref": "#/components/schemas/success-message"
  669. }
  670. }
  671. }
  672. },
  673. "401": {
  674. "description": "Unauthorized",
  675. "content": {
  676. "application/json": {
  677. "schema": {
  678. "$ref": "#/components/schemas/unauthorized-message"
  679. }
  680. }
  681. }
  682. },
  683. "404": {
  684. "description": "Error",
  685. "content": {
  686. "application/json": {
  687. "schema": {
  688. "$ref": "#/components/schemas/error-message"
  689. }
  690. }
  691. }
  692. },
  693. "422": {
  694. "description": "Error",
  695. "content": {
  696. "application/json": {
  697. "schema": {
  698. "$ref": "#/components/schemas/error-message"
  699. }
  700. }
  701. }
  702. },
  703. "500": {
  704. "description": "Error",
  705. "content": {
  706. "application/json": {
  707. "schema": {
  708. "$ref": "#/components/schemas/error-message"
  709. }
  710. }
  711. }
  712. }
  713. },
  714. "security": [
  715. {
  716. "api_key": []
  717. }
  718. ]
  719. },
  720. "delete": {
  721. "tags": [
  722. "2fa"
  723. ],
  724. "summary": "Delete 2FA code",
  725. "responses": {
  726. "204": {
  727. "description": "Success"
  728. },
  729. "401": {
  730. "description": "Unauthorized",
  731. "content": {
  732. "application/json": {
  733. "schema": {
  734. "$ref": "#/components/schemas/unauthorized-message"
  735. }
  736. }
  737. }
  738. }
  739. },
  740. "security": [
  741. {
  742. "api_key": []
  743. }
  744. ]
  745. }
  746. },
  747. "/api/v2/2fa/{type}": {
  748. "post": {
  749. "tags": [
  750. "2fa"
  751. ],
  752. "summary": "Create 2FA code",
  753. "parameters": [
  754. {
  755. "name": "type",
  756. "in": "path",
  757. "description": "The type of 2FA",
  758. "required": true,
  759. "schema": {
  760. "type": "string"
  761. },
  762. "example": "google"
  763. }
  764. ],
  765. "responses": {
  766. "200": {
  767. "description": "Success",
  768. "content": {
  769. "application/json": {
  770. "schema": {
  771. "$ref": "#/components/schemas/success-message"
  772. }
  773. }
  774. }
  775. }
  776. }
  777. }
  778. },
  779. "/api/v2/categories": {
  780. "get": {
  781. "tags": [
  782. "categories"
  783. ],
  784. "summary": "Get all categories",
  785. "responses": {
  786. "200": {
  787. "description": "Success",
  788. "content": {
  789. "application/json": {
  790. "schema": {
  791. "$ref": "#/components/schemas/success-message"
  792. }
  793. }
  794. }
  795. },
  796. "401": {
  797. "description": "Unauthorized",
  798. "content": {
  799. "application/json": {
  800. "schema": {
  801. "$ref": "#/components/schemas/unauthorized-message"
  802. }
  803. }
  804. }
  805. },
  806. "404": {
  807. "description": "Error",
  808. "content": {
  809. "application/json": {
  810. "schema": {
  811. "$ref": "#/components/schemas/error-message"
  812. }
  813. }
  814. }
  815. },
  816. "422": {
  817. "description": "Error",
  818. "content": {
  819. "application/json": {
  820. "schema": {
  821. "$ref": "#/components/schemas/error-message"
  822. }
  823. }
  824. }
  825. },
  826. "500": {
  827. "description": "Error",
  828. "content": {
  829. "application/json": {
  830. "schema": {
  831. "$ref": "#/components/schemas/error-message"
  832. }
  833. }
  834. }
  835. }
  836. },
  837. "security": [
  838. {
  839. "api_key": []
  840. }
  841. ]
  842. },
  843. "put": {
  844. "tags": [
  845. "categories"
  846. ],
  847. "summary": "Update category order",
  848. "requestBody": {
  849. "description": "Success",
  850. "required": true,
  851. "content": {
  852. "application/json": {
  853. "schema": {
  854. "$ref": "#/components/schemas/submit-2fa-verify"
  855. }
  856. }
  857. }
  858. },
  859. "responses": {
  860. "200": {
  861. "description": "Success",
  862. "content": {
  863. "application/json": {
  864. "schema": {
  865. "$ref": "#/components/schemas/success-message"
  866. }
  867. }
  868. }
  869. },
  870. "401": {
  871. "description": "Unauthorized",
  872. "content": {
  873. "application/json": {
  874. "schema": {
  875. "$ref": "#/components/schemas/unauthorized-message"
  876. }
  877. }
  878. }
  879. },
  880. "404": {
  881. "description": "Error",
  882. "content": {
  883. "application/json": {
  884. "schema": {
  885. "$ref": "#/components/schemas/error-message"
  886. }
  887. }
  888. }
  889. },
  890. "422": {
  891. "description": "Error",
  892. "content": {
  893. "application/json": {
  894. "schema": {
  895. "$ref": "#/components/schemas/error-message"
  896. }
  897. }
  898. }
  899. },
  900. "500": {
  901. "description": "Error",
  902. "content": {
  903. "application/json": {
  904. "schema": {
  905. "$ref": "#/components/schemas/error-message"
  906. }
  907. }
  908. }
  909. }
  910. },
  911. "security": [
  912. {
  913. "api_key": []
  914. }
  915. ]
  916. },
  917. "post": {
  918. "tags": [
  919. "categories"
  920. ],
  921. "summary": "Add new category",
  922. "requestBody": {
  923. "description": "Success",
  924. "required": true,
  925. "content": {
  926. "application/json": {
  927. "schema": {
  928. "$ref": "#/components/schemas/submit-2fa-verify"
  929. }
  930. }
  931. }
  932. },
  933. "responses": {
  934. "200": {
  935. "description": "Success",
  936. "content": {
  937. "application/json": {
  938. "schema": {
  939. "$ref": "#/components/schemas/success-message"
  940. }
  941. }
  942. }
  943. },
  944. "401": {
  945. "description": "Unauthorized",
  946. "content": {
  947. "application/json": {
  948. "schema": {
  949. "$ref": "#/components/schemas/unauthorized-message"
  950. }
  951. }
  952. }
  953. },
  954. "404": {
  955. "description": "Error",
  956. "content": {
  957. "application/json": {
  958. "schema": {
  959. "$ref": "#/components/schemas/error-message"
  960. }
  961. }
  962. }
  963. },
  964. "422": {
  965. "description": "Error",
  966. "content": {
  967. "application/json": {
  968. "schema": {
  969. "$ref": "#/components/schemas/error-message"
  970. }
  971. }
  972. }
  973. },
  974. "500": {
  975. "description": "Error",
  976. "content": {
  977. "application/json": {
  978. "schema": {
  979. "$ref": "#/components/schemas/error-message"
  980. }
  981. }
  982. }
  983. }
  984. },
  985. "security": [
  986. {
  987. "api_key": []
  988. }
  989. ]
  990. }
  991. },
  992. "/api/v2/categories/{id}": {
  993. "put": {
  994. "tags": [
  995. "categories"
  996. ],
  997. "summary": "Update category",
  998. "requestBody": {
  999. "description": "Success",
  1000. "required": true,
  1001. "content": {
  1002. "application/json": {
  1003. "schema": {
  1004. "$ref": "#/components/schemas/submit-2fa-verify"
  1005. }
  1006. }
  1007. }
  1008. },
  1009. "responses": {
  1010. "200": {
  1011. "description": "Success",
  1012. "content": {
  1013. "application/json": {
  1014. "schema": {
  1015. "$ref": "#/components/schemas/success-message"
  1016. }
  1017. }
  1018. }
  1019. },
  1020. "401": {
  1021. "description": "Unauthorized",
  1022. "content": {
  1023. "application/json": {
  1024. "schema": {
  1025. "$ref": "#/components/schemas/unauthorized-message"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "404": {
  1031. "description": "Error",
  1032. "content": {
  1033. "application/json": {
  1034. "schema": {
  1035. "$ref": "#/components/schemas/error-message"
  1036. }
  1037. }
  1038. }
  1039. },
  1040. "422": {
  1041. "description": "Error",
  1042. "content": {
  1043. "application/json": {
  1044. "schema": {
  1045. "$ref": "#/components/schemas/error-message"
  1046. }
  1047. }
  1048. }
  1049. },
  1050. "500": {
  1051. "description": "Error",
  1052. "content": {
  1053. "application/json": {
  1054. "schema": {
  1055. "$ref": "#/components/schemas/error-message"
  1056. }
  1057. }
  1058. }
  1059. }
  1060. },
  1061. "security": [
  1062. {
  1063. "api_key": []
  1064. }
  1065. ]
  1066. },
  1067. "delete": {
  1068. "tags": [
  1069. "categories"
  1070. ],
  1071. "summary": "Delete category",
  1072. "requestBody": {
  1073. "description": "Success",
  1074. "required": true,
  1075. "content": {
  1076. "application/json": {
  1077. "schema": {
  1078. "$ref": "#/components/schemas/submit-2fa-verify"
  1079. }
  1080. }
  1081. }
  1082. },
  1083. "responses": {
  1084. "200": {
  1085. "description": "Success",
  1086. "content": {
  1087. "application/json": {
  1088. "schema": {
  1089. "$ref": "#/components/schemas/success-message"
  1090. }
  1091. }
  1092. }
  1093. },
  1094. "401": {
  1095. "description": "Unauthorized",
  1096. "content": {
  1097. "application/json": {
  1098. "schema": {
  1099. "$ref": "#/components/schemas/unauthorized-message"
  1100. }
  1101. }
  1102. }
  1103. },
  1104. "404": {
  1105. "description": "Error",
  1106. "content": {
  1107. "application/json": {
  1108. "schema": {
  1109. "$ref": "#/components/schemas/error-message"
  1110. }
  1111. }
  1112. }
  1113. },
  1114. "422": {
  1115. "description": "Error",
  1116. "content": {
  1117. "application/json": {
  1118. "schema": {
  1119. "$ref": "#/components/schemas/error-message"
  1120. }
  1121. }
  1122. }
  1123. },
  1124. "500": {
  1125. "description": "Error",
  1126. "content": {
  1127. "application/json": {
  1128. "schema": {
  1129. "$ref": "#/components/schemas/error-message"
  1130. }
  1131. }
  1132. }
  1133. }
  1134. },
  1135. "security": [
  1136. {
  1137. "api_key": []
  1138. }
  1139. ]
  1140. }
  1141. },
  1142. "/api/v2/config": {
  1143. "get": {
  1144. "tags": [
  1145. "config"
  1146. ],
  1147. "summary": "Get Organizr Coniguration Items",
  1148. "responses": {
  1149. "200": {
  1150. "description": "Success",
  1151. "content": {
  1152. "application/json": {
  1153. "schema": {
  1154. "$ref": "#/components/schemas/success-message"
  1155. }
  1156. }
  1157. }
  1158. },
  1159. "401": {
  1160. "description": "Unauthorized"
  1161. }
  1162. },
  1163. "security": [
  1164. {
  1165. "api_key": []
  1166. }
  1167. ]
  1168. },
  1169. "put": {
  1170. "tags": [
  1171. "config"
  1172. ],
  1173. "summary": "Update Organizr Coniguration Item(s)",
  1174. "requestBody": {
  1175. "description": "Success",
  1176. "required": true,
  1177. "content": {
  1178. "application/json": {
  1179. "schema": {
  1180. "$ref": "#/components/schemas/config-items-example"
  1181. }
  1182. }
  1183. }
  1184. },
  1185. "responses": {
  1186. "200": {
  1187. "description": "Success",
  1188. "content": {
  1189. "application/json": {
  1190. "schema": {
  1191. "$ref": "#/components/schemas/success-message"
  1192. }
  1193. }
  1194. }
  1195. },
  1196. "401": {
  1197. "description": "Unauthorized"
  1198. }
  1199. },
  1200. "security": [
  1201. {
  1202. "api_key": []
  1203. }
  1204. ]
  1205. }
  1206. },
  1207. "/api/v2/config/{item}": {
  1208. "get": {
  1209. "tags": [
  1210. "config"
  1211. ],
  1212. "summary": "Get Organizr Coniguration Item",
  1213. "parameters": [
  1214. {
  1215. "name": "item",
  1216. "in": "path",
  1217. "description": "The key of the item you want to grab",
  1218. "required": true,
  1219. "schema": {
  1220. "type": "string"
  1221. },
  1222. "example": "configVersion"
  1223. }
  1224. ],
  1225. "responses": {
  1226. "200": {
  1227. "description": "Success",
  1228. "content": {
  1229. "application/json": {
  1230. "schema": {
  1231. "$ref": "#/components/schemas/success-message"
  1232. }
  1233. }
  1234. }
  1235. },
  1236. "401": {
  1237. "description": "Unauthorized"
  1238. }
  1239. },
  1240. "security": [
  1241. {
  1242. "api_key": []
  1243. }
  1244. ]
  1245. }
  1246. },
  1247. "/api/v2/config/search/{term}": {
  1248. "get": {
  1249. "tags": [
  1250. "config"
  1251. ],
  1252. "summary": "Search Organizr Coniguration Items",
  1253. "parameters": [
  1254. {
  1255. "name": "term",
  1256. "in": "path",
  1257. "description": "The term of the items you want to grab",
  1258. "required": true,
  1259. "schema": {
  1260. "type": "string"
  1261. },
  1262. "example": "version"
  1263. }
  1264. ],
  1265. "responses": {
  1266. "200": {
  1267. "description": "Success",
  1268. "content": {
  1269. "application/json": {
  1270. "schema": {
  1271. "$ref": "#/components/schemas/success-message"
  1272. }
  1273. }
  1274. }
  1275. },
  1276. "401": {
  1277. "description": "Unauthorized"
  1278. }
  1279. },
  1280. "security": [
  1281. {
  1282. "api_key": []
  1283. }
  1284. ]
  1285. }
  1286. },
  1287. "/api/v2/test/ldap": {
  1288. "post": {
  1289. "tags": [
  1290. "test connection"
  1291. ],
  1292. "summary": "Test LDAP connection",
  1293. "responses": {
  1294. "200": {
  1295. "description": "Success",
  1296. "content": {
  1297. "application/json": {
  1298. "schema": {
  1299. "$ref": "#/components/schemas/success-message"
  1300. }
  1301. }
  1302. }
  1303. },
  1304. "401": {
  1305. "description": "Unauthorized",
  1306. "content": {
  1307. "application/json": {
  1308. "schema": {
  1309. "$ref": "#/components/schemas/unauthorized-message"
  1310. }
  1311. }
  1312. }
  1313. },
  1314. "404": {
  1315. "description": "Error",
  1316. "content": {
  1317. "application/json": {
  1318. "schema": {
  1319. "$ref": "#/components/schemas/error-message"
  1320. }
  1321. }
  1322. }
  1323. },
  1324. "409": {
  1325. "description": "Error",
  1326. "content": {
  1327. "application/json": {
  1328. "schema": {
  1329. "$ref": "#/components/schemas/error-message"
  1330. }
  1331. }
  1332. }
  1333. }
  1334. },
  1335. "security": [
  1336. {
  1337. "api_key": []
  1338. }
  1339. ]
  1340. }
  1341. },
  1342. "/api/v2/test/ldap/login": {
  1343. "post": {
  1344. "tags": [
  1345. "test connection"
  1346. ],
  1347. "summary": "Test LDAP connection using account login",
  1348. "responses": {
  1349. "200": {
  1350. "description": "Success",
  1351. "content": {
  1352. "application/json": {
  1353. "schema": {
  1354. "$ref": "#/components/schemas/success-message"
  1355. }
  1356. }
  1357. }
  1358. },
  1359. "401": {
  1360. "description": "Unauthorized",
  1361. "content": {
  1362. "application/json": {
  1363. "schema": {
  1364. "$ref": "#/components/schemas/unauthorized-message"
  1365. }
  1366. }
  1367. }
  1368. },
  1369. "404": {
  1370. "description": "Error",
  1371. "content": {
  1372. "application/json": {
  1373. "schema": {
  1374. "$ref": "#/components/schemas/error-message"
  1375. }
  1376. }
  1377. }
  1378. },
  1379. "409": {
  1380. "description": "Error",
  1381. "content": {
  1382. "application/json": {
  1383. "schema": {
  1384. "$ref": "#/components/schemas/error-message"
  1385. }
  1386. }
  1387. }
  1388. }
  1389. },
  1390. "security": [
  1391. {
  1392. "api_key": []
  1393. }
  1394. ]
  1395. }
  1396. },
  1397. "/api/v2/test/iframe": {
  1398. "post": {
  1399. "tags": [
  1400. "test connection"
  1401. ],
  1402. "summary": "Test if URL can be iFramed",
  1403. "responses": {
  1404. "200": {
  1405. "description": "Success",
  1406. "content": {
  1407. "application/json": {
  1408. "schema": {
  1409. "$ref": "#/components/schemas/success-message"
  1410. }
  1411. }
  1412. }
  1413. },
  1414. "401": {
  1415. "description": "Unauthorized",
  1416. "content": {
  1417. "application/json": {
  1418. "schema": {
  1419. "$ref": "#/components/schemas/unauthorized-message"
  1420. }
  1421. }
  1422. }
  1423. },
  1424. "404": {
  1425. "description": "Error",
  1426. "content": {
  1427. "application/json": {
  1428. "schema": {
  1429. "$ref": "#/components/schemas/error-message"
  1430. }
  1431. }
  1432. }
  1433. },
  1434. "409": {
  1435. "description": "Error",
  1436. "content": {
  1437. "application/json": {
  1438. "schema": {
  1439. "$ref": "#/components/schemas/error-message"
  1440. }
  1441. }
  1442. }
  1443. }
  1444. },
  1445. "security": [
  1446. {
  1447. "api_key": []
  1448. }
  1449. ]
  1450. }
  1451. },
  1452. "/api/v2/test/path": {
  1453. "post": {
  1454. "tags": [
  1455. "test connection"
  1456. ],
  1457. "summary": "Test if path has correct permissions",
  1458. "responses": {
  1459. "200": {
  1460. "description": "Success",
  1461. "content": {
  1462. "application/json": {
  1463. "schema": {
  1464. "$ref": "#/components/schemas/success-message"
  1465. }
  1466. }
  1467. }
  1468. },
  1469. "401": {
  1470. "description": "Unauthorized",
  1471. "content": {
  1472. "application/json": {
  1473. "schema": {
  1474. "$ref": "#/components/schemas/unauthorized-message"
  1475. }
  1476. }
  1477. }
  1478. },
  1479. "404": {
  1480. "description": "Error",
  1481. "content": {
  1482. "application/json": {
  1483. "schema": {
  1484. "$ref": "#/components/schemas/error-message"
  1485. }
  1486. }
  1487. }
  1488. }
  1489. },
  1490. "security": [
  1491. {
  1492. "api_key": []
  1493. }
  1494. ]
  1495. }
  1496. },
  1497. "/api/v2/test/plex": {
  1498. "post": {
  1499. "tags": [
  1500. "test connection"
  1501. ],
  1502. "summary": "Test connection to Plex",
  1503. "responses": {
  1504. "200": {
  1505. "description": "Success",
  1506. "content": {
  1507. "application/json": {
  1508. "schema": {
  1509. "$ref": "#/components/schemas/success-message"
  1510. }
  1511. }
  1512. }
  1513. },
  1514. "401": {
  1515. "description": "Unauthorized",
  1516. "content": {
  1517. "application/json": {
  1518. "schema": {
  1519. "$ref": "#/components/schemas/unauthorized-message"
  1520. }
  1521. }
  1522. }
  1523. },
  1524. "422": {
  1525. "description": "Error",
  1526. "content": {
  1527. "application/json": {
  1528. "schema": {
  1529. "$ref": "#/components/schemas/error-message"
  1530. }
  1531. }
  1532. }
  1533. },
  1534. "500": {
  1535. "description": "Error",
  1536. "content": {
  1537. "application/json": {
  1538. "schema": {
  1539. "$ref": "#/components/schemas/error-message"
  1540. }
  1541. }
  1542. }
  1543. }
  1544. },
  1545. "security": [
  1546. {
  1547. "api_key": []
  1548. }
  1549. ]
  1550. }
  1551. },
  1552. "/api/v2/test/emby": {
  1553. "post": {
  1554. "tags": [
  1555. "test connection"
  1556. ],
  1557. "summary": "Test connection to Emby",
  1558. "responses": {
  1559. "200": {
  1560. "description": "Success",
  1561. "content": {
  1562. "application/json": {
  1563. "schema": {
  1564. "$ref": "#/components/schemas/success-message"
  1565. }
  1566. }
  1567. }
  1568. },
  1569. "401": {
  1570. "description": "Unauthorized",
  1571. "content": {
  1572. "application/json": {
  1573. "schema": {
  1574. "$ref": "#/components/schemas/unauthorized-message"
  1575. }
  1576. }
  1577. }
  1578. },
  1579. "422": {
  1580. "description": "Error",
  1581. "content": {
  1582. "application/json": {
  1583. "schema": {
  1584. "$ref": "#/components/schemas/error-message"
  1585. }
  1586. }
  1587. }
  1588. },
  1589. "500": {
  1590. "description": "Error",
  1591. "content": {
  1592. "application/json": {
  1593. "schema": {
  1594. "$ref": "#/components/schemas/error-message"
  1595. }
  1596. }
  1597. }
  1598. }
  1599. },
  1600. "security": [
  1601. {
  1602. "api_key": []
  1603. }
  1604. ]
  1605. }
  1606. },
  1607. "/api/v2/test/jellyfin": {
  1608. "post": {
  1609. "tags": [
  1610. "test connection"
  1611. ],
  1612. "summary": "Test connection to Jellyfin",
  1613. "responses": {
  1614. "200": {
  1615. "description": "Success",
  1616. "content": {
  1617. "application/json": {
  1618. "schema": {
  1619. "$ref": "#/components/schemas/success-message"
  1620. }
  1621. }
  1622. }
  1623. },
  1624. "401": {
  1625. "description": "Unauthorized",
  1626. "content": {
  1627. "application/json": {
  1628. "schema": {
  1629. "$ref": "#/components/schemas/unauthorized-message"
  1630. }
  1631. }
  1632. }
  1633. },
  1634. "422": {
  1635. "description": "Error",
  1636. "content": {
  1637. "application/json": {
  1638. "schema": {
  1639. "$ref": "#/components/schemas/error-message"
  1640. }
  1641. }
  1642. }
  1643. },
  1644. "500": {
  1645. "description": "Error",
  1646. "content": {
  1647. "application/json": {
  1648. "schema": {
  1649. "$ref": "#/components/schemas/error-message"
  1650. }
  1651. }
  1652. }
  1653. }
  1654. },
  1655. "security": [
  1656. {
  1657. "api_key": []
  1658. }
  1659. ]
  1660. }
  1661. },
  1662. "/api/v2/test/sabnzbd": {
  1663. "post": {
  1664. "tags": [
  1665. "test connection"
  1666. ],
  1667. "summary": "Test connection to SabNZBd",
  1668. "responses": {
  1669. "200": {
  1670. "description": "Success",
  1671. "content": {
  1672. "application/json": {
  1673. "schema": {
  1674. "$ref": "#/components/schemas/success-message"
  1675. }
  1676. }
  1677. }
  1678. },
  1679. "401": {
  1680. "description": "Unauthorized",
  1681. "content": {
  1682. "application/json": {
  1683. "schema": {
  1684. "$ref": "#/components/schemas/unauthorized-message"
  1685. }
  1686. }
  1687. }
  1688. },
  1689. "422": {
  1690. "description": "Error",
  1691. "content": {
  1692. "application/json": {
  1693. "schema": {
  1694. "$ref": "#/components/schemas/error-message"
  1695. }
  1696. }
  1697. }
  1698. },
  1699. "500": {
  1700. "description": "Error",
  1701. "content": {
  1702. "application/json": {
  1703. "schema": {
  1704. "$ref": "#/components/schemas/error-message"
  1705. }
  1706. }
  1707. }
  1708. }
  1709. },
  1710. "security": [
  1711. {
  1712. "api_key": []
  1713. }
  1714. ]
  1715. }
  1716. },
  1717. "/api/v2/test/pihole": {
  1718. "post": {
  1719. "tags": [
  1720. "test connection"
  1721. ],
  1722. "summary": "Test connection to PiHole",
  1723. "responses": {
  1724. "200": {
  1725. "description": "Success",
  1726. "content": {
  1727. "application/json": {
  1728. "schema": {
  1729. "$ref": "#/components/schemas/success-message"
  1730. }
  1731. }
  1732. }
  1733. },
  1734. "401": {
  1735. "description": "Unauthorized",
  1736. "content": {
  1737. "application/json": {
  1738. "schema": {
  1739. "$ref": "#/components/schemas/unauthorized-message"
  1740. }
  1741. }
  1742. }
  1743. },
  1744. "422": {
  1745. "description": "Error",
  1746. "content": {
  1747. "application/json": {
  1748. "schema": {
  1749. "$ref": "#/components/schemas/error-message"
  1750. }
  1751. }
  1752. }
  1753. },
  1754. "500": {
  1755. "description": "Error",
  1756. "content": {
  1757. "application/json": {
  1758. "schema": {
  1759. "$ref": "#/components/schemas/error-message"
  1760. }
  1761. }
  1762. }
  1763. }
  1764. },
  1765. "security": [
  1766. {
  1767. "api_key": []
  1768. }
  1769. ]
  1770. }
  1771. },
  1772. "/api/v2/test/adguard": {
  1773. "post": {
  1774. "tags": [
  1775. "test connection"
  1776. ],
  1777. "summary": "Test connection to AdGuard",
  1778. "responses": {
  1779. "200": {
  1780. "description": "Success",
  1781. "content": {
  1782. "application/json": {
  1783. "schema": {
  1784. "$ref": "#/components/schemas/success-message"
  1785. }
  1786. }
  1787. }
  1788. },
  1789. "401": {
  1790. "description": "Unauthorized",
  1791. "content": {
  1792. "application/json": {
  1793. "schema": {
  1794. "$ref": "#/components/schemas/unauthorized-message"
  1795. }
  1796. }
  1797. }
  1798. },
  1799. "422": {
  1800. "description": "Error",
  1801. "content": {
  1802. "application/json": {
  1803. "schema": {
  1804. "$ref": "#/components/schemas/error-message"
  1805. }
  1806. }
  1807. }
  1808. },
  1809. "500": {
  1810. "description": "Error",
  1811. "content": {
  1812. "application/json": {
  1813. "schema": {
  1814. "$ref": "#/components/schemas/error-message"
  1815. }
  1816. }
  1817. }
  1818. }
  1819. },
  1820. "security": [
  1821. {
  1822. "api_key": []
  1823. }
  1824. ]
  1825. }
  1826. },
  1827. "/api/v2/test/rtorrent": {
  1828. "post": {
  1829. "tags": [
  1830. "test connection"
  1831. ],
  1832. "summary": "Test connection to rTorrent",
  1833. "responses": {
  1834. "200": {
  1835. "description": "Success",
  1836. "content": {
  1837. "application/json": {
  1838. "schema": {
  1839. "$ref": "#/components/schemas/success-message"
  1840. }
  1841. }
  1842. }
  1843. },
  1844. "401": {
  1845. "description": "Unauthorized",
  1846. "content": {
  1847. "application/json": {
  1848. "schema": {
  1849. "$ref": "#/components/schemas/unauthorized-message"
  1850. }
  1851. }
  1852. }
  1853. },
  1854. "422": {
  1855. "description": "Error",
  1856. "content": {
  1857. "application/json": {
  1858. "schema": {
  1859. "$ref": "#/components/schemas/error-message"
  1860. }
  1861. }
  1862. }
  1863. },
  1864. "500": {
  1865. "description": "Error",
  1866. "content": {
  1867. "application/json": {
  1868. "schema": {
  1869. "$ref": "#/components/schemas/error-message"
  1870. }
  1871. }
  1872. }
  1873. }
  1874. },
  1875. "security": [
  1876. {
  1877. "api_key": []
  1878. }
  1879. ]
  1880. }
  1881. },
  1882. "/api/v2/test/sonarr": {
  1883. "post": {
  1884. "tags": [
  1885. "test connection"
  1886. ],
  1887. "summary": "Test connection to Sonarr",
  1888. "responses": {
  1889. "200": {
  1890. "description": "Success",
  1891. "content": {
  1892. "application/json": {
  1893. "schema": {
  1894. "$ref": "#/components/schemas/success-message"
  1895. }
  1896. }
  1897. }
  1898. },
  1899. "401": {
  1900. "description": "Unauthorized",
  1901. "content": {
  1902. "application/json": {
  1903. "schema": {
  1904. "$ref": "#/components/schemas/unauthorized-message"
  1905. }
  1906. }
  1907. }
  1908. },
  1909. "422": {
  1910. "description": "Error",
  1911. "content": {
  1912. "application/json": {
  1913. "schema": {
  1914. "$ref": "#/components/schemas/error-message"
  1915. }
  1916. }
  1917. }
  1918. },
  1919. "500": {
  1920. "description": "Error",
  1921. "content": {
  1922. "application/json": {
  1923. "schema": {
  1924. "$ref": "#/components/schemas/error-message"
  1925. }
  1926. }
  1927. }
  1928. }
  1929. },
  1930. "security": [
  1931. {
  1932. "api_key": []
  1933. }
  1934. ]
  1935. }
  1936. },
  1937. "/api/v2/test/radarr": {
  1938. "post": {
  1939. "tags": [
  1940. "test connection"
  1941. ],
  1942. "summary": "Test connection to Radarr",
  1943. "responses": {
  1944. "200": {
  1945. "description": "Success",
  1946. "content": {
  1947. "application/json": {
  1948. "schema": {
  1949. "$ref": "#/components/schemas/success-message"
  1950. }
  1951. }
  1952. }
  1953. },
  1954. "401": {
  1955. "description": "Unauthorized",
  1956. "content": {
  1957. "application/json": {
  1958. "schema": {
  1959. "$ref": "#/components/schemas/unauthorized-message"
  1960. }
  1961. }
  1962. }
  1963. },
  1964. "422": {
  1965. "description": "Error",
  1966. "content": {
  1967. "application/json": {
  1968. "schema": {
  1969. "$ref": "#/components/schemas/error-message"
  1970. }
  1971. }
  1972. }
  1973. },
  1974. "500": {
  1975. "description": "Error",
  1976. "content": {
  1977. "application/json": {
  1978. "schema": {
  1979. "$ref": "#/components/schemas/error-message"
  1980. }
  1981. }
  1982. }
  1983. }
  1984. },
  1985. "security": [
  1986. {
  1987. "api_key": []
  1988. }
  1989. ]
  1990. }
  1991. },
  1992. "/api/v2/test/lidarr": {
  1993. "post": {
  1994. "tags": [
  1995. "test connection"
  1996. ],
  1997. "summary": "Test connection to Lidarr",
  1998. "responses": {
  1999. "200": {
  2000. "description": "Success",
  2001. "content": {
  2002. "application/json": {
  2003. "schema": {
  2004. "$ref": "#/components/schemas/success-message"
  2005. }
  2006. }
  2007. }
  2008. },
  2009. "401": {
  2010. "description": "Unauthorized",
  2011. "content": {
  2012. "application/json": {
  2013. "schema": {
  2014. "$ref": "#/components/schemas/unauthorized-message"
  2015. }
  2016. }
  2017. }
  2018. },
  2019. "422": {
  2020. "description": "Error",
  2021. "content": {
  2022. "application/json": {
  2023. "schema": {
  2024. "$ref": "#/components/schemas/error-message"
  2025. }
  2026. }
  2027. }
  2028. },
  2029. "500": {
  2030. "description": "Error",
  2031. "content": {
  2032. "application/json": {
  2033. "schema": {
  2034. "$ref": "#/components/schemas/error-message"
  2035. }
  2036. }
  2037. }
  2038. }
  2039. },
  2040. "security": [
  2041. {
  2042. "api_key": []
  2043. }
  2044. ]
  2045. }
  2046. },
  2047. "/api/v2/test/sickrage": {
  2048. "post": {
  2049. "tags": [
  2050. "test connection"
  2051. ],
  2052. "summary": "Test connection to SickRage",
  2053. "responses": {
  2054. "200": {
  2055. "description": "Success",
  2056. "content": {
  2057. "application/json": {
  2058. "schema": {
  2059. "$ref": "#/components/schemas/success-message"
  2060. }
  2061. }
  2062. }
  2063. },
  2064. "401": {
  2065. "description": "Unauthorized",
  2066. "content": {
  2067. "application/json": {
  2068. "schema": {
  2069. "$ref": "#/components/schemas/unauthorized-message"
  2070. }
  2071. }
  2072. }
  2073. },
  2074. "422": {
  2075. "description": "Error",
  2076. "content": {
  2077. "application/json": {
  2078. "schema": {
  2079. "$ref": "#/components/schemas/error-message"
  2080. }
  2081. }
  2082. }
  2083. },
  2084. "500": {
  2085. "description": "Error",
  2086. "content": {
  2087. "application/json": {
  2088. "schema": {
  2089. "$ref": "#/components/schemas/error-message"
  2090. }
  2091. }
  2092. }
  2093. }
  2094. },
  2095. "security": [
  2096. {
  2097. "api_key": []
  2098. }
  2099. ]
  2100. }
  2101. },
  2102. "/api/v2/test/ombi": {
  2103. "post": {
  2104. "tags": [
  2105. "test connection"
  2106. ],
  2107. "summary": "Test connection to Ombi",
  2108. "responses": {
  2109. "200": {
  2110. "description": "Success",
  2111. "content": {
  2112. "application/json": {
  2113. "schema": {
  2114. "$ref": "#/components/schemas/success-message"
  2115. }
  2116. }
  2117. }
  2118. },
  2119. "401": {
  2120. "description": "Unauthorized",
  2121. "content": {
  2122. "application/json": {
  2123. "schema": {
  2124. "$ref": "#/components/schemas/unauthorized-message"
  2125. }
  2126. }
  2127. }
  2128. },
  2129. "422": {
  2130. "description": "Error",
  2131. "content": {
  2132. "application/json": {
  2133. "schema": {
  2134. "$ref": "#/components/schemas/error-message"
  2135. }
  2136. }
  2137. }
  2138. },
  2139. "500": {
  2140. "description": "Error",
  2141. "content": {
  2142. "application/json": {
  2143. "schema": {
  2144. "$ref": "#/components/schemas/error-message"
  2145. }
  2146. }
  2147. }
  2148. }
  2149. },
  2150. "security": [
  2151. {
  2152. "api_key": []
  2153. }
  2154. ]
  2155. }
  2156. },
  2157. "/api/v2/test/overseerr": {
  2158. "post": {
  2159. "tags": [
  2160. "test connection"
  2161. ],
  2162. "summary": "Test connection to Overseerr",
  2163. "responses": {
  2164. "200": {
  2165. "description": "Success",
  2166. "content": {
  2167. "application/json": {
  2168. "schema": {
  2169. "$ref": "#/components/schemas/success-message"
  2170. }
  2171. }
  2172. }
  2173. },
  2174. "401": {
  2175. "description": "Unauthorized",
  2176. "content": {
  2177. "application/json": {
  2178. "schema": {
  2179. "$ref": "#/components/schemas/unauthorized-message"
  2180. }
  2181. }
  2182. }
  2183. },
  2184. "422": {
  2185. "description": "Error",
  2186. "content": {
  2187. "application/json": {
  2188. "schema": {
  2189. "$ref": "#/components/schemas/error-message"
  2190. }
  2191. }
  2192. }
  2193. },
  2194. "500": {
  2195. "description": "Error",
  2196. "content": {
  2197. "application/json": {
  2198. "schema": {
  2199. "$ref": "#/components/schemas/error-message"
  2200. }
  2201. }
  2202. }
  2203. }
  2204. },
  2205. "security": [
  2206. {
  2207. "api_key": []
  2208. }
  2209. ]
  2210. }
  2211. },
  2212. "/api/v2/test/nzbget": {
  2213. "post": {
  2214. "tags": [
  2215. "test connection"
  2216. ],
  2217. "summary": "Test connection to NzbGet",
  2218. "responses": {
  2219. "200": {
  2220. "description": "Success",
  2221. "content": {
  2222. "application/json": {
  2223. "schema": {
  2224. "$ref": "#/components/schemas/success-message"
  2225. }
  2226. }
  2227. }
  2228. },
  2229. "401": {
  2230. "description": "Unauthorized",
  2231. "content": {
  2232. "application/json": {
  2233. "schema": {
  2234. "$ref": "#/components/schemas/unauthorized-message"
  2235. }
  2236. }
  2237. }
  2238. },
  2239. "422": {
  2240. "description": "Error",
  2241. "content": {
  2242. "application/json": {
  2243. "schema": {
  2244. "$ref": "#/components/schemas/error-message"
  2245. }
  2246. }
  2247. }
  2248. },
  2249. "500": {
  2250. "description": "Error",
  2251. "content": {
  2252. "application/json": {
  2253. "schema": {
  2254. "$ref": "#/components/schemas/error-message"
  2255. }
  2256. }
  2257. }
  2258. }
  2259. },
  2260. "security": [
  2261. {
  2262. "api_key": []
  2263. }
  2264. ]
  2265. }
  2266. },
  2267. "/api/v2/test/utorrent": {
  2268. "post": {
  2269. "tags": [
  2270. "test connection"
  2271. ],
  2272. "summary": "Test connection to uTorrent",
  2273. "responses": {
  2274. "200": {
  2275. "description": "Success",
  2276. "content": {
  2277. "application/json": {
  2278. "schema": {
  2279. "$ref": "#/components/schemas/success-message"
  2280. }
  2281. }
  2282. }
  2283. },
  2284. "401": {
  2285. "description": "Unauthorized",
  2286. "content": {
  2287. "application/json": {
  2288. "schema": {
  2289. "$ref": "#/components/schemas/unauthorized-message"
  2290. }
  2291. }
  2292. }
  2293. },
  2294. "400": {
  2295. "description": "Error",
  2296. "content": {
  2297. "application/json": {
  2298. "schema": {
  2299. "$ref": "#/components/schemas/error-message"
  2300. }
  2301. }
  2302. }
  2303. },
  2304. "500": {
  2305. "description": "Error",
  2306. "content": {
  2307. "application/json": {
  2308. "schema": {
  2309. "$ref": "#/components/schemas/error-message"
  2310. }
  2311. }
  2312. }
  2313. }
  2314. },
  2315. "security": [
  2316. {
  2317. "api_key": []
  2318. }
  2319. ]
  2320. }
  2321. },
  2322. "/api/v2/test/deluge": {
  2323. "post": {
  2324. "tags": [
  2325. "test connection"
  2326. ],
  2327. "summary": "Test connection to Deluge",
  2328. "responses": {
  2329. "200": {
  2330. "description": "Success",
  2331. "content": {
  2332. "application/json": {
  2333. "schema": {
  2334. "$ref": "#/components/schemas/success-message"
  2335. }
  2336. }
  2337. }
  2338. },
  2339. "401": {
  2340. "description": "Unauthorized",
  2341. "content": {
  2342. "application/json": {
  2343. "schema": {
  2344. "$ref": "#/components/schemas/unauthorized-message"
  2345. }
  2346. }
  2347. }
  2348. },
  2349. "422": {
  2350. "description": "Error",
  2351. "content": {
  2352. "application/json": {
  2353. "schema": {
  2354. "$ref": "#/components/schemas/error-message"
  2355. }
  2356. }
  2357. }
  2358. },
  2359. "500": {
  2360. "description": "Error",
  2361. "content": {
  2362. "application/json": {
  2363. "schema": {
  2364. "$ref": "#/components/schemas/error-message"
  2365. }
  2366. }
  2367. }
  2368. }
  2369. },
  2370. "security": [
  2371. {
  2372. "api_key": []
  2373. }
  2374. ]
  2375. }
  2376. },
  2377. "/api/v2/test/jdownloader": {
  2378. "post": {
  2379. "tags": [
  2380. "test connection"
  2381. ],
  2382. "summary": "Test connection to jDownloader",
  2383. "responses": {
  2384. "200": {
  2385. "description": "Success",
  2386. "content": {
  2387. "application/json": {
  2388. "schema": {
  2389. "$ref": "#/components/schemas/success-message"
  2390. }
  2391. }
  2392. }
  2393. },
  2394. "401": {
  2395. "description": "Unauthorized",
  2396. "content": {
  2397. "application/json": {
  2398. "schema": {
  2399. "$ref": "#/components/schemas/unauthorized-message"
  2400. }
  2401. }
  2402. }
  2403. },
  2404. "422": {
  2405. "description": "Error",
  2406. "content": {
  2407. "application/json": {
  2408. "schema": {
  2409. "$ref": "#/components/schemas/error-message"
  2410. }
  2411. }
  2412. }
  2413. },
  2414. "500": {
  2415. "description": "Error",
  2416. "content": {
  2417. "application/json": {
  2418. "schema": {
  2419. "$ref": "#/components/schemas/error-message"
  2420. }
  2421. }
  2422. }
  2423. }
  2424. },
  2425. "security": [
  2426. {
  2427. "api_key": []
  2428. }
  2429. ]
  2430. }
  2431. },
  2432. "/api/v2/test/transmission": {
  2433. "post": {
  2434. "tags": [
  2435. "test connection"
  2436. ],
  2437. "summary": "Test connection to Transmission",
  2438. "responses": {
  2439. "200": {
  2440. "description": "Success",
  2441. "content": {
  2442. "application/json": {
  2443. "schema": {
  2444. "$ref": "#/components/schemas/success-message"
  2445. }
  2446. }
  2447. }
  2448. },
  2449. "401": {
  2450. "description": "Unauthorized",
  2451. "content": {
  2452. "application/json": {
  2453. "schema": {
  2454. "$ref": "#/components/schemas/unauthorized-message"
  2455. }
  2456. }
  2457. }
  2458. },
  2459. "422": {
  2460. "description": "Error",
  2461. "content": {
  2462. "application/json": {
  2463. "schema": {
  2464. "$ref": "#/components/schemas/error-message"
  2465. }
  2466. }
  2467. }
  2468. },
  2469. "500": {
  2470. "description": "Error",
  2471. "content": {
  2472. "application/json": {
  2473. "schema": {
  2474. "$ref": "#/components/schemas/error-message"
  2475. }
  2476. }
  2477. }
  2478. }
  2479. },
  2480. "security": [
  2481. {
  2482. "api_key": []
  2483. }
  2484. ]
  2485. }
  2486. },
  2487. "/api/v2/test/qbittorrent": {
  2488. "post": {
  2489. "tags": [
  2490. "test connection"
  2491. ],
  2492. "summary": "Test connection to qBittorrent",
  2493. "responses": {
  2494. "200": {
  2495. "description": "Success",
  2496. "content": {
  2497. "application/json": {
  2498. "schema": {
  2499. "$ref": "#/components/schemas/success-message"
  2500. }
  2501. }
  2502. }
  2503. },
  2504. "401": {
  2505. "description": "Unauthorized",
  2506. "content": {
  2507. "application/json": {
  2508. "schema": {
  2509. "$ref": "#/components/schemas/unauthorized-message"
  2510. }
  2511. }
  2512. }
  2513. },
  2514. "422": {
  2515. "description": "Error",
  2516. "content": {
  2517. "application/json": {
  2518. "schema": {
  2519. "$ref": "#/components/schemas/error-message"
  2520. }
  2521. }
  2522. }
  2523. },
  2524. "500": {
  2525. "description": "Error",
  2526. "content": {
  2527. "application/json": {
  2528. "schema": {
  2529. "$ref": "#/components/schemas/error-message"
  2530. }
  2531. }
  2532. }
  2533. }
  2534. },
  2535. "security": [
  2536. {
  2537. "api_key": []
  2538. }
  2539. ]
  2540. }
  2541. },
  2542. "/api/v2/test/unifi": {
  2543. "post": {
  2544. "tags": [
  2545. "test connection"
  2546. ],
  2547. "summary": "Test connection to Unifi",
  2548. "responses": {
  2549. "200": {
  2550. "description": "Success",
  2551. "content": {
  2552. "application/json": {
  2553. "schema": {
  2554. "$ref": "#/components/schemas/success-message"
  2555. }
  2556. }
  2557. }
  2558. },
  2559. "401": {
  2560. "description": "Unauthorized",
  2561. "content": {
  2562. "application/json": {
  2563. "schema": {
  2564. "$ref": "#/components/schemas/unauthorized-message"
  2565. }
  2566. }
  2567. }
  2568. },
  2569. "422": {
  2570. "description": "Error",
  2571. "content": {
  2572. "application/json": {
  2573. "schema": {
  2574. "$ref": "#/components/schemas/error-message"
  2575. }
  2576. }
  2577. }
  2578. },
  2579. "500": {
  2580. "description": "Error",
  2581. "content": {
  2582. "application/json": {
  2583. "schema": {
  2584. "$ref": "#/components/schemas/error-message"
  2585. }
  2586. }
  2587. }
  2588. }
  2589. },
  2590. "security": [
  2591. {
  2592. "api_key": []
  2593. }
  2594. ]
  2595. }
  2596. },
  2597. "/api/v2/test/unifi/site": {
  2598. "post": {
  2599. "tags": [
  2600. "test connection"
  2601. ],
  2602. "summary": "Test connection to Unifi Sites",
  2603. "responses": {
  2604. "200": {
  2605. "description": "Success",
  2606. "content": {
  2607. "application/json": {
  2608. "schema": {
  2609. "$ref": "#/components/schemas/success-message"
  2610. }
  2611. }
  2612. }
  2613. },
  2614. "401": {
  2615. "description": "Unauthorized",
  2616. "content": {
  2617. "application/json": {
  2618. "schema": {
  2619. "$ref": "#/components/schemas/unauthorized-message"
  2620. }
  2621. }
  2622. }
  2623. },
  2624. "422": {
  2625. "description": "Error",
  2626. "content": {
  2627. "application/json": {
  2628. "schema": {
  2629. "$ref": "#/components/schemas/error-message"
  2630. }
  2631. }
  2632. }
  2633. },
  2634. "500": {
  2635. "description": "Error",
  2636. "content": {
  2637. "application/json": {
  2638. "schema": {
  2639. "$ref": "#/components/schemas/error-message"
  2640. }
  2641. }
  2642. }
  2643. }
  2644. },
  2645. "security": [
  2646. {
  2647. "api_key": []
  2648. }
  2649. ]
  2650. }
  2651. },
  2652. "/api/v2/test/tautulli": {
  2653. "post": {
  2654. "tags": [
  2655. "test connection"
  2656. ],
  2657. "summary": "Test connection to Tautulli",
  2658. "responses": {
  2659. "200": {
  2660. "description": "Success",
  2661. "content": {
  2662. "application/json": {
  2663. "schema": {
  2664. "$ref": "#/components/schemas/success-message"
  2665. }
  2666. }
  2667. }
  2668. },
  2669. "401": {
  2670. "description": "Unauthorized",
  2671. "content": {
  2672. "application/json": {
  2673. "schema": {
  2674. "$ref": "#/components/schemas/unauthorized-message"
  2675. }
  2676. }
  2677. }
  2678. },
  2679. "422": {
  2680. "description": "Error",
  2681. "content": {
  2682. "application/json": {
  2683. "schema": {
  2684. "$ref": "#/components/schemas/error-message"
  2685. }
  2686. }
  2687. }
  2688. },
  2689. "500": {
  2690. "description": "Error",
  2691. "content": {
  2692. "application/json": {
  2693. "schema": {
  2694. "$ref": "#/components/schemas/error-message"
  2695. }
  2696. }
  2697. }
  2698. }
  2699. },
  2700. "security": [
  2701. {
  2702. "api_key": []
  2703. }
  2704. ]
  2705. }
  2706. },
  2707. "/api/v2/test/cron": {
  2708. "get": {
  2709. "tags": [
  2710. "test connection"
  2711. ],
  2712. "summary": "Test if cron is setup correctly",
  2713. "responses": {
  2714. "200": {
  2715. "description": "Success",
  2716. "content": {
  2717. "application/json": {
  2718. "schema": {
  2719. "$ref": "#/components/schemas/success-message"
  2720. }
  2721. }
  2722. }
  2723. },
  2724. "401": {
  2725. "description": "Unauthorized",
  2726. "content": {
  2727. "application/json": {
  2728. "schema": {
  2729. "$ref": "#/components/schemas/unauthorized-message"
  2730. }
  2731. }
  2732. }
  2733. },
  2734. "422": {
  2735. "description": "Error",
  2736. "content": {
  2737. "application/json": {
  2738. "schema": {
  2739. "$ref": "#/components/schemas/error-message"
  2740. }
  2741. }
  2742. }
  2743. },
  2744. "500": {
  2745. "description": "Error",
  2746. "content": {
  2747. "application/json": {
  2748. "schema": {
  2749. "$ref": "#/components/schemas/error-message"
  2750. }
  2751. }
  2752. }
  2753. }
  2754. },
  2755. "security": [
  2756. {
  2757. "api_key": []
  2758. }
  2759. ]
  2760. },
  2761. "post": {
  2762. "tags": [
  2763. "test connection"
  2764. ],
  2765. "summary": "Test cron schedule",
  2766. "responses": {
  2767. "200": {
  2768. "description": "Success",
  2769. "content": {
  2770. "application/json": {
  2771. "schema": {
  2772. "$ref": "#/components/schemas/success-message"
  2773. }
  2774. }
  2775. }
  2776. },
  2777. "401": {
  2778. "description": "Unauthorized",
  2779. "content": {
  2780. "application/json": {
  2781. "schema": {
  2782. "$ref": "#/components/schemas/unauthorized-message"
  2783. }
  2784. }
  2785. }
  2786. },
  2787. "422": {
  2788. "description": "Error",
  2789. "content": {
  2790. "application/json": {
  2791. "schema": {
  2792. "$ref": "#/components/schemas/error-message"
  2793. }
  2794. }
  2795. }
  2796. },
  2797. "500": {
  2798. "description": "Error",
  2799. "content": {
  2800. "application/json": {
  2801. "schema": {
  2802. "$ref": "#/components/schemas/error-message"
  2803. }
  2804. }
  2805. }
  2806. }
  2807. },
  2808. "security": [
  2809. {
  2810. "api_key": []
  2811. }
  2812. ]
  2813. }
  2814. },
  2815. "/api/v2/test/folder": {
  2816. "post": {
  2817. "tags": [
  2818. "test connection"
  2819. ],
  2820. "summary": "Test folder path",
  2821. "responses": {
  2822. "200": {
  2823. "description": "Success",
  2824. "content": {
  2825. "application/json": {
  2826. "schema": {
  2827. "$ref": "#/components/schemas/success-message"
  2828. }
  2829. }
  2830. }
  2831. },
  2832. "401": {
  2833. "description": "Unauthorized",
  2834. "content": {
  2835. "application/json": {
  2836. "schema": {
  2837. "$ref": "#/components/schemas/unauthorized-message"
  2838. }
  2839. }
  2840. }
  2841. },
  2842. "422": {
  2843. "description": "Error",
  2844. "content": {
  2845. "application/json": {
  2846. "schema": {
  2847. "$ref": "#/components/schemas/error-message"
  2848. }
  2849. }
  2850. }
  2851. },
  2852. "500": {
  2853. "description": "Error",
  2854. "content": {
  2855. "application/json": {
  2856. "schema": {
  2857. "$ref": "#/components/schemas/error-message"
  2858. }
  2859. }
  2860. }
  2861. }
  2862. },
  2863. "security": [
  2864. {
  2865. "api_key": []
  2866. }
  2867. ]
  2868. }
  2869. },
  2870. "/api/v2/test/database": {
  2871. "post": {
  2872. "tags": [
  2873. "test connection"
  2874. ],
  2875. "summary": "Test Database connection",
  2876. "responses": {
  2877. "200": {
  2878. "description": "Success",
  2879. "content": {
  2880. "application/json": {
  2881. "schema": {
  2882. "$ref": "#/components/schemas/success-message"
  2883. }
  2884. }
  2885. }
  2886. },
  2887. "401": {
  2888. "description": "Unauthorized",
  2889. "content": {
  2890. "application/json": {
  2891. "schema": {
  2892. "$ref": "#/components/schemas/unauthorized-message"
  2893. }
  2894. }
  2895. }
  2896. },
  2897. "422": {
  2898. "description": "Error",
  2899. "content": {
  2900. "application/json": {
  2901. "schema": {
  2902. "$ref": "#/components/schemas/error-message"
  2903. }
  2904. }
  2905. }
  2906. },
  2907. "500": {
  2908. "description": "Error",
  2909. "content": {
  2910. "application/json": {
  2911. "schema": {
  2912. "$ref": "#/components/schemas/error-message"
  2913. }
  2914. }
  2915. }
  2916. }
  2917. },
  2918. "security": [
  2919. {
  2920. "api_key": []
  2921. }
  2922. ]
  2923. }
  2924. },
  2925. "/api/v2/test/jackett": {
  2926. "post": {
  2927. "tags": [
  2928. "test connection"
  2929. ],
  2930. "summary": "Test connection to Jackett",
  2931. "responses": {
  2932. "200": {
  2933. "description": "Success",
  2934. "content": {
  2935. "application/json": {
  2936. "schema": {
  2937. "$ref": "#/components/schemas/success-message"
  2938. }
  2939. }
  2940. }
  2941. },
  2942. "401": {
  2943. "description": "Unauthorized",
  2944. "content": {
  2945. "application/json": {
  2946. "schema": {
  2947. "$ref": "#/components/schemas/unauthorized-message"
  2948. }
  2949. }
  2950. }
  2951. },
  2952. "422": {
  2953. "description": "Error",
  2954. "content": {
  2955. "application/json": {
  2956. "schema": {
  2957. "$ref": "#/components/schemas/error-message"
  2958. }
  2959. }
  2960. }
  2961. },
  2962. "500": {
  2963. "description": "Error",
  2964. "content": {
  2965. "application/json": {
  2966. "schema": {
  2967. "$ref": "#/components/schemas/error-message"
  2968. }
  2969. }
  2970. }
  2971. }
  2972. },
  2973. "security": [
  2974. {
  2975. "api_key": []
  2976. }
  2977. ]
  2978. }
  2979. },
  2980. "/api/v2/test/prowlarr": {
  2981. "post": {
  2982. "tags": [
  2983. "test connection"
  2984. ],
  2985. "summary": "Test connection to prowlarr",
  2986. "responses": {
  2987. "200": {
  2988. "description": "Success",
  2989. "content": {
  2990. "application/json": {
  2991. "schema": {
  2992. "$ref": "#/components/schemas/success-message"
  2993. }
  2994. }
  2995. }
  2996. },
  2997. "401": {
  2998. "description": "Unauthorized",
  2999. "content": {
  3000. "application/json": {
  3001. "schema": {
  3002. "$ref": "#/components/schemas/unauthorized-message"
  3003. }
  3004. }
  3005. }
  3006. },
  3007. "422": {
  3008. "description": "Error",
  3009. "content": {
  3010. "application/json": {
  3011. "schema": {
  3012. "$ref": "#/components/schemas/error-message"
  3013. }
  3014. }
  3015. }
  3016. },
  3017. "500": {
  3018. "description": "Error",
  3019. "content": {
  3020. "application/json": {
  3021. "schema": {
  3022. "$ref": "#/components/schemas/error-message"
  3023. }
  3024. }
  3025. }
  3026. }
  3027. },
  3028. "security": [
  3029. {
  3030. "api_key": []
  3031. }
  3032. ]
  3033. }
  3034. },
  3035. "/api/v2/test/slack-logs": {
  3036. "post": {
  3037. "tags": [
  3038. "test connection"
  3039. ],
  3040. "summary": "Test connection to Slack/Discord",
  3041. "responses": {
  3042. "200": {
  3043. "description": "Success",
  3044. "content": {
  3045. "application/json": {
  3046. "schema": {
  3047. "$ref": "#/components/schemas/success-message"
  3048. }
  3049. }
  3050. }
  3051. },
  3052. "401": {
  3053. "description": "Unauthorized",
  3054. "content": {
  3055. "application/json": {
  3056. "schema": {
  3057. "$ref": "#/components/schemas/unauthorized-message"
  3058. }
  3059. }
  3060. }
  3061. },
  3062. "422": {
  3063. "description": "Error",
  3064. "content": {
  3065. "application/json": {
  3066. "schema": {
  3067. "$ref": "#/components/schemas/error-message"
  3068. }
  3069. }
  3070. }
  3071. },
  3072. "500": {
  3073. "description": "Error",
  3074. "content": {
  3075. "application/json": {
  3076. "schema": {
  3077. "$ref": "#/components/schemas/error-message"
  3078. }
  3079. }
  3080. }
  3081. }
  3082. },
  3083. "security": [
  3084. {
  3085. "api_key": []
  3086. }
  3087. ]
  3088. }
  3089. },
  3090. "/api/v2/emby/register": {
  3091. "post": {
  3092. "tags": [
  3093. "emby"
  3094. ],
  3095. "summary": "Register a user using Emby API",
  3096. "responses": {
  3097. "200": {
  3098. "description": "Success",
  3099. "content": {
  3100. "application/json": {
  3101. "schema": {
  3102. "$ref": "#/components/schemas/status"
  3103. }
  3104. }
  3105. }
  3106. },
  3107. "401": {
  3108. "description": "Unauthorized"
  3109. }
  3110. }
  3111. }
  3112. },
  3113. "/api/v2/organizr/{page}": {
  3114. "get": {
  3115. "tags": [
  3116. "page"
  3117. ],
  3118. "summary": "Get HTML for Organizr Pages",
  3119. "parameters": [
  3120. {
  3121. "name": "page",
  3122. "in": "path",
  3123. "description": "Page to get",
  3124. "required": true,
  3125. "schema": {
  3126. "type": "string"
  3127. }
  3128. }
  3129. ],
  3130. "responses": {
  3131. "200": {
  3132. "description": "Success",
  3133. "content": {
  3134. "application/json": {
  3135. "schema": {
  3136. "$ref": "#/components/schemas/get-html"
  3137. }
  3138. }
  3139. }
  3140. },
  3141. "401": {
  3142. "description": "Unauthorized"
  3143. }
  3144. },
  3145. "security": [
  3146. {
  3147. "api_key": []
  3148. }
  3149. ]
  3150. }
  3151. },
  3152. "/api/v2/page/{page}": {
  3153. "get": {
  3154. "tags": [
  3155. "page"
  3156. ],
  3157. "summary": "Get HTML for Organizr Pages",
  3158. "parameters": [
  3159. {
  3160. "name": "page",
  3161. "in": "path",
  3162. "description": "Page to get",
  3163. "required": true,
  3164. "schema": {
  3165. "type": "string"
  3166. }
  3167. }
  3168. ],
  3169. "responses": {
  3170. "200": {
  3171. "description": "Success",
  3172. "content": {
  3173. "application/json": {
  3174. "schema": {
  3175. "$ref": "#/components/schemas/get-html"
  3176. }
  3177. }
  3178. }
  3179. },
  3180. "401": {
  3181. "description": "Unauthorized"
  3182. }
  3183. },
  3184. "security": [
  3185. {
  3186. "api_key": []
  3187. }
  3188. ]
  3189. }
  3190. },
  3191. "/api/v2/page": {
  3192. "get": {
  3193. "tags": [
  3194. "page"
  3195. ],
  3196. "summary": "Get list of all Organizr Pages",
  3197. "responses": {
  3198. "200": {
  3199. "description": "Success",
  3200. "content": {
  3201. "application/json": {
  3202. "schema": {
  3203. "$ref": "#/components/schemas/get-html"
  3204. }
  3205. }
  3206. }
  3207. },
  3208. "401": {
  3209. "description": "Unauthorized"
  3210. }
  3211. },
  3212. "security": [
  3213. {
  3214. "api_key": []
  3215. }
  3216. ]
  3217. }
  3218. },
  3219. "/api/v2/ping": {
  3220. "get": {
  3221. "summary": "Ping the Organizr API",
  3222. "responses": {
  3223. "200": {
  3224. "description": "Success",
  3225. "content": {
  3226. "application/json": {
  3227. "schema": {
  3228. "$ref": "#/components/schemas/ping"
  3229. }
  3230. }
  3231. }
  3232. },
  3233. "401": {
  3234. "description": "Unauthorized"
  3235. }
  3236. }
  3237. }
  3238. },
  3239. "/api/v2/plex/register": {
  3240. "post": {
  3241. "tags": [
  3242. "plex"
  3243. ],
  3244. "summary": "Register a user using Plex API",
  3245. "requestBody": {
  3246. "description": "Success",
  3247. "required": true,
  3248. "content": {
  3249. "application/json": {
  3250. "schema": {
  3251. "$ref": "#/components/schemas/plexRegister"
  3252. }
  3253. }
  3254. }
  3255. },
  3256. "responses": {
  3257. "200": {
  3258. "description": "Success",
  3259. "content": {
  3260. "application/json": {
  3261. "schema": {
  3262. "$ref": "#/components/schemas/status"
  3263. }
  3264. }
  3265. }
  3266. },
  3267. "401": {
  3268. "description": "Unauthorized"
  3269. }
  3270. }
  3271. }
  3272. },
  3273. "/api/v2/status": {
  3274. "get": {
  3275. "summary": "Query Organizr API to perform a Status Check",
  3276. "responses": {
  3277. "200": {
  3278. "description": "Success",
  3279. "content": {
  3280. "application/json": {
  3281. "schema": {
  3282. "$ref": "#/components/schemas/status"
  3283. }
  3284. }
  3285. }
  3286. },
  3287. "401": {
  3288. "description": "Unauthorized"
  3289. }
  3290. }
  3291. }
  3292. },
  3293. "/api/v2/update": {
  3294. "get": {
  3295. "tags": [
  3296. "update"
  3297. ],
  3298. "summary": "Update Organizr install using update script",
  3299. "responses": {
  3300. "200": {
  3301. "description": "Success",
  3302. "content": {
  3303. "application/json": {
  3304. "schema": {
  3305. "$ref": "#/components/schemas/success-message"
  3306. }
  3307. }
  3308. }
  3309. },
  3310. "401": {
  3311. "description": "Unauthorized",
  3312. "content": {
  3313. "application/json": {
  3314. "schema": {
  3315. "$ref": "#/components/schemas/unauthorized-message"
  3316. }
  3317. }
  3318. }
  3319. },
  3320. "404": {
  3321. "description": "Error",
  3322. "content": {
  3323. "application/json": {
  3324. "schema": {
  3325. "$ref": "#/components/schemas/error-message"
  3326. }
  3327. }
  3328. }
  3329. },
  3330. "422": {
  3331. "description": "Error",
  3332. "content": {
  3333. "application/json": {
  3334. "schema": {
  3335. "$ref": "#/components/schemas/error-message"
  3336. }
  3337. }
  3338. }
  3339. },
  3340. "500": {
  3341. "description": "Error",
  3342. "content": {
  3343. "application/json": {
  3344. "schema": {
  3345. "$ref": "#/components/schemas/error-message"
  3346. }
  3347. }
  3348. }
  3349. }
  3350. },
  3351. "security": [
  3352. {
  3353. "api_key": []
  3354. }
  3355. ]
  3356. }
  3357. },
  3358. "/api/v2/update/download/{branch}": {
  3359. "get": {
  3360. "tags": [
  3361. "update"
  3362. ],
  3363. "summary": "Download Organizr Update Files",
  3364. "responses": {
  3365. "200": {
  3366. "description": "Success",
  3367. "content": {
  3368. "application/json": {
  3369. "schema": {
  3370. "$ref": "#/components/schemas/success-message"
  3371. }
  3372. }
  3373. }
  3374. },
  3375. "401": {
  3376. "description": "Unauthorized",
  3377. "content": {
  3378. "application/json": {
  3379. "schema": {
  3380. "$ref": "#/components/schemas/unauthorized-message"
  3381. }
  3382. }
  3383. }
  3384. },
  3385. "404": {
  3386. "description": "Error",
  3387. "content": {
  3388. "application/json": {
  3389. "schema": {
  3390. "$ref": "#/components/schemas/error-message"
  3391. }
  3392. }
  3393. }
  3394. },
  3395. "422": {
  3396. "description": "Error",
  3397. "content": {
  3398. "application/json": {
  3399. "schema": {
  3400. "$ref": "#/components/schemas/error-message"
  3401. }
  3402. }
  3403. }
  3404. },
  3405. "500": {
  3406. "description": "Error",
  3407. "content": {
  3408. "application/json": {
  3409. "schema": {
  3410. "$ref": "#/components/schemas/error-message"
  3411. }
  3412. }
  3413. }
  3414. }
  3415. },
  3416. "security": [
  3417. {
  3418. "api_key": []
  3419. }
  3420. ]
  3421. }
  3422. },
  3423. "/api/v2/update/unzip/{branch}": {
  3424. "get": {
  3425. "tags": [
  3426. "update"
  3427. ],
  3428. "summary": "Unzip Organizr Update Files",
  3429. "responses": {
  3430. "200": {
  3431. "description": "Success",
  3432. "content": {
  3433. "application/json": {
  3434. "schema": {
  3435. "$ref": "#/components/schemas/success-message"
  3436. }
  3437. }
  3438. }
  3439. },
  3440. "401": {
  3441. "description": "Unauthorized",
  3442. "content": {
  3443. "application/json": {
  3444. "schema": {
  3445. "$ref": "#/components/schemas/unauthorized-message"
  3446. }
  3447. }
  3448. }
  3449. },
  3450. "404": {
  3451. "description": "Error",
  3452. "content": {
  3453. "application/json": {
  3454. "schema": {
  3455. "$ref": "#/components/schemas/error-message"
  3456. }
  3457. }
  3458. }
  3459. },
  3460. "422": {
  3461. "description": "Error",
  3462. "content": {
  3463. "application/json": {
  3464. "schema": {
  3465. "$ref": "#/components/schemas/error-message"
  3466. }
  3467. }
  3468. }
  3469. },
  3470. "500": {
  3471. "description": "Error",
  3472. "content": {
  3473. "application/json": {
  3474. "schema": {
  3475. "$ref": "#/components/schemas/error-message"
  3476. }
  3477. }
  3478. }
  3479. }
  3480. },
  3481. "security": [
  3482. {
  3483. "api_key": []
  3484. }
  3485. ]
  3486. }
  3487. },
  3488. "/api/v2/update/move/{branch}": {
  3489. "get": {
  3490. "tags": [
  3491. "update"
  3492. ],
  3493. "summary": "Move Organizr Update Files",
  3494. "responses": {
  3495. "200": {
  3496. "description": "Success",
  3497. "content": {
  3498. "application/json": {
  3499. "schema": {
  3500. "$ref": "#/components/schemas/success-message"
  3501. }
  3502. }
  3503. }
  3504. },
  3505. "401": {
  3506. "description": "Unauthorized",
  3507. "content": {
  3508. "application/json": {
  3509. "schema": {
  3510. "$ref": "#/components/schemas/unauthorized-message"
  3511. }
  3512. }
  3513. }
  3514. },
  3515. "404": {
  3516. "description": "Error",
  3517. "content": {
  3518. "application/json": {
  3519. "schema": {
  3520. "$ref": "#/components/schemas/error-message"
  3521. }
  3522. }
  3523. }
  3524. },
  3525. "422": {
  3526. "description": "Error",
  3527. "content": {
  3528. "application/json": {
  3529. "schema": {
  3530. "$ref": "#/components/schemas/error-message"
  3531. }
  3532. }
  3533. }
  3534. },
  3535. "500": {
  3536. "description": "Error",
  3537. "content": {
  3538. "application/json": {
  3539. "schema": {
  3540. "$ref": "#/components/schemas/error-message"
  3541. }
  3542. }
  3543. }
  3544. }
  3545. },
  3546. "security": [
  3547. {
  3548. "api_key": []
  3549. }
  3550. ]
  3551. }
  3552. },
  3553. "/api/v2/update/cleanup/{branch}": {
  3554. "get": {
  3555. "tags": [
  3556. "update"
  3557. ],
  3558. "summary": "Cleanup Organizr Update Files",
  3559. "responses": {
  3560. "200": {
  3561. "description": "Success",
  3562. "content": {
  3563. "application/json": {
  3564. "schema": {
  3565. "$ref": "#/components/schemas/success-message"
  3566. }
  3567. }
  3568. }
  3569. },
  3570. "401": {
  3571. "description": "Unauthorized",
  3572. "content": {
  3573. "application/json": {
  3574. "schema": {
  3575. "$ref": "#/components/schemas/unauthorized-message"
  3576. }
  3577. }
  3578. }
  3579. },
  3580. "404": {
  3581. "description": "Error",
  3582. "content": {
  3583. "application/json": {
  3584. "schema": {
  3585. "$ref": "#/components/schemas/error-message"
  3586. }
  3587. }
  3588. }
  3589. },
  3590. "422": {
  3591. "description": "Error",
  3592. "content": {
  3593. "application/json": {
  3594. "schema": {
  3595. "$ref": "#/components/schemas/error-message"
  3596. }
  3597. }
  3598. }
  3599. },
  3600. "500": {
  3601. "description": "Error",
  3602. "content": {
  3603. "application/json": {
  3604. "schema": {
  3605. "$ref": "#/components/schemas/error-message"
  3606. }
  3607. }
  3608. }
  3609. }
  3610. },
  3611. "security": [
  3612. {
  3613. "api_key": []
  3614. }
  3615. ]
  3616. }
  3617. },
  3618. "/api/v2/update/docker": {
  3619. "get": {
  3620. "tags": [
  3621. "update"
  3622. ],
  3623. "summary": "Update Organizr install using Docker Container script",
  3624. "responses": {
  3625. "200": {
  3626. "description": "Success",
  3627. "content": {
  3628. "application/json": {
  3629. "schema": {
  3630. "$ref": "#/components/schemas/success-message"
  3631. }
  3632. }
  3633. }
  3634. },
  3635. "401": {
  3636. "description": "Unauthorized",
  3637. "content": {
  3638. "application/json": {
  3639. "schema": {
  3640. "$ref": "#/components/schemas/unauthorized-message"
  3641. }
  3642. }
  3643. }
  3644. },
  3645. "404": {
  3646. "description": "Error",
  3647. "content": {
  3648. "application/json": {
  3649. "schema": {
  3650. "$ref": "#/components/schemas/error-message"
  3651. }
  3652. }
  3653. }
  3654. },
  3655. "422": {
  3656. "description": "Error",
  3657. "content": {
  3658. "application/json": {
  3659. "schema": {
  3660. "$ref": "#/components/schemas/error-message"
  3661. }
  3662. }
  3663. }
  3664. },
  3665. "500": {
  3666. "description": "Error",
  3667. "content": {
  3668. "application/json": {
  3669. "schema": {
  3670. "$ref": "#/components/schemas/error-message"
  3671. }
  3672. }
  3673. }
  3674. }
  3675. },
  3676. "security": [
  3677. {
  3678. "api_key": []
  3679. }
  3680. ]
  3681. }
  3682. },
  3683. "/api/v2/update/windows": {
  3684. "get": {
  3685. "tags": [
  3686. "update"
  3687. ],
  3688. "summary": "Update Organizr install using Windows script",
  3689. "responses": {
  3690. "200": {
  3691. "description": "Success",
  3692. "content": {
  3693. "application/json": {
  3694. "schema": {
  3695. "$ref": "#/components/schemas/success-message"
  3696. }
  3697. }
  3698. }
  3699. },
  3700. "401": {
  3701. "description": "Unauthorized",
  3702. "content": {
  3703. "application/json": {
  3704. "schema": {
  3705. "$ref": "#/components/schemas/unauthorized-message"
  3706. }
  3707. }
  3708. }
  3709. },
  3710. "404": {
  3711. "description": "Error",
  3712. "content": {
  3713. "application/json": {
  3714. "schema": {
  3715. "$ref": "#/components/schemas/error-message"
  3716. }
  3717. }
  3718. }
  3719. },
  3720. "422": {
  3721. "description": "Error",
  3722. "content": {
  3723. "application/json": {
  3724. "schema": {
  3725. "$ref": "#/components/schemas/error-message"
  3726. }
  3727. }
  3728. }
  3729. },
  3730. "500": {
  3731. "description": "Error",
  3732. "content": {
  3733. "application/json": {
  3734. "schema": {
  3735. "$ref": "#/components/schemas/error-message"
  3736. }
  3737. }
  3738. }
  3739. }
  3740. },
  3741. "security": [
  3742. {
  3743. "api_key": []
  3744. }
  3745. ]
  3746. }
  3747. },
  3748. "/api/v2/update/linux": {
  3749. "get": {
  3750. "tags": [
  3751. "update"
  3752. ],
  3753. "summary": "Update Organizr install using Linux script",
  3754. "responses": {
  3755. "200": {
  3756. "description": "Success",
  3757. "content": {
  3758. "application/json": {
  3759. "schema": {
  3760. "$ref": "#/components/schemas/success-message"
  3761. }
  3762. }
  3763. }
  3764. },
  3765. "401": {
  3766. "description": "Unauthorized",
  3767. "content": {
  3768. "application/json": {
  3769. "schema": {
  3770. "$ref": "#/components/schemas/unauthorized-message"
  3771. }
  3772. }
  3773. }
  3774. },
  3775. "404": {
  3776. "description": "Error",
  3777. "content": {
  3778. "application/json": {
  3779. "schema": {
  3780. "$ref": "#/components/schemas/error-message"
  3781. }
  3782. }
  3783. }
  3784. },
  3785. "422": {
  3786. "description": "Error",
  3787. "content": {
  3788. "application/json": {
  3789. "schema": {
  3790. "$ref": "#/components/schemas/error-message"
  3791. }
  3792. }
  3793. }
  3794. },
  3795. "500": {
  3796. "description": "Error",
  3797. "content": {
  3798. "application/json": {
  3799. "schema": {
  3800. "$ref": "#/components/schemas/error-message"
  3801. }
  3802. }
  3803. }
  3804. }
  3805. },
  3806. "security": [
  3807. {
  3808. "api_key": []
  3809. }
  3810. ]
  3811. }
  3812. },
  3813. "/api/v2/update/migrate/{version}": {
  3814. "get": {
  3815. "tags": [
  3816. "update"
  3817. ],
  3818. "summary": "Run Organizr Version Mirgation for specific version",
  3819. "responses": {
  3820. "200": {
  3821. "description": "Success",
  3822. "content": {
  3823. "application/json": {
  3824. "schema": {
  3825. "$ref": "#/components/schemas/success-message"
  3826. }
  3827. }
  3828. }
  3829. },
  3830. "401": {
  3831. "description": "Unauthorized",
  3832. "content": {
  3833. "application/json": {
  3834. "schema": {
  3835. "$ref": "#/components/schemas/unauthorized-message"
  3836. }
  3837. }
  3838. }
  3839. },
  3840. "404": {
  3841. "description": "Error",
  3842. "content": {
  3843. "application/json": {
  3844. "schema": {
  3845. "$ref": "#/components/schemas/error-message"
  3846. }
  3847. }
  3848. }
  3849. },
  3850. "422": {
  3851. "description": "Error",
  3852. "content": {
  3853. "application/json": {
  3854. "schema": {
  3855. "$ref": "#/components/schemas/error-message"
  3856. }
  3857. }
  3858. }
  3859. },
  3860. "500": {
  3861. "description": "Error",
  3862. "content": {
  3863. "application/json": {
  3864. "schema": {
  3865. "$ref": "#/components/schemas/error-message"
  3866. }
  3867. }
  3868. }
  3869. }
  3870. },
  3871. "security": [
  3872. {
  3873. "api_key": []
  3874. }
  3875. ]
  3876. }
  3877. },
  3878. "/api/v2/update/reset/{feature}": {
  3879. "get": {
  3880. "tags": [
  3881. "update"
  3882. ],
  3883. "summary": "Reset an Organizr feature back to default values",
  3884. "responses": {
  3885. "200": {
  3886. "description": "Success",
  3887. "content": {
  3888. "application/json": {
  3889. "schema": {
  3890. "$ref": "#/components/schemas/success-message"
  3891. }
  3892. }
  3893. }
  3894. },
  3895. "401": {
  3896. "description": "Unauthorized",
  3897. "content": {
  3898. "application/json": {
  3899. "schema": {
  3900. "$ref": "#/components/schemas/unauthorized-message"
  3901. }
  3902. }
  3903. }
  3904. },
  3905. "404": {
  3906. "description": "Error",
  3907. "content": {
  3908. "application/json": {
  3909. "schema": {
  3910. "$ref": "#/components/schemas/error-message"
  3911. }
  3912. }
  3913. }
  3914. },
  3915. "422": {
  3916. "description": "Error",
  3917. "content": {
  3918. "application/json": {
  3919. "schema": {
  3920. "$ref": "#/components/schemas/error-message"
  3921. }
  3922. }
  3923. }
  3924. },
  3925. "500": {
  3926. "description": "Error",
  3927. "content": {
  3928. "application/json": {
  3929. "schema": {
  3930. "$ref": "#/components/schemas/error-message"
  3931. }
  3932. }
  3933. }
  3934. }
  3935. },
  3936. "security": [
  3937. {
  3938. "api_key": []
  3939. }
  3940. ]
  3941. }
  3942. }
  3943. },
  3944. "components": {
  3945. "schemas": {
  3946. "getChatMessages": {
  3947. "properties": {
  3948. "response": {
  3949. "properties": {
  3950. "result": {
  3951. "description": "success or error",
  3952. "type": "string",
  3953. "example": "success"
  3954. },
  3955. "message": {
  3956. "description": "success or error message",
  3957. "type": "string",
  3958. "example": null
  3959. },
  3960. "data": {
  3961. "description": "data from api",
  3962. "type": "array",
  3963. "items": {
  3964. "properties": {
  3965. "username": {
  3966. "type": "string",
  3967. "example": "causefx"
  3968. },
  3969. "date": {
  3970. "type": "string",
  3971. "example": "2018-09-01 02:02:24"
  3972. },
  3973. "gravatar": {
  3974. "type": "string",
  3975. "example": "https://www.gravatar.com/avatar/a47c4a4b915ddf9601cd228f890bc366?s=100&d=mm"
  3976. },
  3977. "message": {
  3978. "type": "string",
  3979. "example": "ok first message!"
  3980. },
  3981. "uid": {
  3982. "type": "string",
  3983. "example": "f5287"
  3984. }
  3985. },
  3986. "type": "object"
  3987. }
  3988. }
  3989. },
  3990. "type": "object"
  3991. }
  3992. },
  3993. "type": "object"
  3994. },
  3995. "submitMessageData": {
  3996. "properties": {
  3997. "message": {
  3998. "type": "string",
  3999. "example": "This is my message"
  4000. }
  4001. },
  4002. "type": "object"
  4003. },
  4004. "submitMessage": {
  4005. "properties": {
  4006. "response": {
  4007. "properties": {
  4008. "result": {
  4009. "description": "success or error",
  4010. "type": "string",
  4011. "example": "success"
  4012. },
  4013. "message": {
  4014. "description": "success or error message",
  4015. "type": "string",
  4016. "example": "message has been accepted"
  4017. },
  4018. "data": {
  4019. "description": "data from api",
  4020. "type": "string",
  4021. "example": null
  4022. }
  4023. },
  4024. "type": "object"
  4025. }
  4026. },
  4027. "type": "object"
  4028. },
  4029. "healthChecksRun": {
  4030. "properties": {
  4031. "response": {
  4032. "properties": {
  4033. "result": {
  4034. "description": "success or error",
  4035. "type": "string",
  4036. "example": "success"
  4037. },
  4038. "message": {
  4039. "description": "success or error message",
  4040. "type": "string",
  4041. "example": null
  4042. },
  4043. "data": {
  4044. "description": "data from api",
  4045. "type": "array",
  4046. "items": {
  4047. "properties": {
  4048. "Service Name": {
  4049. "type": "string",
  4050. "example": "Radarr"
  4051. },
  4052. "UUID": {
  4053. "type": "string",
  4054. "example": "883f0097-8f4c-4ca5-a9cf-053cfab8e334"
  4055. },
  4056. "External URL": {
  4057. "type": "string",
  4058. "example": "https://radarr.com"
  4059. },
  4060. "Internal URL": {
  4061. "type": "string",
  4062. "example": "http://radarr:7878"
  4063. },
  4064. "Enabled": {
  4065. "type": "string",
  4066. "example": "true"
  4067. },
  4068. "results": {
  4069. "type": "array",
  4070. "items": {
  4071. "properties": {
  4072. "internal": {
  4073. "type": "string",
  4074. "example": "Success"
  4075. },
  4076. "external": {
  4077. "type": "string",
  4078. "example": "Success"
  4079. }
  4080. },
  4081. "type": "object"
  4082. }
  4083. }
  4084. },
  4085. "type": "object"
  4086. }
  4087. }
  4088. },
  4089. "type": "object"
  4090. }
  4091. },
  4092. "type": "object"
  4093. },
  4094. "getInvites": {
  4095. "properties": {
  4096. "response": {
  4097. "properties": {
  4098. "result": {
  4099. "description": "success or error",
  4100. "type": "string",
  4101. "example": "success"
  4102. },
  4103. "message": {
  4104. "description": "success or error message",
  4105. "type": "string",
  4106. "example": null
  4107. },
  4108. "data": {
  4109. "description": "data from api",
  4110. "type": "array",
  4111. "items": {
  4112. "properties": {
  4113. "id": {
  4114. "type": "number",
  4115. "example": 1
  4116. },
  4117. "code": {
  4118. "type": "string",
  4119. "example": "NN9JH9"
  4120. },
  4121. "date": {
  4122. "type": "string",
  4123. "example": "2018-09-01 02:02:24"
  4124. },
  4125. "email": {
  4126. "type": "string",
  4127. "example": "causefX@organizr.app"
  4128. },
  4129. "username": {
  4130. "type": "string",
  4131. "example": "causefx"
  4132. },
  4133. "dateused": {
  4134. "type": "string",
  4135. "example": "2018-09-01 02:02:24"
  4136. },
  4137. "usedby": {
  4138. "type": "string",
  4139. "example": "causefx"
  4140. },
  4141. "ip": {
  4142. "type": "string",
  4143. "example": "10.0.0.0"
  4144. },
  4145. "valid": {
  4146. "type": "string",
  4147. "example": "No"
  4148. },
  4149. "type": {
  4150. "type": "string",
  4151. "example": "Plex"
  4152. }
  4153. },
  4154. "type": "object"
  4155. }
  4156. }
  4157. },
  4158. "type": "object"
  4159. }
  4160. },
  4161. "type": "object"
  4162. },
  4163. "createInviteCode": {
  4164. "properties": {
  4165. "response": {
  4166. "properties": {
  4167. "result": {
  4168. "description": "success or error",
  4169. "type": "string",
  4170. "example": "success"
  4171. },
  4172. "message": {
  4173. "description": "success or error message",
  4174. "type": "string",
  4175. "example": "Invite Code: XYXYXY has been created"
  4176. },
  4177. "data": {
  4178. "description": "data from api",
  4179. "type": "string",
  4180. "example": null
  4181. }
  4182. },
  4183. "type": "object"
  4184. }
  4185. },
  4186. "type": "object"
  4187. },
  4188. "verifyInviteCode": {
  4189. "properties": {
  4190. "response": {
  4191. "properties": {
  4192. "result": {
  4193. "description": "success or error",
  4194. "type": "string",
  4195. "example": "success"
  4196. },
  4197. "message": {
  4198. "description": "success or error message",
  4199. "type": "string",
  4200. "example": "Code has been verified"
  4201. },
  4202. "data": {
  4203. "description": "data from api",
  4204. "type": "string",
  4205. "example": null
  4206. }
  4207. },
  4208. "type": "object"
  4209. }
  4210. },
  4211. "type": "object"
  4212. },
  4213. "useInviteCode": {
  4214. "properties": {
  4215. "response": {
  4216. "properties": {
  4217. "result": {
  4218. "description": "success or error",
  4219. "type": "string",
  4220. "example": "success"
  4221. },
  4222. "message": {
  4223. "description": "success or error message",
  4224. "type": "string",
  4225. "example": "Plex/Emby User now has access to system"
  4226. },
  4227. "data": {
  4228. "description": "data from api",
  4229. "type": "string",
  4230. "example": null
  4231. }
  4232. },
  4233. "type": "object"
  4234. }
  4235. },
  4236. "type": "object"
  4237. },
  4238. "deleteInviteCode": {
  4239. "properties": {
  4240. "response": {
  4241. "properties": {
  4242. "result": {
  4243. "description": "success or error",
  4244. "type": "string",
  4245. "example": "success"
  4246. },
  4247. "message": {
  4248. "description": "success or error message",
  4249. "type": "string",
  4250. "example": "Code has been deleted"
  4251. },
  4252. "data": {
  4253. "description": "data from api",
  4254. "type": "string",
  4255. "example": null
  4256. }
  4257. },
  4258. "type": "object"
  4259. }
  4260. },
  4261. "type": "object"
  4262. },
  4263. "sendEmailData": {
  4264. "properties": {
  4265. "bcc": {
  4266. "description": "email of recipients (csv)",
  4267. "type": "string",
  4268. "example": "causefx@organizr.app,elmer@organizr.app"
  4269. },
  4270. "subject": {
  4271. "type": "string",
  4272. "example": "Hey There Buddy?!"
  4273. },
  4274. "body": {
  4275. "type": "string",
  4276. "example": "Hi! Boy, has it been a long time! Have you seen rox in socks?"
  4277. }
  4278. },
  4279. "type": "object"
  4280. },
  4281. "submit-2fa-verify": {
  4282. "properties": {
  4283. "secret": {
  4284. "type": "string",
  4285. "example": "OX1R4GA3425GSDF"
  4286. },
  4287. "code": {
  4288. "type": "string",
  4289. "example": "145047"
  4290. },
  4291. "type": {
  4292. "type": "string",
  4293. "example": "google"
  4294. }
  4295. },
  4296. "type": "object"
  4297. },
  4298. "submit-2fa-save": {
  4299. "properties": {
  4300. "secret": {
  4301. "type": "string",
  4302. "example": "OX1R4GA3425GSDF"
  4303. },
  4304. "type": {
  4305. "type": "string",
  4306. "example": "google"
  4307. }
  4308. },
  4309. "type": "object"
  4310. },
  4311. "submit-2fa-create": {
  4312. "properties": {
  4313. "type": {
  4314. "type": "string",
  4315. "example": "google"
  4316. }
  4317. },
  4318. "type": "object"
  4319. },
  4320. "get-html": {
  4321. "properties": {
  4322. "response": {
  4323. "properties": {
  4324. "result": {
  4325. "description": "success or error",
  4326. "type": "string",
  4327. "example": "success"
  4328. },
  4329. "message": {
  4330. "description": "success message or error message",
  4331. "type": "string",
  4332. "example": null
  4333. },
  4334. "data": {
  4335. "description": "data from api",
  4336. "type": "string",
  4337. "example": "\\r\\n\\u003Cscript\\u003E\\r\\n (function() {\\r\\n updateCheck();\\r\\n authDebugCheck();\\r\\n sponsorLoad();\\r\\n newsLoad();\\r\\n checkCommitLoad();\\r\\n [].slice.call(document.querySelectorAll('.sttabs-main-settings-div')).forEach(function(el) {\\r\\n new CBPFWTabs(el);\\r\\n });\\r\\n })();\\r\\n\\u003C/script\\u003E\\r\\n"
  4338. }
  4339. },
  4340. "type": "object"
  4341. }
  4342. },
  4343. "type": "object"
  4344. },
  4345. "plexRegister": {
  4346. "properties": {
  4347. "username": {
  4348. "type": "string",
  4349. "example": "causefx"
  4350. },
  4351. "email": {
  4352. "type": "string",
  4353. "example": "causefx@organizr.app"
  4354. },
  4355. "password": {
  4356. "type": "string",
  4357. "example": "iCanHazPa$$w0Rd"
  4358. }
  4359. },
  4360. "type": "object"
  4361. },
  4362. "ping": {
  4363. "properties": {
  4364. "response": {
  4365. "properties": {
  4366. "result": {
  4367. "description": "success or error",
  4368. "type": "string",
  4369. "example": "success"
  4370. },
  4371. "message": {
  4372. "description": "success or error message",
  4373. "type": "string",
  4374. "example": null
  4375. },
  4376. "data": {
  4377. "description": "data from api",
  4378. "type": "string",
  4379. "example": "pong"
  4380. }
  4381. },
  4382. "type": "object"
  4383. }
  4384. },
  4385. "type": "object"
  4386. },
  4387. "status": {
  4388. "properties": {
  4389. "response": {
  4390. "properties": {
  4391. "result": {
  4392. "description": "success or error",
  4393. "type": "string",
  4394. "example": "success"
  4395. },
  4396. "message": {
  4397. "description": "success or error message",
  4398. "type": "string",
  4399. "example": null
  4400. },
  4401. "data": {
  4402. "description": "data from api",
  4403. "properties": {
  4404. "status": {
  4405. "description": "success or error",
  4406. "type": "string",
  4407. "example": "ok"
  4408. },
  4409. "api_version": {
  4410. "type": "string",
  4411. "example": "2.0"
  4412. },
  4413. "organizr_version": {
  4414. "type": "string",
  4415. "example": "2.0.650"
  4416. }
  4417. },
  4418. "type": "object"
  4419. }
  4420. },
  4421. "type": "object"
  4422. }
  4423. },
  4424. "type": "object"
  4425. },
  4426. "pluginSettingsPage": {
  4427. "properties": {
  4428. "response": {
  4429. "properties": {
  4430. "result": {
  4431. "description": "success or error",
  4432. "type": "string",
  4433. "example": "success"
  4434. },
  4435. "message": {
  4436. "description": "success or error message",
  4437. "type": "string",
  4438. "example": null
  4439. },
  4440. "data": {
  4441. "description": "data from api",
  4442. "properties": {
  4443. "settingsPageObjectItem1": {
  4444. "type": "object"
  4445. },
  4446. "settingsPageObjectItem2": {
  4447. "type": "object"
  4448. },
  4449. "settingsPageObjectItem3": {
  4450. "type": "object"
  4451. }
  4452. },
  4453. "type": "object"
  4454. }
  4455. },
  4456. "type": "object"
  4457. }
  4458. },
  4459. "type": "object"
  4460. },
  4461. "successNullData": {
  4462. "properties": {
  4463. "response": {
  4464. "properties": {
  4465. "result": {
  4466. "description": "success or error",
  4467. "type": "string",
  4468. "example": "success"
  4469. },
  4470. "message": {
  4471. "description": "success message or error message",
  4472. "type": "string",
  4473. "example": null
  4474. },
  4475. "data": {
  4476. "description": "data from api",
  4477. "type": "string",
  4478. "example": null
  4479. }
  4480. },
  4481. "type": "object"
  4482. }
  4483. },
  4484. "type": "object"
  4485. },
  4486. "success-message": {
  4487. "properties": {
  4488. "response": {
  4489. "properties": {
  4490. "result": {
  4491. "description": "success or error",
  4492. "type": "string",
  4493. "example": "success"
  4494. },
  4495. "message": {
  4496. "description": "success message or error message",
  4497. "type": "string",
  4498. "example": "Successful message here"
  4499. },
  4500. "data": {
  4501. "description": "data from api",
  4502. "type": "string",
  4503. "example": null
  4504. }
  4505. },
  4506. "type": "object"
  4507. }
  4508. },
  4509. "type": "object"
  4510. },
  4511. "error-message": {
  4512. "properties": {
  4513. "response": {
  4514. "properties": {
  4515. "result": {
  4516. "description": "success or error",
  4517. "type": "string",
  4518. "example": "error"
  4519. },
  4520. "message": {
  4521. "description": "success message or error message",
  4522. "type": "string",
  4523. "example": "Error message here"
  4524. },
  4525. "data": {
  4526. "description": "data from api",
  4527. "type": "string",
  4528. "example": null
  4529. }
  4530. },
  4531. "type": "object"
  4532. }
  4533. },
  4534. "type": "object"
  4535. },
  4536. "unauthorized-message": {
  4537. "properties": {
  4538. "response": {
  4539. "properties": {
  4540. "result": {
  4541. "description": "success or error",
  4542. "type": "string",
  4543. "example": "error"
  4544. },
  4545. "message": {
  4546. "description": "success message or error message",
  4547. "type": "string",
  4548. "example": "User is not authorized"
  4549. },
  4550. "data": {
  4551. "description": "data from api",
  4552. "type": "string",
  4553. "example": null
  4554. }
  4555. },
  4556. "type": "object"
  4557. }
  4558. },
  4559. "type": "object"
  4560. },
  4561. "php-mailer-email-list": {
  4562. "properties": {
  4563. "response": {
  4564. "properties": {
  4565. "result": {
  4566. "description": "success or error",
  4567. "type": "string",
  4568. "example": "success"
  4569. },
  4570. "message": {
  4571. "description": "success or error message",
  4572. "type": "string",
  4573. "example": null
  4574. },
  4575. "data": {
  4576. "description": "data from api",
  4577. "type": "array",
  4578. "items": {
  4579. "properties": {
  4580. "causefx": {
  4581. "type": "string",
  4582. "example": "causefx@organizr.app"
  4583. }
  4584. },
  4585. "type": "object"
  4586. }
  4587. }
  4588. },
  4589. "type": "object"
  4590. }
  4591. },
  4592. "type": "object"
  4593. },
  4594. "config-items-example": {
  4595. "description": "list of config items to update",
  4596. "properties": {
  4597. "branch": {
  4598. "description": "config item name",
  4599. "type": "string",
  4600. "example": "v2-master"
  4601. },
  4602. "hideRegistration": {
  4603. "type": "boolean",
  4604. "example": false
  4605. },
  4606. "homepageUnifiAuth": {
  4607. "type": "string",
  4608. "example": "1"
  4609. }
  4610. },
  4611. "type": "object"
  4612. }
  4613. },
  4614. "securitySchemes": {
  4615. "api_key": {
  4616. "type": "apiKey",
  4617. "name": "Token",
  4618. "in": "header"
  4619. }
  4620. }
  4621. },
  4622. "tags": [
  4623. {
  4624. "name": "plugins-chat",
  4625. "description": "Pusher Chat Plugin"
  4626. },
  4627. {
  4628. "name": "plugins-healthchecks",
  4629. "description": "Healthchecks.io Ping Plugin"
  4630. },
  4631. {
  4632. "name": "plugins-invites",
  4633. "description": "Media Invite Plugin"
  4634. },
  4635. {
  4636. "name": "plugins-php-mailer",
  4637. "description": "PHP Mailer Plugin"
  4638. },
  4639. {
  4640. "name": "plugins-speedtest",
  4641. "description": "SpeedTest Plugin"
  4642. },
  4643. {
  4644. "name": "2fa",
  4645. "description": "Two Form Authentication"
  4646. },
  4647. {
  4648. "name": "categories",
  4649. "description": "Category Information"
  4650. },
  4651. {
  4652. "name": "config",
  4653. "description": "Organizr Configuration Items"
  4654. },
  4655. {
  4656. "name": "test connection",
  4657. "description": "Test Connections"
  4658. },
  4659. {
  4660. "name": "emby"
  4661. },
  4662. {
  4663. "name": "page",
  4664. "description": "HTML for Organizr Pages"
  4665. },
  4666. {
  4667. "name": "plex"
  4668. },
  4669. {
  4670. "name": "plugins"
  4671. },
  4672. {
  4673. "name": "update",
  4674. "description": "Organizr Update"
  4675. }
  4676. ]
  4677. }