diff --git a/.gitignore b/.gitignore
index 6daa6de..e371c9d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@ node_modules/
 dist/
 playground/
 .DS_Store
+_README.md
 
 # Misc
 notes.md
@@ -16,6 +17,7 @@ _depricated/
 _deprecated/
 _deprecated_*/
 generated/
+_*/
 
 ### Terraform ###
 # Local .terraform directories
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..1caa17c
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,86 @@
+# Making Contributions
+
+## Git Setup
+
+This setup is adapted from <https://github.com/asmeurer/git-workflow>.
+
+The general workflow that is recommended is to do the following:
+
+1. Clone the project
+2. Fork the repo
+3. Add the fork as a second origin
+4. After making changes, push to fork
+5. Make PR from fork
+6. Pull updates from origin (osc repo)
+
+### Example Workflow
+
+#### Cloning and Forking the Code
+
+Below is an example of how that would work, with the assumption my GitHub username is "mygithub", and the feature I am wanting to work on is adding authentication
+
+Clone the repo locally:
+
+```sh
+git clone https://github.com/ufosc/Jukebox-Server.git
+```
+
+Fork the repo:
+
+![Fork In GitHub](./docs/assets/Git-Setup-Fork.png)
+
+Locally, if you run the following command it should show the OSC repo as the origin:
+
+```sh
+git remote -v
+
+# Output:
+# origin  git@github.com:ufosc/jukebox-server.git (fetch)
+# origin  git@github.com:ufosc/jukebox-server.git (push)
+```
+
+It is recommended you use this remote `origin` to pull updates from, this makes it easier to update your local repo. However, when pushing updates to the OSC repo, it is recommended to push updates to your forked repo so you can more easily make pull requests.
+
+To accomplish this, I'll make a new remote called `mygithub` (it is recommended to use your github username):
+
+```sh
+git remote add mygithub https://github.com/mygithub/Jukebox-Server.git
+```
+
+#### Making Changes
+
+Before making changes, I'll want to create a new git branch. The convention I follow is to use feature branches (not required, it just effects the name of the branch):
+
+```sh
+git checkout -b freature/add-auth
+```
+
+After making changes to the branch, the next goal will be to create a pull request (PR) from your account to the OSC repo.
+
+First, make sure your changes are saved:
+
+```sh
+git add .
+git status
+git commit -m "add some feature"
+```
+
+Then push your branch to your account:
+
+```sh
+git push -u mygithub feature/add-auth
+```
+
+#### Making a PR
+
+When you go back into your github, it should show something like this:
+
+![GitHub Contribute Button](./docs/assets/Git-Setup-PR.png)
+
+Clicking on "Compare & pull request" will bring you to a window where you can title the PR and describe the changes you've made. After filling that out, submit the PR.
+
+Once the PR is accepted, make sure to update your local branch with the main repo:
+
+```sh
+git pull origin main
+```
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..a23694d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and`show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
\ No newline at end of file
diff --git a/README.md b/README.md
index d2c7801..e06e96e 100644
--- a/README.md
+++ b/README.md
@@ -3,116 +3,175 @@
 [![Unit Testing](https://github.com/ufosc/Jukebox-Server/actions/workflows/test-api.yml/badge.svg)](https://github.com/ufosc/Jukebox-Server/actions/workflows/test-api.yml)
 [![Code Linting](https://github.com/ufosc/Jukebox-Server/actions/workflows/code-linting.yml/badge.svg)](https://github.com/ufosc/Jukebox-Server/actions/workflows/code-linting.yml)
 
-Welcome to the Jukebox Server! To get the server running, you only need Node.js installed on your computer. If you want to contribute to the DevOps portion, you will also need docker and docker-compose installed.
+Welcome! The Jukebox Server is a `NestJS` application server that connects with Spotify’s API, allowing users to manage, play, and queue up music like a retro jukebox found in old bars and diners. Required software includes Docker, Docker Compose, and Git. Additionally, Node.js and NPM are recommended for a better dev experience.
+
+This repo is part of a burgeoning project of microservices whose aim is to facilitate club and group collaboration and engagement in our increasingly isolated world. Here are the current list of microservices:
+
+- [Jukebox Server](https://github.com/ufosc/Jukebox-Server) _← you are here_
+- [Jukebox Frontend](https://github.com/ufosc/Jukebox-Frontend)
+- [Club Manager](https://github.com/ufosc/Club-Manager)
 
 ## Table of Contents
 
-- [Table of Contents](#table-of-contents)
-- [Description](#description)
-- [Project Install One-Liner](#project-install-one-liner)
-- [Getting started](#getting-started)
-- [Technology Stack (with documentation link)](#technology-stack-with-documentation-link)
-- [Workflow](#workflow)
-- [Testing](#testing)
+- [Setup](#setup)
+  - [Other Commands](#other-commands)
+  - [VSCode Setup](#vscode-setup)
+  - [Git Workflow](#git-workflow)
+  - [Setting up Spotify](#setting-up-spotify)
+- [Project Structure](#project-structure)
+  - [Server Tech Stack](#server-tech-stack)
+  - [Production Stack](#production-stack)
+  - [Environments and "Modes"](#environments-and-modes)
+  - [Ports](#ports)
+  - [URLs](#urls)
+  - [Primary Objects](#primary-objects)
+- [Resources](#resources)
 
-## Description
+## Setup
 
-The Jukebox Server is a Node.js-based server that connects with Spotify's API, allowing users to manage and potentially play music and function like a Jukebox. Required software includes Docker, Docker Compose, and Git.
-This project has two Github pages this is designated for the Backend Development. If you are interested in the Frontend Development please link here. <https://github.com/ufosc/Jukebox-Frontend>
+Before you begin, make sure you have docker compose installed. You can install it here: <https://docs.docker.com/compose/install/>
 
-## Project Install One-Liner
+_You can do the following commands in terminal/Git Bash_
 
-Copy and paste the following command into your terminal to clone the repository and get the server up and running.
+Clone the project:
 
-This assumes you have **Docker**, **Docker Compose**, and **Git** installed.
+```sh
+git clone https://github.com/ufosc/Jukebox-Server.git
+```
+
+Build it with docker-compose:
 
 ```sh
-git clone git@github.com:ufosc/Jukebox-Server.git && cd Jukebox-Server && cp sample.env .env && docker-compose up --build
+docker-compose build
 ```
 
-## Getting started
+Run the project:
 
-Follow these steps to download the project locally and get it running with nodemon.
+```sh
+docker-compose up
+```
+
+### Other Commands
 
-1. Clone the repository:
+It may be helpful to run some of these other commands below at various points.
+
+Run unit tests:
 
 ```sh
-git clone https://github.com/ufosc/Jukebox-Server.git
-cd Jukebox-Server
+docker-compose run --rm server sh -c "npm run test"
 ```
 
-2. Set up the environment:
+Stop docker containers:
 
 ```sh
-cp sample.env .env
+docker-compose down
 ```
 
-3. Build and run the Docker containers:
+Clear containers and empty the database:
 
 ```sh
-docker-compose build
-docker-compose up
+docker-compose down --remove-orphans -v
 ```
 
-We use Docker Compose to manage the server and its dependencies, including databases and other containers. While you can run the server using `npm run dev`, Docker Compose provides more reliability.
+### VSCode Setup
 
-Once the server is running, visit <https://localhost:8000/login> to authenticate with Spotify.
+While you don't need Node.js locally to run the project, you'll need it for code completion in vscode (or webstorm, etc). To fully set up VSCode so there's no warnings, do the following (if applicable):
 
-## Technology Stack (with documentation link)
+- Install Node.js: <https://nodejs.org/en/learn/getting-started/how-to-install-nodejs>
+- Run `npm install` in your terminal/Git Bash
+- When a popup shows to install recommended extensions, you can either click "install" or pick and choose which to install.
 
-| Use                    | Tech                                                                                    |
-| ---------------------- | --------------------------------------------------------------------------------------- |
-| Language               | [TypeScript](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html) |
-| Backend Runtime        | [Node.js](https://nodejs.dev/en/learn/)                                                 |
-| Backend Framework      | [Express.js](https://expressjs.com/en/4x/api.html#express)                              |
-| SQL Database           | [Postgres](https://node-postgres.com/)                                                  |
-| Unit Tests             | [Jest](https://jestjs.io/docs/getting-started)                                          |
-| Auto Documentation     | [Swagger](https://swagger.io/docs/specification/about/)                                 |
-| Infrastructure as Code | [Terraform](https://developer.hashicorp.com/terraform/docs)                             |
-| Hosting                | [AWS](https://docs.aws.amazon.com/)                                                     |
-| Containerization       | [Docker](https://docs.docker.com/get-started/)                                          |
+### Git Workflow
 
-## Workflow
+This setup is adapted from <https://github.com/asmeurer/git-workflow>.
 
-1. Start by reviewing the [issues list](https://github.com/ufosc/Jukebox-Server/issues) and pick a task or propose a new feature.
+The general workflow that is recommended is to do the following:
 
-2. Clone the main branch onto your local system:
+1. Clone the project
+2. Fork the repo
+3. Add the fork as a second origin
+4. After making changes, push to fork
+5. Make PR from fork
+6. Pull updates from origin (osc repo)
 
-```sh
-git clone git@github.com:ufosc/Jukebox-Server.git && cd Jukebox-Server && cp sample.env .env && docker-compose up --build
-```
+For a more detailed explanation, look at the [CONTRIBUTING.md](./CONTRIBUTING.md) file.
 
-3. Create a feature branch:
+### Setting up Spotify
 
-```sh
-git checkout -b feature/[insert name here]
-```
+If you plan on working directly with the spotify integration, you will need to setup your own connection to the spotify api.
 
-_Ensure your branch focuses on a specific, fully working feature e.g. documentation, implementing new authentication logic. [Read more about feature branch workflow here](https://craftquest.io/guides/git/git-workflows/feature-branch-workflow)._
+Steps:
 
-Before submitting a pull request, write at least three unit tests. If possible, follow the Test-Driven Development (TDD) paradigm, which involves writing tests before coding the feature itself. [Learn more about TDD here](https://www.browserstack.com/guide/what-is-test-driven-development).
+1. Create Spotify App
+2. Login with Spotify using <http://localhost:8000/api/v1/spotify/login/>
 
-4. Push your feature branch and submit a pull request (PR). Your PR will be reviewed and tested by a maintainer before merging.
+A more detailed explanation is provided here: [docs/Spotify.md](./docs/Spotify.md)
 
-## Testing
+## Project Structure
 
-We use Jest for unit testing. **At least 3 unit tests** must accompany any new feature.
+### Server Tech Stack
 
-Example of Jest Formatting:
+| Tech       | Purpose                                                                          |
+| ---------- | -------------------------------------------------------------------------------- |
+| Docker     | Runs the server on a virtual OS, ensures consistency between environments        |
+| Node.js    | JS is the primary language for this project, Node.js is a JS runtime             |
+| NestJS     | Application Server framework to handle http, websockets, and database management |
+| PostgreSQL | The database used to store data for the application                              |
+| TypeORM    | Database object relational mapper (ORM), makes working with Postgres easier      |
 
-```
-const converter = require('../app/converter');
+### Production Stack
 
-// Example test
-test('Jukebox Unit Test', () => {
-  expect(converter.convertPlaylist('playlist-id')).toBe('expected-output');
-});
-```
+| Tech      | Purpose                                                        |
+| --------- | -------------------------------------------------------------- |
+| NGINX     | Web server, reverse proxy, and api gateway                     |
+| Terraform | Manages infrastructure as code (IaC)                           |
+| K8s       | Schedules and runs the server's Docker containers in a cluster |
 
-To run the tests, use the following command. This will execute Jest, which will look for test files inside the `/test` directory:
+### Environments and "Modes"
 
-```sh
-docker-compose run --rm api sh -c "npm test"
-```
+You can run the project in multiple different environments, which are referred to as "modes".
+
+| Mode       | Purpose                                                                           |
+| ---------- | --------------------------------------------------------------------------------- |
+| Dev        | Main development mode, uses mock data in leu of making requests to microservices. |
+| Network    | Like dev mode, but connects to microservices                                      |
+| Test       | Slimmer version of dev mode for unit testing                                      |
+| Production | When the project in run in a cloud environment and receiving traffic              |
+
+### Ports
+
+You can visit each of the ports via `localhost` or `127.0.0.1`, ex: `http://localhost:8000`
+
+| Port | Mode    | Purpose                                       |
+| ---- | ------- | --------------------------------------------- |
+| 8000 | Dev     | Server port in dev mode                       |
+| 8080 | Network | Api Gateway, hosts jukebox api and other apis |
+| 9000 | Network | Server port in network mode                   |
+| 8888 | Network | PgAdmin dashboard                             |
+| 8081 | Network | Admin dashboard for club manager              |
+
+### URLs
+
+In dev mode you would visit these via <http://localhost:8000>, in network mode you would visit them via <http://localhost:8080>
+
+| URL              | Purpose                                                              |
+| ---------------- | -------------------------------------------------------------------- |
+| /api/docs/       | API documentation for most recent version, auto generated by Swagger |
+| /api/v1/jukebox/ | Manage club jukeboxes                                                |
+| /api/v1/spotify/ | Manage a user's connection to spotify                                |
+
+### Primary Objects
+
+| Object         | Description                                                                                               |
+| -------------- | --------------------------------------------------------------------------------------------------------- |
+| Jukebox        | Acts as a proxy for a club to the Jukebox server, stores all information related to tracks, spotify, etc. |
+| SpotifyAccount | Stores information related to a user's spotify connection, like access token, refresh token, etc.         |
+| JukeboxLink    | Connects a SpotifyAccount to a Jukebox in a many-to-many fashion                                          |
+| Track          | Data about a song, etc, from Spotify                                                                      |
+
+## Resources
 
-When writing new tests, write them inside this `/test` directory.
+- Working with Spotify: [docs/Spotify.md](./docs/Spotify.md)
+- Running project in Network Mode: [docs/Network-Mode.md](./docs/Network-Mode.md)
+- Project conventions: [docs/Conventions.md](./docs/Conventions.md)
+- General folder structure: [docs/Project-Structure.md](./docs/Project-Structure.md)
diff --git a/docker-compose.network.yml b/docker-compose.network.yml
index 80907a5..7b2386d 100644
--- a/docker-compose.network.yml
+++ b/docker-compose.network.yml
@@ -10,9 +10,6 @@ services:
       - NODE_ENV=network
       - PORT=9000
       - HOST=localhost
-      - JWT_SECRET_KEY=changeme
-      - TOKEN_HEADER_KEY=Authorization
-      - MONGO_URI=mongodb://root:changeme@mongo-network-jbx:27017
       - LOG_LEVEL=debug
       - KAFKA_BROKERS=kafka-jbx:9092
       - BASE_URL=http://localhost:8080
@@ -24,12 +21,15 @@ services:
       - DB_USER=devuser
       - DB_PASS=devpass
       - DB_NAME=devdatabase
+      - REDIS_HOST=jbx-network-redis
+      - REDIS_PORT=6379
     ports:
       - 9000:9000
     depends_on:
       - postgres
       - pgadmin
       - kafka
+      - redis
     volumes:
       - ./src:/app/src
       - ./package.json:/app/package.json
@@ -71,6 +71,14 @@ services:
     networks:
       - cluster
       
+  redis:
+    image: redis:alpine
+    container_name: jbx-network-redis
+    ports:
+      - 6379:6379
+    networks:
+      - cluster
+      
   pgadmin:
     image: dpage/pgadmin4
     container_name: jbx-netork-pgadmin
@@ -92,50 +100,50 @@ services:
   ####################################
   # Kafka Config
   ####################################
-  zookeeper:
-    image: confluentinc/cp-zookeeper:latest
-    container_name: zookeeper-jbx
-    environment:
-      ZOOKEEPER_CLIENT_PORT: 2181
-      ZOOKEEPER_TICK_TIME: 2000
-    ports:
-      - 2181:2181
-    networks:
-      - cluster
-    attach: false
+  # zookeeper:
+  #   image: confluentinc/cp-zookeeper:latest
+  #   container_name: zookeeper-jbx
+  #   environment:
+  #     ZOOKEEPER_CLIENT_PORT: 2181
+  #     ZOOKEEPER_TICK_TIME: 2000
+  #   ports:
+  #     - 2181:2181
+  #   networks:
+  #     - cluster
+  #   attach: false
 
-  kafka:
-    image: confluentinc/cp-kafka:latest
-    container_name: kafka-jbx
-    depends_on:
-      - zookeeper
-    ports:
-      - 9092:9092
-      - 29092:29092
-    environment:
-      KAFKA_BROKER_ID: 1
-      KAFKA_ZOOKEEPER_CONNECT: zookeeper-jbx:2181
-      KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-jbx:9092,PLAINTEXT_HOST://localhost:29092
-      # KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:9092
-      KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
-      KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
-      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
-      KAFKA_AUTO_CREATE_TOPICS_ENABLE: true
-    networks:
-      - cluster
-    attach: false
+  # kafka:
+  #   image: confluentinc/cp-kafka:latest
+  #   container_name: kafka-jbx
+  #   depends_on:
+  #     - zookeeper
+  #   ports:
+  #     - 9092:9092
+  #     - 29092:29092
+  #   environment:
+  #     KAFKA_BROKER_ID: 1
+  #     KAFKA_ZOOKEEPER_CONNECT: zookeeper-jbx:2181
+  #     KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-jbx:9092,PLAINTEXT_HOST://localhost:29092
+  #     # KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:9092
+  #     KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
+  #     KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
+  #     KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
+  #     KAFKA_AUTO_CREATE_TOPICS_ENABLE: true
+  #   networks:
+  #     - cluster
+  #   attach: false
 
-  kafka-api:
-    image: 'docker-spring-boot-postgres:latest'
-    build:
-      context: ./kafka-api
-    container_name: kafka-api-jbx
-    ports:
-      - 9090:8080
-    environment:
-      - SPRING_PROFILES_ACTIVE=dev
-    depends_on:
-      - kafka
+  # kafka-api:
+  #   image: 'docker-spring-boot-postgres:latest'
+  #   build:
+  #     context: ./kafka-api
+  #   container_name: kafka-api-jbx
+  #   ports:
+  #     - 9090:8080
+  #   environment:
+  #     - SPRING_PROFILES_ACTIVE=dev
+  #   depends_on:
+  #     - kafka
 
 volumes:
   client-dist:
diff --git a/docker-compose.yml b/docker-compose.yml
index 7cefb0f..af59a07 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -9,22 +9,16 @@ services:
       - NODE_ENV=dev
       - PORT=8000
       - HOST=localhost
-      - JWT_SECRET_KEY=changeme
-      - TOKEN_HEADER_KEY=Authorization
-      - MONGO_HOST=mongo
-      - MONGO_PORT=27017
-      - MONGO_DB=db
-      - MONGO_USER=root
-      - MONGO_PASSWORD=changeme
-      - MONGO_URI=mongodb://root:changeme@mongo-jbx:27017
+      - LOG_LEVEL=debug
       - SPOTIFY_CLIENT_ID=${SPOTIFY_CLIENT_ID}
       - SPOTIFY_CLIENT_SECRET=${SPOTIFY_CLIENT_SECRET}
-      - LOG_LEVEL=debug
       - DB_HOST=jbx-dev-db
       - DB_PORT=5432
       - DB_USER=devuser
       - DB_PASS=devpass
       - DB_NAME=devdatabase
+      - REDIS_HOST=jbx-redis
+      - REDIS_PORT=6379
     ports:
       - 8000:8000
     depends_on:
@@ -43,6 +37,12 @@ services:
       - POSTGRES_DB=devdatabase
       - POSTGRES_USER=devuser
       - POSTGRES_PASSWORD=devpass
+      
+  redis:
+    image: redis:alpine
+    container_name: jbx-redis
+    ports:
+      - 6379:6379
 
 volumes:
   jukebox-pg-data:
diff --git a/docs/Architecture.md b/docs/Architecture.md
new file mode 100644
index 0000000..b91c0ab
--- /dev/null
+++ b/docs/Architecture.md
@@ -0,0 +1,3 @@
+## Server Structure
+
+<img width="500" alt="Server Structure" src="https://github.com/user-attachments/assets/93dee903-e537-4599-aabf-4bc44f13b85b">
diff --git a/docs/Project-Structure.md b/docs/Project-Structure.md
index 905b220..5919f6a 100644
--- a/docs/Project-Structure.md
+++ b/docs/Project-Structure.md
@@ -16,9 +16,5 @@ jukebox-server/
     |   |   |-- [model].dto.ts      <-- Api input/output object structures
     |   |-- schemas/
     |   |   |-- [model].schema.ts   <-- Mongoose schemas
-    |-- spotify/
-    |   |-- *
-    |-- track-queue/
-    |   |-- *
 
 ```
diff --git a/docs/Spotify.md b/docs/Spotify.md
new file mode 100644
index 0000000..ee3bfa1
--- /dev/null
+++ b/docs/Spotify.md
@@ -0,0 +1,80 @@
+# Working With Spotify in Jukebox
+
+- [Setting up Spotify](#setting-up-spotify)
+  - [1. Create spotify app](#1-create-spotify-app)
+    - [Creating the App](#creating-the-app)
+    - [Adding Authorized Users](#adding-authorized-users)
+    - [Connecting to the Development Environment](#connecting-to-the-development-environment)
+  - [2. Getting The Spotify Auth Code](#2-getting-the-spotify-auth-code)
+- [Resources](#resources)
+  - [General Links](#general-links)
+  - [Web Playback SDK](#web-playback-sdk)
+  - [Web API](#web-api)
+
+## Setting up Spotify
+
+The server gets its services from Spotify, as such using its developer account allows the server access to Spotify's artists, playlists, and algorithms
+
+### 1. Create spotify app
+
+A Spotify app is essentially a spotify developer account where you can access their api and other developer services. After you get access to the dashboard you can create additional apps in the future for other personal projects.
+
+#### Creating the App
+
+To create an app refer to their guide: [Developer.Spotify.com](https://developer.spotify.com/documentation/general/guides/authorization/app-settings/). During setup, here are the recommended settings:
+
+- The **Name** can be anything, I chose OSC Jukebox
+- For **Website**, you can enter any value. This value is only used when pushed to production, spotify will verify requests coming from that url. But, since the Spotify App is in development mode it shouldn't matter.
+- For **Redirect URI** enter the following urls, they are the redirect urls that spotify will send you to once you are authenticated, and how the server get's your credentials from spotify.
+  - `http://localhost:8000/api/v1/spotify/login/success/`
+  - `http://localhost:8080/api/v1/spotify/login/success/`
+- Ignore **Bundle IDs and Android Packages**
+- For **"Which API/SDKs are you planning to use?"**, you can select **Web API** and **Web Playback SDK**.
+
+#### Adding Authorized Users
+
+After this is created, go to the **User Management** tab in the dashboard and add your spotify account as a user. The email you enter must be the same email attached to your spotify account. If your account is not properly connecting to spotify, this may be why.
+
+#### Connecting to the Development Environment
+
+Back in the project, copy the `sample.env` file to a new `.env` file:
+
+```sh
+cp sample.env .env
+```
+
+Copy **Client ID** and **Client Secret** from the Spotify App dashboard, and place as values for the `SPOTIFY_CLIENT_ID` and `SPOTIFY_CLIENT_SECRET` variables respectively. Example:
+
+```txt
+SPOTIFY_CLIENT_ID="abc123"
+SPOTIFY_CLIENT_SECRET="supersecret"
+```
+
+### 2. Getting The Spotify Auth Code
+
+> Spotify Authentication URL: <http://localhost:8000/api/v1/spotify/login/>
+
+Once you have the Spotify App and the project set up, the last step is to authenticate Spotify with the Jukebox server. To do so, visit <http://localhost:8000/api/v1/spotify/login/>. This will redirect you to the <http://localhost:8000/api/v1/spotify/login/success/> route which will display your account details in JSON format to verify the connection was successful.
+
+_Note: if you are in `network` mode, replace localhost:8000 with localhost:8080._
+
+In the project, `/api/v1/spotify/login/` has implemented Spotify's access token authorization code they provide on GitHub, you can look over it [here](https://github.com/spotify/web-api-examples/blob/master/authentication/authorization_code/app.js). The access token spotify returns back is stored in the database as a `SpotifyAccount`. This account can then be attached to a Jukebox via a `JukeboxLink`.
+
+## Resources
+
+### General Links
+
+- Dashboard: <https://developer.spotify.com/dashboard>
+- How spotify authorization works: <https://developer.spotify.com/documentation/web-api/tutorials/code-flow>
+
+### Web Playback SDK
+
+The web playback sdk allows users to select the frontend web app to play music through as a sort of speaker.
+
+- Docs: <https://developer.spotify.com/documentation/web-playback-sdk>
+
+### Web API
+
+The web api allows more granular control over spotify functionality via a server application.
+
+- Docs: <https://developer.spotify.com/documentation/web-api>
diff --git a/docs/Track-Queue.md b/docs/Track-Queue.md
new file mode 100644
index 0000000..8a60150
--- /dev/null
+++ b/docs/Track-Queue.md
@@ -0,0 +1,12 @@
+# How the Track Queue Works
+
+When the current track is over...
+
+1. If the queue is empty, do nothing. Spotify will play next song in their queue.
+2. If the queue is not empty, pop the next track from queue, set to current track.
+
+## FAQ
+
+**Q: How do we know when the track is over?**
+
+A: We can only know if one of the admins is playing spotify through the web player, if that is the case the frontend will update the backend via a websocket
diff --git a/docs/assets/Git-Setup-Fork.png b/docs/assets/Git-Setup-Fork.png
new file mode 100644
index 0000000..e75fed1
Binary files /dev/null and b/docs/assets/Git-Setup-Fork.png differ
diff --git a/docs/assets/Git-Setup-PR.png b/docs/assets/Git-Setup-PR.png
new file mode 100644
index 0000000..8258b76
Binary files /dev/null and b/docs/assets/Git-Setup-PR.png differ
diff --git a/kafka-api/.dockerignore b/kafka-api/.dockerignore
deleted file mode 100644
index c4c33f4..0000000
--- a/kafka-api/.dockerignore
+++ /dev/null
@@ -1 +0,0 @@
-!target/
\ No newline at end of file
diff --git a/kafka-api/.gitignore b/kafka-api/.gitignore
deleted file mode 100644
index 549e00a..0000000
--- a/kafka-api/.gitignore
+++ /dev/null
@@ -1,33 +0,0 @@
-HELP.md
-target/
-!.mvn/wrapper/maven-wrapper.jar
-!**/src/main/**/target/
-!**/src/test/**/target/
-
-### STS ###
-.apt_generated
-.classpath
-.factorypath
-.project
-.settings
-.springBeans
-.sts4-cache
-
-### IntelliJ IDEA ###
-.idea
-*.iws
-*.iml
-*.ipr
-
-### NetBeans ###
-/nbproject/private/
-/nbbuild/
-/dist/
-/nbdist/
-/.nb-gradle/
-build/
-!**/src/main/**/build/
-!**/src/test/**/build/
-
-### VS Code ###
-.vscode/
diff --git a/kafka-api/.mvn/wrapper/maven-wrapper.properties b/kafka-api/.mvn/wrapper/maven-wrapper.properties
deleted file mode 100644
index 8f96f52..0000000
--- a/kafka-api/.mvn/wrapper/maven-wrapper.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-wrapperVersion=3.3.2
-distributionType=only-script
-distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip
diff --git a/kafka-api/Dockerfile b/kafka-api/Dockerfile
deleted file mode 100644
index ebec979..0000000
--- a/kafka-api/Dockerfile
+++ /dev/null
@@ -1,17 +0,0 @@
-# the base image
-FROM amazoncorretto:22-alpine-jdk
-
-COPY ./mvnw /app/mvnw
-COPY ./mvnw.cmd /app/mvnw.cmd
-COPY ./.mvn /app/.mvn
-COPY ./pom.xml /app/pom.xml
-COPY ./src /app/src
-
-WORKDIR /app
-
-RUN chmod +x ./mvnw && ./mvnw package
-
-RUN mv target/*.jar ./application.jar
-
-
-ENTRYPOINT ["java", "-Xmx2048M", "-jar", "/app/application.jar"]
\ No newline at end of file
diff --git a/kafka-api/compose.yaml b/kafka-api/compose.yaml
deleted file mode 100644
index 1c89c94..0000000
--- a/kafka-api/compose.yaml
+++ /dev/null
@@ -1,24 +0,0 @@
-services:
-  kafka-api:
-    image: 'docker-spring-boot-postgres:latest'
-    build:
-      context: .
-    container_name: kafka-api
-#    volumes:
-#      - ./target:/target
-    environment:
-      - SPRING_PROFILES_ACTIVE=dev
-#      - SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/$YOUR_DB_NAME
-#      - SPRING_DATASOURCE_USERNAME=$YOUR_USERNAME
-#      - SPRING_DATASOURCE_PASSWORD=$YOUR_PASSWORD
-#      - SPRING_JPA_HIBERNATE_DDL_AUTO=update
-
-    ports:
-      - 9090:8080
-    networks:
-      - cluster
-
-networks:
-  cluster:
-    name: cluster_network
-    external: true
\ No newline at end of file
diff --git a/kafka-api/mvnw b/kafka-api/mvnw
deleted file mode 100755
index d7c358e..0000000
--- a/kafka-api/mvnw
+++ /dev/null
@@ -1,259 +0,0 @@
-#!/bin/sh
-# ----------------------------------------------------------------------------
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#    https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-# ----------------------------------------------------------------------------
-
-# ----------------------------------------------------------------------------
-# Apache Maven Wrapper startup batch script, version 3.3.2
-#
-# Optional ENV vars
-# -----------------
-#   JAVA_HOME - location of a JDK home dir, required when download maven via java source
-#   MVNW_REPOURL - repo url base for downloading maven distribution
-#   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
-#   MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output
-# ----------------------------------------------------------------------------
-
-set -euf
-[ "${MVNW_VERBOSE-}" != debug ] || set -x
-
-# OS specific support.
-native_path() { printf %s\\n "$1"; }
-case "$(uname)" in
-CYGWIN* | MINGW*)
-  [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")"
-  native_path() { cygpath --path --windows "$1"; }
-  ;;
-esac
-
-# set JAVACMD and JAVACCMD
-set_java_home() {
-  # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched
-  if [ -n "${JAVA_HOME-}" ]; then
-    if [ -x "$JAVA_HOME/jre/sh/java" ]; then
-      # IBM's JDK on AIX uses strange locations for the executables
-      JAVACMD="$JAVA_HOME/jre/sh/java"
-      JAVACCMD="$JAVA_HOME/jre/sh/javac"
-    else
-      JAVACMD="$JAVA_HOME/bin/java"
-      JAVACCMD="$JAVA_HOME/bin/javac"
-
-      if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then
-        echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2
-        echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2
-        return 1
-      fi
-    fi
-  else
-    JAVACMD="$(
-      'set' +e
-      'unset' -f command 2>/dev/null
-      'command' -v java
-    )" || :
-    JAVACCMD="$(
-      'set' +e
-      'unset' -f command 2>/dev/null
-      'command' -v javac
-    )" || :
-
-    if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then
-      echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2
-      return 1
-    fi
-  fi
-}
-
-# hash string like Java String::hashCode
-hash_string() {
-  str="${1:-}" h=0
-  while [ -n "$str" ]; do
-    char="${str%"${str#?}"}"
-    h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296))
-    str="${str#?}"
-  done
-  printf %x\\n $h
-}
-
-verbose() { :; }
-[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; }
-
-die() {
-  printf %s\\n "$1" >&2
-  exit 1
-}
-
-trim() {
-  # MWRAPPER-139:
-  #   Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds.
-  #   Needed for removing poorly interpreted newline sequences when running in more
-  #   exotic environments such as mingw bash on Windows.
-  printf "%s" "${1}" | tr -d '[:space:]'
-}
-
-# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties
-while IFS="=" read -r key value; do
-  case "${key-}" in
-  distributionUrl) distributionUrl=$(trim "${value-}") ;;
-  distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;;
-  esac
-done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties"
-[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties"
-
-case "${distributionUrl##*/}" in
-maven-mvnd-*bin.*)
-  MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/
-  case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in
-  *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;;
-  :Darwin*x86_64) distributionPlatform=darwin-amd64 ;;
-  :Darwin*arm64) distributionPlatform=darwin-aarch64 ;;
-  :Linux*x86_64*) distributionPlatform=linux-amd64 ;;
-  *)
-    echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2
-    distributionPlatform=linux-amd64
-    ;;
-  esac
-  distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip"
-  ;;
-maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
-*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
-esac
-
-# apply MVNW_REPOURL and calculate MAVEN_HOME
-# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
-[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}"
-distributionUrlName="${distributionUrl##*/}"
-distributionUrlNameMain="${distributionUrlName%.*}"
-distributionUrlNameMain="${distributionUrlNameMain%-bin}"
-MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}"
-MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")"
-
-exec_maven() {
-  unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :
-  exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD"
-}
-
-if [ -d "$MAVEN_HOME" ]; then
-  verbose "found existing MAVEN_HOME at $MAVEN_HOME"
-  exec_maven "$@"
-fi
-
-case "${distributionUrl-}" in
-*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;
-*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;;
-esac
-
-# prepare tmp dir
-if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then
-  clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; }
-  trap clean HUP INT TERM EXIT
-else
-  die "cannot create temp dir"
-fi
-
-mkdir -p -- "${MAVEN_HOME%/*}"
-
-# Download and Install Apache Maven
-verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
-verbose "Downloading from: $distributionUrl"
-verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
-
-# select .zip or .tar.gz
-if ! command -v unzip >/dev/null; then
-  distributionUrl="${distributionUrl%.zip}.tar.gz"
-  distributionUrlName="${distributionUrl##*/}"
-fi
-
-# verbose opt
-__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR=''
-[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v
-
-# normalize http auth
-case "${MVNW_PASSWORD:+has-password}" in
-'') MVNW_USERNAME='' MVNW_PASSWORD='' ;;
-has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;
-esac
-
-if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then
-  verbose "Found wget ... using wget"
-  wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl"
-elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then
-  verbose "Found curl ... using curl"
-  curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl"
-elif set_java_home; then
-  verbose "Falling back to use Java to download"
-  javaSource="$TMP_DOWNLOAD_DIR/Downloader.java"
-  targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName"
-  cat >"$javaSource" <<-END
-	public class Downloader extends java.net.Authenticator
-	{
-	  protected java.net.PasswordAuthentication getPasswordAuthentication()
-	  {
-	    return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() );
-	  }
-	  public static void main( String[] args ) throws Exception
-	  {
-	    setDefault( new Downloader() );
-	    java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() );
-	  }
-	}
-	END
-  # For Cygwin/MinGW, switch paths to Windows format before running javac and java
-  verbose " - Compiling Downloader.java ..."
-  "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java"
-  verbose " - Running Downloader.java ..."
-  "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")"
-fi
-
-# If specified, validate the SHA-256 sum of the Maven distribution zip file
-if [ -n "${distributionSha256Sum-}" ]; then
-  distributionSha256Result=false
-  if [ "$MVN_CMD" = mvnd.sh ]; then
-    echo "Checksum validation is not supported for maven-mvnd." >&2
-    echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
-    exit 1
-  elif command -v sha256sum >/dev/null; then
-    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then
-      distributionSha256Result=true
-    fi
-  elif command -v shasum >/dev/null; then
-    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then
-      distributionSha256Result=true
-    fi
-  else
-    echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2
-    echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
-    exit 1
-  fi
-  if [ $distributionSha256Result = false ]; then
-    echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2
-    echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2
-    exit 1
-  fi
-fi
-
-# unzip and move
-if command -v unzip >/dev/null; then
-  unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip"
-else
-  tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar"
-fi
-printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url"
-mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME"
-
-clean || :
-exec_maven "$@"
diff --git a/kafka-api/mvnw.cmd b/kafka-api/mvnw.cmd
deleted file mode 100644
index 6f779cf..0000000
--- a/kafka-api/mvnw.cmd
+++ /dev/null
@@ -1,149 +0,0 @@
-<# : batch portion
-@REM ----------------------------------------------------------------------------
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements.  See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership.  The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License.  You may obtain a copy of the License at
-@REM
-@REM    https://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied.  See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-@REM ----------------------------------------------------------------------------
-
-@REM ----------------------------------------------------------------------------
-@REM Apache Maven Wrapper startup batch script, version 3.3.2
-@REM
-@REM Optional ENV vars
-@REM   MVNW_REPOURL - repo url base for downloading maven distribution
-@REM   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
-@REM   MVNW_VERBOSE - true: enable verbose log; others: silence the output
-@REM ----------------------------------------------------------------------------
-
-@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
-@SET __MVNW_CMD__=
-@SET __MVNW_ERROR__=
-@SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
-@SET PSModulePath=
-@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
-  IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B)
-)
-@SET PSModulePath=%__MVNW_PSMODULEP_SAVE%
-@SET __MVNW_PSMODULEP_SAVE=
-@SET __MVNW_ARG0_NAME__=
-@SET MVNW_USERNAME=
-@SET MVNW_PASSWORD=
-@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*)
-@echo Cannot start maven from wrapper >&2 && exit /b 1
-@GOTO :EOF
-: end batch / begin powershell #>
-
-$ErrorActionPreference = "Stop"
-if ($env:MVNW_VERBOSE -eq "true") {
-  $VerbosePreference = "Continue"
-}
-
-# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties
-$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl
-if (!$distributionUrl) {
-  Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties"
-}
-
-switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) {
-  "maven-mvnd-*" {
-    $USE_MVND = $true
-    $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip"
-    $MVN_CMD = "mvnd.cmd"
-    break
-  }
-  default {
-    $USE_MVND = $false
-    $MVN_CMD = $script -replace '^mvnw','mvn'
-    break
-  }
-}
-
-# apply MVNW_REPOURL and calculate MAVEN_HOME
-# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
-if ($env:MVNW_REPOURL) {
-  $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" }
-  $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')"
-}
-$distributionUrlName = $distributionUrl -replace '^.*/',''
-$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$',''
-$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain"
-if ($env:MAVEN_USER_HOME) {
-  $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain"
-}
-$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join ''
-$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME"
-
-if (Test-Path -Path "$MAVEN_HOME" -PathType Container) {
-  Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME"
-  Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
-  exit $?
-}
-
-if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) {
-  Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl"
-}
-
-# prepare tmp dir
-$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile
-$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir"
-$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null
-trap {
-  if ($TMP_DOWNLOAD_DIR.Exists) {
-    try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
-    catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
-  }
-}
-
-New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null
-
-# Download and Install Apache Maven
-Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
-Write-Verbose "Downloading from: $distributionUrl"
-Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
-
-$webclient = New-Object System.Net.WebClient
-if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) {
-  $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD)
-}
-[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
-$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null
-
-# If specified, validate the SHA-256 sum of the Maven distribution zip file
-$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum
-if ($distributionSha256Sum) {
-  if ($USE_MVND) {
-    Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties."
-  }
-  Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash
-  if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) {
-    Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property."
-  }
-}
-
-# unzip and move
-Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null
-Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null
-try {
-  Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null
-} catch {
-  if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) {
-    Write-Error "fail to move MAVEN_HOME"
-  }
-} finally {
-  try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
-  catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
-}
-
-Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
diff --git a/kafka-api/pom.xml b/kafka-api/pom.xml
deleted file mode 100644
index 3437cf7..0000000
--- a/kafka-api/pom.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.springframework.boot</groupId>
-        <artifactId>spring-boot-starter-parent</artifactId>
-        <version>3.3.0</version>
-        <relativePath/> <!-- lookup parent from repository -->
-    </parent>
-    <groupId>com.ikehunter</groupId>
-    <artifactId>kafka-api</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
-    <name>kafka-api</name>
-    <description>kafka-api</description>
-    <properties>
-        <java.version>22</java.version>
-    </properties>
-    <dependencies>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.kafka</groupId>
-            <artifactId>spring-kafka</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-devtools</artifactId>
-            <scope>runtime</scope>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-docker-compose</artifactId>
-            <scope>runtime</scope>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-test</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.kafka</groupId>
-            <artifactId>spring-kafka-test</artifactId>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>
\ No newline at end of file
diff --git a/kafka-api/src/main/java/com/ikehunter/kafkaapi/KafkaApiApplication.java b/kafka-api/src/main/java/com/ikehunter/kafkaapi/KafkaApiApplication.java
deleted file mode 100644
index b2ee0c4..0000000
--- a/kafka-api/src/main/java/com/ikehunter/kafkaapi/KafkaApiApplication.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.ikehunter.kafkaapi;
-
-import com.ikehunter.kafkaapi.kafka.Message;
-import com.ikehunter.kafkaapi.producer.MessageProducer;
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.web.bind.annotation.*;
-
-
-@SpringBootApplication
-@RestController
-public class KafkaApiApplication {
-
-    private final MessageProducer messageProducer;
-
-    public static void main(String[] args) {
-        SpringApplication.run(KafkaApiApplication.class, args);
-    }
-
-    public KafkaApiApplication(MessageProducer messageProducer) {
-        this.messageProducer = messageProducer;
-    }
-
-    @RequestMapping("/")
-    public String home() {
-        return "Kafka API is running.";
-    }
-
-    @PostMapping(value="/send", consumes = "application/json")
-    public String sendMessage(@RequestBody Message body) {
-        messageProducer.sendMessage(body.topic, body.getMessageJson());
-        return "Message \"" + body.message + "\" sent to topic \"" + body.topic + "\".";
-    }
-
-}
\ No newline at end of file
diff --git a/kafka-api/src/main/java/com/ikehunter/kafkaapi/kafka/Message.java b/kafka-api/src/main/java/com/ikehunter/kafkaapi/kafka/Message.java
deleted file mode 100644
index f430f02..0000000
--- a/kafka-api/src/main/java/com/ikehunter/kafkaapi/kafka/Message.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.ikehunter.kafkaapi.kafka;
-
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
-import com.fasterxml.jackson.core.JsonProcessingException;
-import com.fasterxml.jackson.databind.ObjectMapper;
-
-@JsonIgnoreProperties(ignoreUnknown = true)
-public class Message {
-    public String topic;
-    public Object message;
-
-    public String getMessageJson() {
-        try {
-
-            ObjectMapper mapper = new ObjectMapper();
-            return mapper.writeValueAsString(message);
-        } catch (JsonProcessingException e) {
-            return "";
-        }
-    }
-}
\ No newline at end of file
diff --git a/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/KafkaProducerConfig.java b/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/KafkaProducerConfig.java
deleted file mode 100644
index ea0b7d7..0000000
--- a/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/KafkaProducerConfig.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.ikehunter.kafkaapi.producer;
-
-import org.apache.kafka.clients.producer.ProducerConfig;
-import org.apache.kafka.common.serialization.StringSerializer;
-import org.springframework.context.annotation.Bean;
-import org.springframework.kafka.core.DefaultKafkaProducerFactory;
-import org.springframework.kafka.core.KafkaTemplate;
-import org.springframework.kafka.core.ProducerFactory;
-
-import java.util.HashMap;
-import java.util.Map;
-
-public class KafkaProducerConfig {
-    @Bean
-    public ProducerFactory<String, String> producerFactory() {
-        Map<String, Object> configProps = new HashMap<>();
-        configProps.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "kafka:9092");
-        configProps.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
-        configProps.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
-        return new DefaultKafkaProducerFactory<>(configProps);
-    }
-    @Bean
-    public KafkaTemplate<String, String> kafkaTemplate() {
-        return new KafkaTemplate<>(producerFactory());
-    }
-}
\ No newline at end of file
diff --git a/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/MessageProducer.java b/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/MessageProducer.java
deleted file mode 100644
index 285c099..0000000
--- a/kafka-api/src/main/java/com/ikehunter/kafkaapi/producer/MessageProducer.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.ikehunter.kafkaapi.producer;
-import org.springframework.kafka.core.KafkaTemplate;
-import org.springframework.stereotype.Component;
-import org.springframework.beans.factory.annotation.Autowired;
-
-@Component
-public class MessageProducer {
-    private final KafkaTemplate<String, String> kafkaTemplate;
-
-    @Autowired
-    public MessageProducer(KafkaTemplate<String, String> kafkaTemplate) {
-        this.kafkaTemplate = kafkaTemplate;
-    }
-
-
-    public void sendMessage(String topic, String message) {
-        kafkaTemplate.send(topic, message);
-    }
-}
\ No newline at end of file
diff --git a/kafka-api/src/main/resources/application.properties b/kafka-api/src/main/resources/application.properties
deleted file mode 100644
index c401b31..0000000
--- a/kafka-api/src/main/resources/application.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-spring.application.name=kafka-api
-spring.kafka.bootstrap-servers=kafka:9092
-spring.kafka.consumer.group-id=kafka-api
\ No newline at end of file
diff --git a/kafka-api/src/test/java/com/ikehunter/kafkaapi/KafkaApiApplicationTests.java b/kafka-api/src/test/java/com/ikehunter/kafkaapi/KafkaApiApplicationTests.java
deleted file mode 100644
index 72f66bc..0000000
--- a/kafka-api/src/test/java/com/ikehunter/kafkaapi/KafkaApiApplicationTests.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.ikehunter.kafkaapi;
-
-import org.junit.jupiter.api.Test;
-import org.springframework.boot.test.context.SpringBootTest;
-
-@SpringBootTest
-class KafkaApiApplicationTests {
-
-    @Test
-    void contextLoads() {
-    }
-
-}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 28794c1..310df46 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -10,6 +10,7 @@
       "license": "UNLICENSED",
       "dependencies": {
         "@nestjs/axios": "^3.0.3",
+        "@nestjs/cache-manager": "^2.3.0",
         "@nestjs/common": "^10.0.0",
         "@nestjs/config": "^3.2.3",
         "@nestjs/core": "^10.0.0",
@@ -22,6 +23,8 @@
         "@redocly/cli": "^1.25.5",
         "@spotify/web-api-ts-sdk": "^1.2.0",
         "axios": "^1.7.7",
+        "cache-manager": "^5.7.6",
+        "cache-manager-redis-store": "^3.0.1",
         "class-transformer": "^0.5.1",
         "class-validator": "^0.14.1",
         "mongoose": "^8.7.0",
@@ -30,6 +33,7 @@
         "pg": "^8.13.0",
         "reflect-metadata": "^0.2.0",
         "rxjs": "^7.8.1",
+        "socket.io": "^4.8.1",
         "swagger-ui-express": "^5.0.1",
         "typeorm": "^0.3.20",
         "yaml": "^2.5.1"
@@ -1765,6 +1769,18 @@
         "rxjs": "^6.0.0 || ^7.0.0"
       }
     },
+    "node_modules/@nestjs/cache-manager": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/@nestjs/cache-manager/-/cache-manager-2.3.0.tgz",
+      "integrity": "sha512-pxeBp9w/s99HaW2+pezM1P3fLiWmUEnTUoUMLa9UYViCtjj0E0A19W/vaT5JFACCzFIeNrwH4/16jkpAhQ25Vw==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@nestjs/common": "^9.0.0 || ^10.0.0",
+        "@nestjs/core": "^9.0.0 || ^10.0.0",
+        "cache-manager": "<=5",
+        "rxjs": "^7.0.0"
+      }
+    },
     "node_modules/@nestjs/cli": {
       "version": "10.4.5",
       "resolved": "https://registry.npmjs.org/@nestjs/cli/-/cli-10.4.5.tgz",
@@ -2050,6 +2066,54 @@
         "rxjs": "^7.1.0"
       }
     },
+    "node_modules/@nestjs/platform-socket.io/node_modules/cookie": {
+      "version": "0.4.2",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz",
+      "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/@nestjs/platform-socket.io/node_modules/engine.io": {
+      "version": "6.5.5",
+      "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz",
+      "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==",
+      "license": "MIT",
+      "dependencies": {
+        "@types/cookie": "^0.4.1",
+        "@types/cors": "^2.8.12",
+        "@types/node": ">=10.0.0",
+        "accepts": "~1.3.4",
+        "base64id": "2.0.0",
+        "cookie": "~0.4.1",
+        "cors": "~2.8.5",
+        "debug": "~4.3.1",
+        "engine.io-parser": "~5.2.1",
+        "ws": "~8.17.1"
+      },
+      "engines": {
+        "node": ">=10.2.0"
+      }
+    },
+    "node_modules/@nestjs/platform-socket.io/node_modules/socket.io": {
+      "version": "4.7.5",
+      "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz",
+      "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==",
+      "license": "MIT",
+      "dependencies": {
+        "accepts": "~1.3.4",
+        "base64id": "~2.0.0",
+        "cors": "~2.8.5",
+        "debug": "~4.3.2",
+        "engine.io": "~6.5.2",
+        "socket.io-adapter": "~2.5.2",
+        "socket.io-parser": "~4.2.4"
+      },
+      "engines": {
+        "node": ">=10.2.0"
+      }
+    },
     "node_modules/@nestjs/schematics": {
       "version": "10.1.4",
       "resolved": "https://registry.npmjs.org/@nestjs/schematics/-/schematics-10.1.4.tgz",
@@ -2253,6 +2317,71 @@
         "url": "https://opencollective.com/unts"
       }
     },
+    "node_modules/@redis/bloom": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz",
+      "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@redis/client": "^1.0.0"
+      }
+    },
+    "node_modules/@redis/client": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.6.0.tgz",
+      "integrity": "sha512-aR0uffYI700OEEH4gYnitAnv3vzVGXCFvYfdpu/CJKvk4pHfLPEy/JSZyrpQ+15WhXe1yJRXLtfQ84s4mEXnPg==",
+      "license": "MIT",
+      "dependencies": {
+        "cluster-key-slot": "1.1.2",
+        "generic-pool": "3.9.0",
+        "yallist": "4.0.0"
+      },
+      "engines": {
+        "node": ">=14"
+      }
+    },
+    "node_modules/@redis/client/node_modules/yallist": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+      "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+      "license": "ISC"
+    },
+    "node_modules/@redis/graph": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz",
+      "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@redis/client": "^1.0.0"
+      }
+    },
+    "node_modules/@redis/json": {
+      "version": "1.0.7",
+      "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.7.tgz",
+      "integrity": "sha512-6UyXfjVaTBTJtKNG4/9Z8PSpKE6XgSyEb8iwaqDcy+uKrd/DGYHTWkUdnQDyzm727V7p21WUMhsqz5oy65kPcQ==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@redis/client": "^1.0.0"
+      }
+    },
+    "node_modules/@redis/search": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.2.0.tgz",
+      "integrity": "sha512-tYoDBbtqOVigEDMAcTGsRlMycIIjwMCgD8eR2t0NANeQmgK/lvxNAvYyb6bZDD4frHRhIHkJu2TBRvB0ERkOmw==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@redis/client": "^1.0.0"
+      }
+    },
+    "node_modules/@redis/time-series": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.1.0.tgz",
+      "integrity": "sha512-c1Q99M5ljsIuc4YdaCwfUEXsofakb9c8+Zse2qxTadu8TalLXuAESzLvFAvNVbkmSlvlzIQOLpBCmWI9wTOt+g==",
+      "license": "MIT",
+      "peerDependencies": {
+        "@redis/client": "^1.0.0"
+      }
+    },
     "node_modules/@redocly/ajv": {
       "version": "8.11.2",
       "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz",
@@ -3994,6 +4123,39 @@
         "node": ">= 0.8"
       }
     },
+    "node_modules/cache-manager": {
+      "version": "5.7.6",
+      "resolved": "https://registry.npmjs.org/cache-manager/-/cache-manager-5.7.6.tgz",
+      "integrity": "sha512-wBxnBHjDxF1RXpHCBD6HGvKER003Ts7IIm0CHpggliHzN1RZditb7rXoduE1rplc2DEFYKxhLKgFuchXMJje9w==",
+      "license": "MIT",
+      "dependencies": {
+        "eventemitter3": "^5.0.1",
+        "lodash.clonedeep": "^4.5.0",
+        "lru-cache": "^10.2.2",
+        "promise-coalesce": "^1.1.2"
+      },
+      "engines": {
+        "node": ">= 18"
+      }
+    },
+    "node_modules/cache-manager-redis-store": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/cache-manager-redis-store/-/cache-manager-redis-store-3.0.1.tgz",
+      "integrity": "sha512-o560kw+dFqusC9lQJhcm6L2F2fMKobJ5af+FoR2PdnMVdpQ3f3Bz6qzvObTGyvoazQJxjQNWgMQeChP4vRTuXQ==",
+      "license": "MIT",
+      "dependencies": {
+        "redis": "^4.3.1"
+      },
+      "engines": {
+        "node": ">= 16.18.0"
+      }
+    },
+    "node_modules/cache-manager/node_modules/lru-cache": {
+      "version": "10.4.3",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+      "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+      "license": "ISC"
+    },
     "node_modules/call-bind": {
       "version": "1.0.7",
       "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
@@ -4419,6 +4581,15 @@
         "node": ">=6"
       }
     },
+    "node_modules/cluster-key-slot": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz",
+      "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==",
+      "license": "Apache-2.0",
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
     "node_modules/co": {
       "version": "4.6.0",
       "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
@@ -5165,9 +5336,9 @@
       }
     },
     "node_modules/engine.io": {
-      "version": "6.5.5",
-      "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz",
-      "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==",
+      "version": "6.6.2",
+      "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.2.tgz",
+      "integrity": "sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw==",
       "license": "MIT",
       "dependencies": {
         "@types/cookie": "^0.4.1",
@@ -5175,7 +5346,7 @@
         "@types/node": ">=10.0.0",
         "accepts": "~1.3.4",
         "base64id": "2.0.0",
-        "cookie": "~0.4.1",
+        "cookie": "~0.7.2",
         "cors": "~2.8.5",
         "debug": "~4.3.1",
         "engine.io-parser": "~5.2.1",
@@ -5195,9 +5366,9 @@
       }
     },
     "node_modules/engine.io/node_modules/cookie": {
-      "version": "0.4.2",
-      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz",
-      "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==",
+      "version": "0.7.2",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
+      "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
       "license": "MIT",
       "engines": {
         "node": ">= 0.6"
@@ -6360,6 +6531,15 @@
         "url": "https://github.com/sponsors/ljharb"
       }
     },
+    "node_modules/generic-pool": {
+      "version": "3.9.0",
+      "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz",
+      "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 4"
+      }
+    },
     "node_modules/gensync": {
       "version": "1.0.0-beta.2",
       "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
@@ -8392,6 +8572,12 @@
       "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
       "license": "MIT"
     },
+    "node_modules/lodash.clonedeep": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
+      "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
+      "license": "MIT"
+    },
     "node_modules/lodash.escape": {
       "version": "4.0.1",
       "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz",
@@ -10258,6 +10444,15 @@
       "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
       "license": "MIT"
     },
+    "node_modules/promise-coalesce": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/promise-coalesce/-/promise-coalesce-1.1.2.tgz",
+      "integrity": "sha512-zLaJ9b8hnC564fnJH6NFSOGZYYdzrAJn2JUUIwzoQb32fG2QAakpDNM+CZo1km6keXkRXRM+hml1BFAPVnPkxg==",
+      "license": "BSD-3-Clause",
+      "engines": {
+        "node": ">=16"
+      }
+    },
     "node_modules/prompts": {
       "version": "2.4.2",
       "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
@@ -10535,6 +10730,23 @@
         "url": "https://github.com/sponsors/jonschlinkert"
       }
     },
+    "node_modules/redis": {
+      "version": "4.7.0",
+      "resolved": "https://registry.npmjs.org/redis/-/redis-4.7.0.tgz",
+      "integrity": "sha512-zvmkHEAdGMn+hMRXuMBtu4Vo5P6rHQjLoHftu+lBqq8ZTA3RCVC/WzD790bkKKiNFp7d5/9PcSD19fJyyRvOdQ==",
+      "license": "MIT",
+      "workspaces": [
+        "./packages/*"
+      ],
+      "dependencies": {
+        "@redis/bloom": "1.2.0",
+        "@redis/client": "1.6.0",
+        "@redis/graph": "1.1.1",
+        "@redis/json": "1.0.7",
+        "@redis/search": "1.2.0",
+        "@redis/time-series": "1.1.0"
+      }
+    },
     "node_modules/redoc": {
       "version": "2.1.5",
       "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.1.5.tgz",
@@ -11342,16 +11554,16 @@
       }
     },
     "node_modules/socket.io": {
-      "version": "4.7.5",
-      "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz",
-      "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==",
+      "version": "4.8.1",
+      "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.1.tgz",
+      "integrity": "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==",
       "license": "MIT",
       "dependencies": {
         "accepts": "~1.3.4",
         "base64id": "~2.0.0",
         "cors": "~2.8.5",
         "debug": "~4.3.2",
-        "engine.io": "~6.5.2",
+        "engine.io": "~6.6.0",
         "socket.io-adapter": "~2.5.2",
         "socket.io-parser": "~4.2.4"
       },
diff --git a/package.json b/package.json
index 67af1b8..63cf663 100644
--- a/package.json
+++ b/package.json
@@ -23,6 +23,7 @@
   },
   "dependencies": {
     "@nestjs/axios": "^3.0.3",
+    "@nestjs/cache-manager": "^2.3.0",
     "@nestjs/common": "^10.0.0",
     "@nestjs/config": "^3.2.3",
     "@nestjs/core": "^10.0.0",
@@ -35,6 +36,8 @@
     "@redocly/cli": "^1.25.5",
     "@spotify/web-api-ts-sdk": "^1.2.0",
     "axios": "^1.7.7",
+    "cache-manager": "^5.7.6",
+    "cache-manager-redis-store": "^3.0.1",
     "class-transformer": "^0.5.1",
     "class-validator": "^0.14.1",
     "mongoose": "^8.7.0",
@@ -43,6 +46,7 @@
     "pg": "^8.13.0",
     "reflect-metadata": "^0.2.0",
     "rxjs": "^7.8.1",
+    "socket.io": "^4.8.1",
     "swagger-ui-express": "^5.0.1",
     "typeorm": "^0.3.20",
     "yaml": "^2.5.1"
diff --git a/proxy/api/index.html b/proxy/api/index.html
index 83e479e..53b9e67 100644
--- a/proxy/api/index.html
+++ b/proxy/api/index.html
@@ -392,7 +392,7 @@
 
 <body>
   
-      <div id="redoc"><div class="sc-iMPxVN beDZfq redoc-wrap"><div class="sc-dFqmTM jmYWik menu-content" style="top:0px;height:calc(100vh - 0px)"><div role="search" class="sc-dtOqdk cqdCbT"><svg class="sc-kBpWFy eDlXyu search-icon" version="1.1" viewBox="0 0 1000 1000" x="0px" xmlns="http://www.w3.org/2000/svg" y="0px"><path d="M968.2,849.4L667.3,549c83.9-136.5,66.7-317.4-51.7-435.6C477.1-25,252.5-25,113.9,113.4c-138.5,138.3-138.5,362.6,0,501C219.2,730.1,413.2,743,547.6,666.5l301.9,301.4c43.6,43.6,76.9,14.9,104.2-12.4C981,928.3,1011.8,893,968.2,849.4z M524.5,522c-88.9,88.7-233,88.7-321.8,0c-88.9-88.7-88.9-232.6,0-321.3c88.9-88.7,233-88.7,321.8,0C613.4,289.4,613.4,433.3,524.5,522z"></path></svg><input placeholder="Search..." aria-label="Search" type="text" class="sc-hPGoDJ kAGYgE search-input" value=""/></div><div class="sc-dEkLRj cpBPUN scrollbar-container undefined"><ul role="menu" class="sc-iRVXky dXwhdL"><li tabindex="0" depth="1" data-item-id="tag/jukeboxes" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="jukeboxes" class="sc-enMaOJ bBONey">jukeboxes</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_findAll" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_findAll</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_findOne" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_findOne</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_remove" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_remove</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_getJukeboxLinks</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_addLinkToJukebox</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_deleteJukeboxLink</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_getActiveJukeboxLink</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_setActiveJukeboxLink</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/spotify" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="spotify" class="sc-enMaOJ bBONey">spotify</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_login" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_login</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_loginSuccessCallback" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_loginSuccessCallback</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_getSpotifyLinks" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_getSpotifyLinks</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_deleteSpotifyLink</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/club" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="club" class="sc-enMaOJ bBONey">club</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_list" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_list</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_list" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_list</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_destroy" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_destroy</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_destroy" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_destroy</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/schema" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="schema" class="sc-enMaOJ bBONey">schema</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/schema/operation/schema_club_manager_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">schema_club_manager_retrieve</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/user" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="user" class="sc-enMaOJ bBONey">user</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_token_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_token_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_users_create_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_users_create_create</span></label></li></ul></li></ul><div class="sc-fUEImY fxirIR"><a target="_blank" rel="noopener noreferrer" href="https://redocly.com/redoc/">API docs by Redocly</a></div></div></div><div class="sc-eqXzvo cZPhLc"><div class="sc-bLmarx isQMci"><svg class="" style="transform:translate(2px, -4px) rotate(180deg);transition:transform 0.2s ease" viewBox="0 0 926.23699 573.74994" version="1.1" x="0px" y="0px" width="15" height="15"><g transform="translate(904.92214,-879.1482)"><path d="
+      <div id="redoc"><div class="sc-iMPxVN beDZfq redoc-wrap"><div class="sc-dFqmTM jmYWik menu-content" style="top:0px;height:calc(100vh - 0px)"><div role="search" class="sc-dtOqdk cqdCbT"><svg class="sc-kBpWFy eDlXyu search-icon" version="1.1" viewBox="0 0 1000 1000" x="0px" xmlns="http://www.w3.org/2000/svg" y="0px"><path d="M968.2,849.4L667.3,549c83.9-136.5,66.7-317.4-51.7-435.6C477.1-25,252.5-25,113.9,113.4c-138.5,138.3-138.5,362.6,0,501C219.2,730.1,413.2,743,547.6,666.5l301.9,301.4c43.6,43.6,76.9,14.9,104.2-12.4C981,928.3,1011.8,893,968.2,849.4z M524.5,522c-88.9,88.7-233,88.7-321.8,0c-88.9-88.7-88.9-232.6,0-321.3c88.9-88.7,233-88.7,321.8,0C613.4,289.4,613.4,433.3,524.5,522z"></path></svg><input placeholder="Search..." aria-label="Search" type="text" class="sc-hPGoDJ kAGYgE search-input" value=""/></div><div class="sc-dEkLRj cpBPUN scrollbar-container undefined"><ul role="menu" class="sc-iRVXky dXwhdL"><li tabindex="0" depth="1" data-item-id="tag/jukeboxes" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="jukeboxes" class="sc-enMaOJ bBONey">jukeboxes</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_findAll" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_findAll</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_findOne" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_findOne</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_remove" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_remove</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_getJukeboxLinks</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_addLinkToJukebox</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_deleteJukeboxLink</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_getActiveJukeboxLink</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_setActiveJukeboxLink</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_getTracksQueue" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_getTracksQueue</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_addTrackToQueue" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_addTrackToQueue</span></label></li><li tabindex="0" depth="2" data-item-id="tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">JukeboxController_connectJukeboxPlayer</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/spotify" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="spotify" class="sc-enMaOJ bBONey">spotify</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_login" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_login</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_loginSuccessCallback" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_loginSuccessCallback</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_getSpotifyLinks" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_getSpotifyLinks</span></label></li><li tabindex="0" depth="2" data-item-id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">SpotifyController_deleteSpotifyLink</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/club" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="club" class="sc-enMaOJ bBONey">club</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_list" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_list</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_list" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_list</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_members_destroy" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_members_destroy</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/club/operation/club_clubs_destroy" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="delete" class="sc-erSfwj gYaAxf operation-type delete">del</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">club_clubs_destroy</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/schema" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="schema" class="sc-enMaOJ bBONey">schema</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/schema/operation/schema_club_manager_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">schema_club_manager_retrieve</span></label></li></ul></li><li tabindex="0" depth="1" data-item-id="tag/user" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW bgAbkd -depth1"><span width="calc(100% - 38px)" title="user" class="sc-enMaOJ bBONey">user</span><svg class="sc-cHqXqK gkUOTk" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class="sc-iRVXky kUyAbS"><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_retrieve" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="get" class="sc-erSfwj gYaAxf operation-type get">get</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_retrieve</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="put" class="sc-erSfwj gYaAxf operation-type put">put</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_me_partial_update" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="patch" class="sc-erSfwj gYaAxf operation-type patch">patch</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_me_partial_update</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_token_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_token_create</span></label></li><li tabindex="0" depth="2" data-item-id="tag/user/operation/user_users_create_create" role="menuitem" class="sc-ljhlHD gSwPLF"><label class="sc-bAEjGW dnJKVb -depth2"><span type="post" class="sc-erSfwj gYaAxf operation-type post">post</span><span tabindex="0" width="calc(100% - 38px)" class="sc-enMaOJ bBONey">user_users_create_create</span></label></li></ul></li></ul><div class="sc-fUEImY fxirIR"><a target="_blank" rel="noopener noreferrer" href="https://redocly.com/redoc/">API docs by Redocly</a></div></div></div><div class="sc-eqXzvo cZPhLc"><div class="sc-bLmarx isQMci"><svg class="" style="transform:translate(2px, -4px) rotate(180deg);transition:transform 0.2s ease" viewBox="0 0 926.23699 573.74994" version="1.1" x="0px" y="0px" width="15" height="15"><g transform="translate(904.92214,-879.1482)"><path d="
           m -673.67664,1221.6502 -231.2455,-231.24803 55.6165,
           -55.627 c 30.5891,-30.59485 56.1806,-55.627 56.8701,-55.627 0.6894,
           0 79.8637,78.60862 175.9427,174.68583 l 174.6892,174.6858 174.6892,
@@ -410,7 +410,7 @@
           55.627 l 55.6165,55.627 -231.245496,231.24803 c -127.185,127.1864
           -231.5279,231.248 -231.873,231.248 -0.3451,0 -104.688,
           -104.0616 -231.873,-231.248 z
-        " fill="currentColor"></path></g></svg></div></div><div class="sc-jdwyG knmTbM api-content"><div class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq api-info"><h1 class="sc-ixGGxD sc-geoRQH kHkxTT dZsYqS">OSC Microservices API<!-- --> <span>(<!-- -->1.0.0<!-- -->)</span></h1><p>Download OpenAPI specification<!-- -->:<a download="openapi.json" target="_blank" class="sc-kEsJEW enkzRg">Download</a></p><div class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><div data-role="redoc-summary" html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><div data-role="redoc-description" html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div></div></div></div><div id="tag/jukeboxes" data-section-id="tag/jukeboxes" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes" aria-label="tag/jukeboxes"></a>jukeboxes</h2></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_create" data-section-id="tag/jukeboxes/operation/JukeboxController_create" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_create" id="operation/JukeboxController_create" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_create" aria-label="tag/jukeboxes/operation/JukeboxController_create"></a>JukeboxController_create<!-- --> </h2><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">name</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="club_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">club_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2a8oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2a8oq:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2a8oq:0" aria-labelledby="tab:R2a8oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e8oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e8oq:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e8oq:0" aria-labelledby="tab:R2e8oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_findAll" data-section-id="tag/jukeboxes/operation/JukeboxController_findAll" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_findAll" id="operation/JukeboxController_findAll" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_findAll" aria-label="tag/jukeboxes/operation/JukeboxController_findAll"></a>JukeboxController_findAll<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e98q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e98q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e98q:0" aria-labelledby="tab:R2e98q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"links"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_findOne" data-section-id="tag/jukeboxes/operation/JukeboxController_findOne" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_findOne" id="operation/JukeboxController_findOne" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_findOne" aria-label="tag/jukeboxes/operation/JukeboxController_findOne"></a>JukeboxController_findOne<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e9oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e9oq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e9oq:0" aria-labelledby="tab:R2e9oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_update" data-section-id="tag/jukeboxes/operation/JukeboxController_update" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_update" id="operation/JukeboxController_update" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_update" aria-label="tag/jukeboxes/operation/JukeboxController_update"></a>JukeboxController_update<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">name</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="patch" class="sc-txhaY jkswBz http-verb patch">patch</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2aa8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2aa8q:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2aa8q:0" aria-labelledby="tab:R2aa8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ea8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ea8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ea8q:0" aria-labelledby="tab:R2ea8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_remove" data-section-id="tag/jukeboxes/operation/JukeboxController_remove" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_remove" id="operation/JukeboxController_remove" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_remove" aria-label="tag/jukeboxes/operation/JukeboxController_remove"></a>JukeboxController_remove<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eaoq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eaoq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eaoq:0" aria-labelledby="tab:R2eaoq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" data-section-id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_getJukeboxLinks" id="operation/JukeboxController_getJukeboxLinks" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" aria-label="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks"></a>JukeboxController_getJukeboxLinks<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eb8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eb8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eb8q:0" aria-labelledby="tab:R2eb8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" data-section-id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_addLinkToJukebox" id="operation/JukeboxController_addLinkToJukebox" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" aria-label="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox"></a>JukeboxController_addLinkToJukebox<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="type" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">type</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="email" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">email</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2aboq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2aboq:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2aboq:0" aria-labelledby="tab:R2aboq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eboq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eboq:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eboq:0" aria-labelledby="tab:R2eboq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_deleteJukeboxLink" id="operation/JukeboxController_deleteJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink"></a>JukeboxController_deleteJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ec8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ec8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ec8q:0" aria-labelledby="tab:R2ec8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_link"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_getActiveJukeboxLink" id="operation/JukeboxController_getActiveJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink"></a>JukeboxController_getActiveJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/active-link</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/active-link</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ecoq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ecoq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ecoq:0" aria-labelledby="tab:R2ecoq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_setActiveJukeboxLink" id="operation/JukeboxController_setActiveJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink"></a>JukeboxController_setActiveJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="type" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">type</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="email" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">email</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/active-link</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/active-link</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2ad8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ad8q:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ad8q:0" aria-labelledby="tab:R2ad8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ed8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ed8q:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ed8q:0" aria-labelledby="tab:R2ed8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/spotify" data-section-id="tag/spotify" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify" aria-label="tag/spotify"></a>spotify</h2></div></div></div><div id="tag/spotify/operation/SpotifyController_login" data-section-id="tag/spotify/operation/SpotifyController_login" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_login" id="operation/SpotifyController_login" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_login" aria-label="tag/spotify/operation/SpotifyController_login"></a>SpotifyController_login<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu kQgYHQ" disabled=""><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/login</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/login</div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_loginSuccessCallback" data-section-id="tag/spotify/operation/SpotifyController_loginSuccessCallback" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_loginSuccessCallback" id="operation/SpotifyController_loginSuccessCallback" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_loginSuccessCallback" aria-label="tag/spotify/operation/SpotifyController_loginSuccessCallback"></a>SpotifyController_loginSuccessCallback<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/login/success</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/login/success</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R1759a:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R1759a:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R1759a:0" aria-labelledby="tab:R1759a:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><span class="token punctuation">{ }</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_getSpotifyLinks" data-section-id="tag/spotify/operation/SpotifyController_getSpotifyLinks" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_getSpotifyLinks" id="operation/SpotifyController_getSpotifyLinks" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_getSpotifyLinks" aria-label="tag/spotify/operation/SpotifyController_getSpotifyLinks"></a>SpotifyController_getSpotifyLinks<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R175pa:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R175pa:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R175pa:0" aria-labelledby="tab:R175pa:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" data-section-id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_deleteSpotifyLink" id="operation/SpotifyController_deleteSpotifyLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_deleteSpotifyLink" aria-label="tag/spotify/operation/SpotifyController_deleteSpotifyLink"></a>SpotifyController_deleteSpotifyLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/links/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/links/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R1769a:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R1769a:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R1769a:0" aria-labelledby="tab:R1769a:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/club" data-section-id="tag/club" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/club" aria-label="tag/club"></a>club</h2></div></div></div><div id="tag/club/operation/club_clubs_list" data-section-id="tag/club/operation/club_clubs_list" class="sc-dntaoT aYCdu"><div data-section-id="operation/club_clubs_list" id="operation/club_clubs_list" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/club/operation/club_clubs_list" aria-label="tag/club/operation/club_clubs_list"></a>club_clubs_list<!-- --> </h2><div class="sc-fantwC exRUVh"><div html="&lt;p&gt;CRUD Api routes for Club models.&lt;/p&gt;
+        " fill="currentColor"></path></g></svg></div></div><div class="sc-jdwyG knmTbM api-content"><div class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq api-info"><h1 class="sc-ixGGxD sc-geoRQH kHkxTT dZsYqS">OSC Microservices API<!-- --> <span>(<!-- -->1.0.0<!-- -->)</span></h1><p>Download OpenAPI specification<!-- -->:<a download="openapi.json" target="_blank" class="sc-kEsJEW enkzRg">Download</a></p><div class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><div data-role="redoc-summary" html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><div data-role="redoc-description" html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div></div></div></div><div id="tag/jukeboxes" data-section-id="tag/jukeboxes" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes" aria-label="tag/jukeboxes"></a>jukeboxes</h2></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_create" data-section-id="tag/jukeboxes/operation/JukeboxController_create" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_create" id="operation/JukeboxController_create" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_create" aria-label="tag/jukeboxes/operation/JukeboxController_create"></a>JukeboxController_create<!-- --> </h2><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">name</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="club_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">club_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2a8oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2a8oq:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2a8oq:0" aria-labelledby="tab:R2a8oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e8oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e8oq:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e8oq:0" aria-labelledby="tab:R2e8oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_findAll" data-section-id="tag/jukeboxes/operation/JukeboxController_findAll" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_findAll" id="operation/JukeboxController_findAll" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_findAll" aria-label="tag/jukeboxes/operation/JukeboxController_findAll"></a>JukeboxController_findAll<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e98q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e98q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e98q:0" aria-labelledby="tab:R2e98q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"links"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_findOne" data-section-id="tag/jukeboxes/operation/JukeboxController_findOne" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_findOne" id="operation/JukeboxController_findOne" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_findOne" aria-label="tag/jukeboxes/operation/JukeboxController_findOne"></a>JukeboxController_findOne<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e9oq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e9oq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e9oq:0" aria-labelledby="tab:R2e9oq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_update" data-section-id="tag/jukeboxes/operation/JukeboxController_update" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_update" id="operation/JukeboxController_update" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_update" aria-label="tag/jukeboxes/operation/JukeboxController_update"></a>JukeboxController_update<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">name</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="patch" class="sc-txhaY jkswBz http-verb patch">patch</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2aa8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2aa8q:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2aa8q:0" aria-labelledby="tab:R2aa8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ea8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ea8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ea8q:0" aria-labelledby="tab:R2ea8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_remove" data-section-id="tag/jukeboxes/operation/JukeboxController_remove" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_remove" id="operation/JukeboxController_remove" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_remove" aria-label="tag/jukeboxes/operation/JukeboxController_remove"></a>JukeboxController_remove<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/jukeboxes/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/jukeboxes/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eaoq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eaoq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eaoq:0" aria-labelledby="tab:R2eaoq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"created_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"updated_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"links"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" data-section-id="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_getJukeboxLinks" id="operation/JukeboxController_getJukeboxLinks" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_getJukeboxLinks" aria-label="tag/jukeboxes/operation/JukeboxController_getJukeboxLinks"></a>JukeboxController_getJukeboxLinks<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eb8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eb8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eb8q:0" aria-labelledby="tab:R2eb8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" data-section-id="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_addLinkToJukebox" id="operation/JukeboxController_addLinkToJukebox" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_addLinkToJukebox" aria-label="tag/jukeboxes/operation/JukeboxController_addLinkToJukebox"></a>JukeboxController_addLinkToJukebox<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="type" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">type</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="email" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">email</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2aboq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2aboq:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2aboq:0" aria-labelledby="tab:R2aboq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2eboq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2eboq:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2eboq:0" aria-labelledby="tab:R2eboq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_deleteJukeboxLink" id="operation/JukeboxController_deleteJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink"></a>JukeboxController_deleteJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/links/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/links/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ec8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ec8q:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ec8q:0" aria-labelledby="tab:R2ec8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_link"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_getActiveJukeboxLink" id="operation/JukeboxController_getActiveJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink"></a>JukeboxController_getActiveJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/active-link</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/active-link</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ecoq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ecoq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ecoq:0" aria-labelledby="tab:R2ecoq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" data-section-id="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_setActiveJukeboxLink" id="operation/JukeboxController_setActiveJukeboxLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink" aria-label="tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink"></a>JukeboxController_setActiveJukeboxLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="type" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">type</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="email" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">email</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/active-link</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/active-link</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2ad8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ad8q:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ad8q:0" aria-labelledby="tab:R2ad8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ed8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ed8q:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ed8q:0" aria-labelledby="tab:R2ed8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_getTracksQueue" data-section-id="tag/jukeboxes/operation/JukeboxController_getTracksQueue" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_getTracksQueue" id="operation/JukeboxController_getTracksQueue" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_getTracksQueue" aria-label="tag/jukeboxes/operation/JukeboxController_getTracksQueue"></a>JukeboxController_getTracksQueue<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/tracks-queue</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/tracks-queue</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2edoq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2edoq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2edoq:0" aria-labelledby="tab:R2edoq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_addTrackToQueue" data-section-id="tag/jukeboxes/operation/JukeboxController_addTrackToQueue" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_addTrackToQueue" id="operation/JukeboxController_addTrackToQueue" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_addTrackToQueue" aria-label="tag/jukeboxes/operation/JukeboxController_addTrackToQueue"></a>JukeboxController_addTrackToQueue<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <span class="sc-dhCplO khtVmz">application/json</span><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="track_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">track_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="position" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">position</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/tracks-queue</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/tracks-queue</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R2ae8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ae8q:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ae8q:0" aria-labelledby="tab:R2ae8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"track_id"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"position"</span>: <span class="token number">0</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2ee8q:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2ee8q:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2ee8q:0" aria-labelledby="tab:R2ee8q:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><span class="token punctuation">{ }</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer" data-section-id="tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer" class="sc-dntaoT aYCdu"><div data-section-id="operation/JukeboxController_connectJukeboxPlayer" id="operation/JukeboxController_connectJukeboxPlayer" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer" aria-label="tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer"></a>JukeboxController_connectJukeboxPlayer<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="jukebox_id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">jukebox_id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu kQgYHQ" disabled=""><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/jukebox/{jukebox_id}/connect</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/jukebox/{jukebox_id}/connect</div></div></div></div></div></div></div></div><div id="tag/spotify" data-section-id="tag/spotify" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify" aria-label="tag/spotify"></a>spotify</h2></div></div></div><div id="tag/spotify/operation/SpotifyController_login" data-section-id="tag/spotify/operation/SpotifyController_login" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_login" id="operation/SpotifyController_login" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_login" aria-label="tag/spotify/operation/SpotifyController_login"></a>SpotifyController_login<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu kQgYHQ" disabled=""><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/login</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/login</div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_loginSuccessCallback" data-section-id="tag/spotify/operation/SpotifyController_loginSuccessCallback" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_loginSuccessCallback" id="operation/SpotifyController_loginSuccessCallback" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_loginSuccessCallback" aria-label="tag/spotify/operation/SpotifyController_loginSuccessCallback"></a>SpotifyController_loginSuccessCallback<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/login/success</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/login/success</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R1759a:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R1759a:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R1759a:0" aria-labelledby="tab:R1759a:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><span class="token punctuation">{ }</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_getSpotifyLinks" data-section-id="tag/spotify/operation/SpotifyController_getSpotifyLinks" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_getSpotifyLinks" id="operation/SpotifyController_getSpotifyLinks" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_getSpotifyLinks" aria-label="tag/spotify/operation/SpotifyController_getSpotifyLinks"></a>SpotifyController_getSpotifyLinks<!-- --> </h2><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/links</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/links</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R175pa:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R175pa:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R175pa:0" aria-labelledby="tab:R175pa:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" data-section-id="tag/spotify/operation/SpotifyController_deleteSpotifyLink" class="sc-dntaoT aYCdu"><div data-section-id="operation/SpotifyController_deleteSpotifyLink" id="operation/SpotifyController_deleteSpotifyLink" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/spotify/operation/SpotifyController_deleteSpotifyLink" aria-label="tag/spotify/operation/SpotifyController_deleteSpotifyLink"></a>SpotifyController_deleteSpotifyLink<!-- --> </h2><div><h5 class="sc-dpBQxM eJAAZj">path<!-- --> Parameters</h5><table class="sc-dprtRQ eNFxPe"><tbody><tr class="last "><td kind="field" title="id" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">id</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">number</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="delete" class="sc-txhaY gtVIQH http-verb delete">delete</span><span class="sc-etPtWW iqHzp">/api/v1/spotify/links/{id}</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/spotify/links/{id}</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R1769a:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R1769a:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R1769a:0" aria-labelledby="tab:R1769a:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"access_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"refresh_token"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"spotify_email"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_in"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"expires_at"</span>: <span class="token string">&quot;2019-08-24T14:15:22Z&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"token_type"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"jukebox_assignments"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"jukebox_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"jukebox"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"club_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"link_assignments"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"spotify_link"</span>: <span class="token punctuation">{ }</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"active"</span>: <span class="token boolean">true</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/club" data-section-id="tag/club" class="sc-dntaoT bvhSud"><div class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/club" aria-label="tag/club"></a>club</h2></div></div></div><div id="tag/club/operation/club_clubs_list" data-section-id="tag/club/operation/club_clubs_list" class="sc-dntaoT aYCdu"><div data-section-id="operation/club_clubs_list" id="operation/club_clubs_list" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/club/operation/club_clubs_list" aria-label="tag/club/operation/club_clubs_list"></a>club_clubs_list<!-- --> </h2><div class="sc-fantwC exRUVh"><div html="&lt;p&gt;CRUD Api routes for Club models.&lt;/p&gt;
 " class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"><p>CRUD Api routes for Club models.</p>
 </div></div><div class="sc-hGNhLO dyzdIR"><div class="sc-jWJSSj jXOga-d"><h5 class="sc-dpBQxM sc-khdDuB eJAAZj ffSXYc">Authorizations:</h5><svg class="sc-cHqXqK bEpxpV" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></div><div class="sc-iCjFWQ gQOXJB"><span class="sc-irPVuy eqXCjK"><span class="sc-bqvdXA dIXVzO"><i>tokenAuth</i></span></span></div></div><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">200<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="get" class="sc-txhaY IVbnb http-verb get">get</span><span class="sc-etPtWW iqHzp">/api/v1/club/clubs/</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/club/clubs/</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R2e8pq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R2e8pq:0" tabindex="0" data-rttab="true">200</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R2e8pq:0" aria-labelledby="tab:R2e8pq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable "><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"logo"</span>: <span class="token string">&quot;</span><a href="http://example.com">http://example.com</a><span class="token string">&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"members"</span>: <button class="collapser" aria-label="expand"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"user_id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"username"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"owner"</span>: <span class="token boolean">true</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"role"</span>: <span class="token string">&quot;president&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"points"</span>: <span class="token number">-2147483648</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></code></div></div></div></div></div></div></div></div></div></div></div><div id="tag/club/operation/club_clubs_create" data-section-id="tag/club/operation/club_clubs_create" class="sc-dntaoT aYCdu"><div data-section-id="operation/club_clubs_create" id="operation/club_clubs_create" class="sc-kLhKbu dECWTf"><div class="sc-fAUdSK dFrZq"><h2 class="sc-khLCKb wHiQv"><a class="sc-jwIPbr hbTOAm" href="#tag/club/operation/club_clubs_create" aria-label="tag/club/operation/club_clubs_create"></a>club_clubs_create<!-- --> </h2><div class="sc-fantwC exRUVh"><div html="&lt;p&gt;CRUD Api routes for Club models.&lt;/p&gt;
 " class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"><p>CRUD Api routes for Club models.</p>
@@ -476,7 +476,7 @@
 " class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"><p>Create a new user in the system.</p>
 </div></div><div class="sc-hGNhLO dyzdIR"><div class="sc-jWJSSj jXOga-d"><h5 class="sc-dpBQxM sc-khdDuB eJAAZj ffSXYc">Authorizations:</h5><svg class="sc-cHqXqK bEpxpV" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></div><div class="sc-iCjFWQ gQOXJB"><span class="sc-irPVuy eqXCjK"><span class="sc-bqvdXA dIXVzO"><i>cookieAuth</i></span></span><span class="sc-irPVuy eqXCjK"><span class="sc-bqvdXA dIXVzO"><i>basicAuth</i></span></span><span class="sc-irPVuy eqXCjK">None</span></div></div><h5 class="sc-dpBQxM eJAAZj">Request Body schema: <div class="sc-diYFot sc-kEfuZE iHjPVQ dkmakt"><svg class="sc-kZrBCu bweot" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg><select class="dropdown-select"><option value="application/json" selected="">application/json</option><option value="application/x-www-form-urlencoded">application/x-www-form-urlencoded</option><option value="multipart/form-data">multipart/form-data</option></select><label>application/json</label></div><div class="sc-CNKsk sc-hGZxvd sc-kLJHhQ hPAOR feFoaC fRACBr">required</div></h5><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK"></div><table class="sc-dprtRQ eNFxPe"><tbody><tr class=""><td kind="field" title="username" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">username</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class=""><td kind="field" title="email" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">email</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi"> <!-- -->&lt;<!-- -->email<!-- -->&gt;<!-- --> </span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class=""><td kind="field" title="first_name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">first_name</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class=""><td kind="field" title="last_name" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">last_name</span></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class=""><td kind="field" title="password" class="sc-ovuCP sc-eauhAA iyKqKI iQpMVv"><span class="sc-gQaihK kPDxnK"></span><span class="property-name">password</span><div class="sc-CNKsk sc-hGZxvd hPAOR feFoaC">required</div></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL"></span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">string</span><span> <span class="sc-CNKsk sc-fIfZzT hPAOR diHVZf"> <!-- -->[ 5 .. 128 ] characters<!-- --> </span></span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr><tr class="last "><td kind="field" title="clubs" class="sc-ovuCP sc-eauhAA sc-hsfCcR iyKqKI iQpMVv buGHPE"><span class="sc-gQaihK kPDxnK"></span><button aria-label="expand clubs"><span class="property-name">clubs</span><svg class="sc-cHqXqK ccTkAM" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button></td><td class="sc-fFoeYl cHXoZJ"><div><div><span class="sc-CNKsk sc-cqgMZH hPAOR dWKYKL">Array of </span><span class="sc-CNKsk sc-gQkENW hPAOR bIEFFi">objects</span><span class="sc-CNKsk sc-gcfzXs hPAOR dnQByT"> (<!-- -->UserClubNested<!-- -->) </span></div> <div><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div></div></div></td></tr></tbody></table><div><h3 class="sc-edsqmr dheqgt">Responses</h3><div><button class="sc-gohMHu cnBopK"><svg class="sc-cHqXqK hmCwJW" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class="sc-bKXUjo beMorW">201<!-- --> </strong><div html="" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv"></div></button></div></div></div><div class="sc-ivxoEo sc-ghWlax gOjFGl oECKJ"><div class="sc-duWCru dWZoid"><button class="sc-iPHsxv ebcgbH"><span type="post" class="sc-txhaY cpnVKx http-verb post">post</span><span class="sc-etPtWW iqHzp">/api/v1/user/users/create/</span><svg class="sc-cHqXqK fmmJjS" style="margin-right:-25px" version="1.1" viewBox="0 0 24 24" x="0" xmlns="http://www.w3.org/2000/svg" y="0" aria-hidden="true"><polygon points="17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></button><div aria-hidden="true" class="sc-ePpfBx ddApzj"><div class="sc-dwGkES evaCJX"><div html="" class="sc-epnzzT sc-eMwmJz drsioI ewnBNs"></div><div tabindex="0" role="button"><div class="sc-hSyjfr gufODt"><span></span>/api/v1/user/users/create/</div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Request samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="react-tabs__tab react-tabs__tab--selected" role="tab" id="tab:R156qq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R156qq:0" tabindex="0" data-rttab="true">Payload</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R156qq:0" aria-labelledby="tab:R156qq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-diYFot sc-frniUE iHjPVQ esCYIP"><svg class="sc-kZrBCu JXohG" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg><select class="dropdown-select"><option value="application/json" selected="">application/json</option><option value="application/x-www-form-urlencoded">application/x-www-form-urlencoded</option><option value="multipart/form-data">multipart/form-data</option></select><label>application/json</label></div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"username"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;user@example.com&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"first_name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"last_name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"password"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"clubs"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><span class="token punctuation">{ }</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div><div><h3 class="sc-keTIit zvQzH"> <!-- -->Response samples<!-- --> </h3><div class="sc-bMTdWJ fbQvpV" data-rttabs="true"><ul class="react-tabs__tab-list" role="tablist"><li class="tab-success react-tabs__tab--selected" role="tab" id="tab:R176qq:0" aria-selected="true" aria-disabled="false" aria-controls="panel:R176qq:0" tabindex="0" data-rttab="true">201</li></ul><div class="react-tabs__tab-panel react-tabs__tab-panel--selected" role="tabpanel" id="panel:R176qq:0" aria-labelledby="tab:R176qq:0"><div><div class="sc-Rjrgp dIDLbO"><span class="sc-fufdwm eqWzJe">Content type</span><div class="sc-UblHX kKXAng">application/json</div></div><div class="sc-FFETS kqHNPM"><div class="sc-eDHQDy mMhCU"><div class="sc-uYFMi hhzNne"><button><div class="sc-eWPXlR ezdXRP">Copy</div></button><button> Expand all </button><button> Collapse all </button></div><div class="sc-epnzzT drsioI sc-giBObj iyEpFV"><div class="redoc-json"><code><button class="collapser" aria-label="collapse"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable "><span class="property token string">"id"</span>: <span class="token number">0</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"username"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"email"</span>: <span class="token string">&quot;user@example.com&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"first_name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"last_name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable "><span class="property token string">"clubs"</span>: <button class="collapser" aria-label="collapse"></button><span class="token punctuation">[</span><span class="ellipsis"></span><ul class="array collapsible"><li><div class="hoverable collapsed"><button class="collapser" aria-label="expand"></button><span class="token punctuation">{</span><span class="ellipsis"></span><ul class="obj collapsible"><li><div class="hoverable collapsed"><span class="property token string">"id"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"name"</span>: <span class="token string">&quot;string&quot;</span><span class="token punctuation">,</span></div></li><li><div class="hoverable collapsed"><span class="property token string">"role"</span>: <span class="token string">&quot;string&quot;</span></div></li></ul><span class="token punctuation">}</span></div></li></ul><span class="token punctuation">]</span></div></li></ul><span class="token punctuation">}</span></code></div></div></div></div></div></div></div></div></div></div></div></div><div class="sc-eEVuZf ifLiBE"></div></div></div>
       <script>
-      const __redoc_state = {"menu":{"activeItemIdx":-1},"spec":{"data":{"openapi":"3.0.3","info":{"version":"1.0.0","title":"OSC Microservices API"},"servers":[],"tags":[{"name":"jukeboxes","description":""},{"name":"spotify","description":""}],"paths":{"/api/v1/club/clubs/":{"get":{"operationId":"club_clubs_list","description":"CRUD Api routes for Club models.","tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Club"}}}},"description":""}}},"post":{"operationId":"club_clubs_create","description":"CRUD Api routes for Club models.","tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Club"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Club"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}}},"/api/v1/club/clubs/{club_id}/members/":{"get":{"operationId":"club_clubs_members_list","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClubMembership"}}}},"description":""}}},"post":{"operationId":"club_clubs_members_create","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}}},"/api/v1/club/clubs/{club_id}/members/{id}/":{"get":{"operationId":"club_clubs_members_retrieve","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"put":{"operationId":"club_clubs_members_update","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"patch":{"operationId":"club_clubs_members_partial_update","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"delete":{"operationId":"club_clubs_members_destroy","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"204":{"description":"No response body"}}}},"/api/v1/club/clubs/{id}/":{"get":{"operationId":"club_clubs_retrieve","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"put":{"operationId":"club_clubs_update","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Club"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Club"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"patch":{"operationId":"club_clubs_partial_update","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedClub"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedClub"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedClub"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"delete":{"operationId":"club_clubs_destroy","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"204":{"description":"No response body"}}}},"/api/v1/schema/club-manager":{"get":{"operationId":"schema_club_manager_retrieve","description":"OpenApi3 schema for this API. Format can be selected via content negotiation.\n\n- YAML: application/vnd.oai.openapi\n- JSON: application/vnd.oai.openapi+json","parameters":[{"in":"query","name":"format","schema":{"type":"string","enum":["json","yaml"]}},{"in":"query","name":"lang","schema":{"type":"string","enum":["af","ar","ar-dz","ast","az","be","bg","bn","br","bs","ca","ckb","cs","cy","da","de","dsb","el","en","en-au","en-gb","eo","es","es-ar","es-co","es-mx","es-ni","es-ve","et","eu","fa","fi","fr","fy","ga","gd","gl","he","hi","hr","hsb","hu","hy","ia","id","ig","io","is","it","ja","ka","kab","kk","km","kn","ko","ky","lb","lt","lv","mk","ml","mn","mr","ms","my","nb","ne","nl","nn","os","pa","pl","pt","pt-br","ro","ru","sk","sl","sq","sr","sr-latn","sv","sw","ta","te","tg","th","tk","tr","tt","udm","uk","ur","uz","vi","zh-hans","zh-hant"]}}],"tags":["schema"],"security":[{"cookieAuth":[]},{"basicAuth":[]},{}],"responses":{"200":{"content":{"application/vnd.oai.openapi":{"schema":{"type":"object","additionalProperties":{}}},"application/yaml":{"schema":{"type":"object","additionalProperties":{}}},"application/vnd.oai.openapi+json":{"schema":{"type":"object","additionalProperties":{}}},"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":""}}}},"/api/v1/user/me/":{"get":{"operationId":"user_me_retrieve","description":"Manage the authenticated user.","tags":["user"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}},"put":{"operationId":"user_me_update","description":"Manage the authenticated user.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/User"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/User"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}},"patch":{"operationId":"user_me_partial_update","description":"Manage the authenticated user.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedUser"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedUser"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedUser"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}}},"/api/v1/user/token/":{"post":{"operationId":"user_token_create","description":"Create a new auth token for user.","tags":["user"],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/AuthToken"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/AuthToken"}},"application/json":{"schema":{"$ref":"#/components/schemas/AuthToken"}}},"required":true},"security":[{"cookieAuth":[]},{"basicAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthToken"}}},"description":""}}}},"/api/v1/user/users/create/":{"post":{"operationId":"user_users_create_create","description":"Create a new user in the system.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/User"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/User"}}},"required":true},"security":[{"cookieAuth":[]},{"basicAuth":[]},{}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}}},"/api/v1/spotify/login":{"get":{"operationId":"SpotifyController_login","parameters":[],"responses":{"200":{"description":""}},"tags":["spotify"]}},"/api/v1/spotify/login/success":{"get":{"operationId":"SpotifyController_loginSuccessCallback","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object"}}}}},"tags":["spotify"]}},"/api/v1/spotify/links":{"get":{"operationId":"SpotifyController_getSpotifyLinks","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SpotifyAccount"}}}}}},"tags":["spotify"]}},"/api/v1/spotify/links/{id}":{"delete":{"operationId":"SpotifyController_deleteSpotifyLink","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["spotify"]}},"/api/v1/jukebox/jukeboxes":{"post":{"operationId":"JukeboxController_create","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateJukeboxDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"get":{"operationId":"JukeboxController_findAll","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxDto"}}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/jukeboxes/{id}":{"get":{"operationId":"JukeboxController_findOne","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"patch":{"operationId":"JukeboxController_update","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateJukeboxDto"}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"delete":{"operationId":"JukeboxController_remove","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/links":{"get":{"operationId":"JukeboxController_getJukeboxLinks","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkDto"}}}}}},"tags":["jukeboxes"]},"post":{"operationId":"JukeboxController_addLinkToJukebox","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddJukeboxLinkDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxLinkDto"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/links/{id}":{"delete":{"operationId":"JukeboxController_deleteJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}},{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/active-link":{"get":{"operationId":"JukeboxController_getActiveJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["jukeboxes"]},"post":{"operationId":"JukeboxController_setActiveJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddJukeboxLinkDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["jukeboxes"]}}},"components":{"schemas":{"AuthToken":{"type":"object","description":"Serialzer for the user auth token","properties":{"email":{"type":"string","format":"email"},"password":{"type":"string"}},"required":["email","password"]},"BlankEnum":{"enum":[""]},"Club":{"type":"object","description":"Convert club model to JSON fields.","properties":{"id":{"type":"integer","readOnly":true},"name":{"type":"string","maxLength":64},"logo":{"type":"string","format":"uri","nullable":true},"members":{"type":"array","items":{"$ref":"#/components/schemas/ClubMemberNested"},"readOnly":true}},"required":["id","members","name"]},"ClubMemberNested":{"type":"object","description":"Represents a user's membership within a club.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer","readOnly":true},"username":{"type":"string","readOnly":true},"owner":{"type":"boolean","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}},"required":["id","owner","user_id","username"]},"ClubMembership":{"type":"object","description":"Represents a club membership to use for CRUD operations.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer"},"club_id":{"type":"integer","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"owner":{"type":"boolean"},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}},"required":["club_id","id","user_id"]},"PatchedClub":{"type":"object","description":"Convert club model to JSON fields.","properties":{"id":{"type":"integer","readOnly":true},"name":{"type":"string","maxLength":64},"logo":{"type":"string","format":"uri","nullable":true},"members":{"type":"array","items":{"$ref":"#/components/schemas/ClubMemberNested"},"readOnly":true}}},"PatchedClubMembership":{"type":"object","description":"Represents a club membership to use for CRUD operations.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer"},"club_id":{"type":"integer","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"owner":{"type":"boolean"},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}}},"PatchedUser":{"type":"object","description":"Serialzier for the user object.","properties":{"id":{"type":"integer","readOnly":true},"username":{"type":"string"},"email":{"type":"string","format":"email"},"first_name":{"type":"string"},"last_name":{"type":"string"},"password":{"type":"string","writeOnly":true,"maxLength":128,"minLength":5},"clubs":{"type":"array","items":{"$ref":"#/components/schemas/UserClubNested"}}}},"RoleEnum":{"enum":["president","officer","member"],"type":"string","description":"* `president` - President\n* `officer` - Officer\n* `member` - Member"},"User":{"type":"object","description":"Serialzier for the user object.","properties":{"id":{"type":"integer","readOnly":true},"username":{"type":"string"},"email":{"type":"string","format":"email"},"first_name":{"type":"string"},"last_name":{"type":"string"},"password":{"type":"string","writeOnly":true,"maxLength":128,"minLength":5},"clubs":{"type":"array","items":{"$ref":"#/components/schemas/UserClubNested"}}},"required":["email","id","password"]},"UserClubNested":{"type":"object","description":"Represents nested club info for users.","properties":{"id":{"type":"string","readOnly":true},"name":{"type":"string","readOnly":true},"role":{"type":"string","readOnly":true}},"required":["id","name","role"]},"Jukebox":{"type":"object","properties":{"id":{"type":"number"},"name":{"type":"string"},"club_id":{"type":"number"},"link_assignments":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}},"required":["id","name","club_id","link_assignments"]},"SpotifyAccount":{"type":"object","properties":{"id":{"type":"number"},"access_token":{"type":"string"},"refresh_token":{"type":"string"},"user_id":{"type":"number"},"spotify_email":{"type":"string"},"expires_in":{"type":"number"},"expires_at":{"format":"date-time","type":"string"},"token_type":{"type":"string"},"jukebox_assignments":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}},"required":["id","access_token","refresh_token","user_id","spotify_email","expires_in","expires_at","token_type","jukebox_assignments"]},"JukeboxLinkAssignment":{"type":"object","properties":{"jukebox_id":{"type":"number"},"jukebox":{"$ref":"#/components/schemas/Jukebox"},"spotify_link_id":{"type":"number"},"spotify_link":{"$ref":"#/components/schemas/SpotifyAccount"},"active":{"type":"boolean"}},"required":["jukebox_id","jukebox","spotify_link_id","spotify_link","active"]},"CreateJukeboxDto":{"type":"object","properties":{"name":{"type":"string"},"club_id":{"type":"number"}},"required":["name","club_id"]},"JukeboxLinkDto":{"type":"object","properties":{"id":{"type":"number"},"type":{"type":"string"},"email":{"type":"string"},"active":{"type":"boolean"}},"required":["id","type","email","active"]},"JukeboxDto":{"type":"object","properties":{"id":{"type":"number","readOnly":true},"created_at":{"format":"date-time","type":"string","readOnly":true},"updated_at":{"format":"date-time","type":"string","readOnly":true},"name":{"type":"string"},"club_id":{"type":"number"},"links":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkDto"}}},"required":["id","created_at","updated_at","name","club_id","links"]},"UpdateJukeboxDto":{"type":"object","properties":{"name":{"type":"string"}}},"AddJukeboxLinkDto":{"type":"object","properties":{"type":{"type":"string"},"email":{"type":"string"}},"required":["type","email"]}},"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic"},"cookieAuth":{"type":"apiKey","in":"cookie","name":"sessionid"},"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""}}}}},"searchIndex":{"store":["tag/jukeboxes","tag/jukeboxes/operation/JukeboxController_create","tag/jukeboxes/operation/JukeboxController_findAll","tag/jukeboxes/operation/JukeboxController_findOne","tag/jukeboxes/operation/JukeboxController_update","tag/jukeboxes/operation/JukeboxController_remove","tag/jukeboxes/operation/JukeboxController_getJukeboxLinks","tag/jukeboxes/operation/JukeboxController_addLinkToJukebox","tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink","tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink","tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink","tag/spotify","tag/spotify/operation/SpotifyController_login","tag/spotify/operation/SpotifyController_loginSuccessCallback","tag/spotify/operation/SpotifyController_getSpotifyLinks","tag/spotify/operation/SpotifyController_deleteSpotifyLink","tag/club","tag/club/operation/club_clubs_list","tag/club/operation/club_clubs_create","tag/club/operation/club_clubs_members_list","tag/club/operation/club_clubs_members_create","tag/club/operation/club_clubs_members_retrieve","tag/club/operation/club_clubs_members_update","tag/club/operation/club_clubs_members_partial_update","tag/club/operation/club_clubs_members_destroy","tag/club/operation/club_clubs_retrieve","tag/club/operation/club_clubs_update","tag/club/operation/club_clubs_partial_update","tag/club/operation/club_clubs_destroy","tag/schema","tag/schema/operation/schema_club_manager_retrieve","tag/user","tag/user/operation/user_me_retrieve","tag/user/operation/user_me_update","tag/user/operation/user_me_partial_update","tag/user/operation/user_token_create","tag/user/operation/user_users_create_create"],"index":{"version":"2.3.9","fields":["title","description"],"fieldVectors":[["title/0",[0,3.232]],["description/0",[]],["title/1",[1,3.232]],["description/1",[2,3.847]],["title/2",[3,3.232]],["description/2",[2,3.847]],["title/3",[4,3.232]],["description/3",[5,3.372]],["title/4",[6,3.232]],["description/4",[5,3.372]],["title/5",[7,3.232]],["description/5",[5,3.372]],["title/6",[8,3.232]],["description/6",[9,3.847]],["title/7",[10,3.232]],["description/7",[9,3.847]],["title/8",[11,3.232]],["description/8",[12,4.569]],["title/9",[13,3.232]],["description/9",[14,3.847]],["title/10",[15,3.232]],["description/10",[14,3.847]],["title/11",[16,3.232]],["description/11",[]],["title/12",[17,3.232]],["description/12",[18,4.569]],["title/13",[19,3.232]],["description/13",[20,4.569]],["title/14",[21,3.232]],["description/14",[22,4.569]],["title/15",[23,3.232]],["description/15",[24,4.569]],["title/16",[25,1.035]],["description/16",[]],["title/17",[26,3.232]],["description/17",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,31,2.11]],["title/18",[32,3.232]],["description/18",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,31,2.11]],["title/19",[33,3.232]],["description/19",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,36,1.936]],["title/20",[37,3.232]],["description/20",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,36,1.936]],["title/21",[38,3.232]],["description/21",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,39,1.517]],["title/22",[40,3.232]],["description/22",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,39,1.517]],["title/23",[41,3.232]],["description/23",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,39,1.517]],["title/24",[42,3.232]],["description/24",[25,0.736,27,0.791,28,0.736,29,0.791,34,1.256,35,1.256,39,1.517]],["title/25",[43,3.232]],["description/25",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,44,1.655]],["title/26",[45,3.232]],["description/26",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,44,1.655]],["title/27",[46,3.232]],["description/27",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,44,1.655]],["title/28",[47,3.232]],["description/28",[25,0.803,27,0.862,28,0.803,29,0.862,30,1.369,44,1.655]],["title/29",[48,2.721]],["description/29",[]],["title/30",[49,3.232]],["description/30",[28,0.443,48,1.164,50,1.383,51,1.383,52,1.383,53,1.383,54,1.383,55,1.383,56,2.315,57,1.383,58,1.383,59,1.383,60,1.383,61,1.383]],["title/31",[62,1.766]],["description/31",[]],["title/32",[63,3.232]],["description/32",[62,1.671,64,2.257,65,2.257,66,2.257]],["title/33",[67,3.232]],["description/33",[62,1.671,64,2.257,65,2.257,66,2.257]],["title/34",[68,3.232]],["description/34",[62,1.671,64,2.257,65,2.257,66,2.257]],["title/35",[69,3.232]],["description/35",[62,1.369,70,2.11,71,2.11,72,2.506,73,2.506,74,2.506]],["title/36",[75,3.232]],["description/36",[62,1.505,70,2.32,71,2.32,76,2.755,77,2.755]]],"invertedIndex":[["",{"_index":56,"title":{},"description":{"30":{}}}],["api",{"_index":28,"title":{},"description":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"30":{}}}],["api/v1/club/club",{"_index":31,"title":{},"description":{"17":{},"18":{}}}],["api/v1/club/clubs/{club_id}/memb",{"_index":36,"title":{},"description":{"19":{},"20":{}}}],["api/v1/club/clubs/{club_id}/members/{id",{"_index":39,"title":{},"description":{"21":{},"22":{},"23":{},"24":{}}}],["api/v1/club/clubs/{id",{"_index":44,"title":{},"description":{"25":{},"26":{},"27":{},"28":{}}}],["api/v1/jukebox/jukebox",{"_index":2,"title":{},"description":{"1":{},"2":{}}}],["api/v1/jukebox/jukeboxes/{id",{"_index":5,"title":{},"description":{"3":{},"4":{},"5":{}}}],["api/v1/jukebox/{jukebox_id}/active-link",{"_index":14,"title":{},"description":{"9":{},"10":{}}}],["api/v1/jukebox/{jukebox_id}/link",{"_index":9,"title":{},"description":{"6":{},"7":{}}}],["api/v1/jukebox/{jukebox_id}/links/{id",{"_index":12,"title":{},"description":{"8":{}}}],["api/v1/schema/club-manag",{"_index":61,"title":{},"description":{"30":{}}}],["api/v1/spotify/link",{"_index":22,"title":{},"description":{"14":{}}}],["api/v1/spotify/links/{id",{"_index":24,"title":{},"description":{"15":{}}}],["api/v1/spotify/login",{"_index":18,"title":{},"description":{"12":{}}}],["api/v1/spotify/login/success",{"_index":20,"title":{},"description":{"13":{}}}],["api/v1/user/m",{"_index":66,"title":{},"description":{"32":{},"33":{},"34":{}}}],["api/v1/user/token",{"_index":74,"title":{},"description":{"35":{}}}],["api/v1/user/users/cr",{"_index":77,"title":{},"description":{"36":{}}}],["application/vnd.oai.openapi",{"_index":58,"title":{},"description":{"30":{}}}],["application/vnd.oai.openapi+json",{"_index":60,"title":{},"description":{"30":{}}}],["auth",{"_index":72,"title":{},"description":{"35":{}}}],["authent",{"_index":65,"title":{},"description":{"32":{},"33":{},"34":{}}}],["club",{"_index":25,"title":{"16":{}},"description":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{}}}],["club_clubs_cr",{"_index":32,"title":{"18":{}},"description":{}}],["club_clubs_destroy",{"_index":47,"title":{"28":{}},"description":{}}],["club_clubs_list",{"_index":26,"title":{"17":{}},"description":{}}],["club_clubs_members_cr",{"_index":37,"title":{"20":{}},"description":{}}],["club_clubs_members_destroy",{"_index":42,"title":{"24":{}},"description":{}}],["club_clubs_members_list",{"_index":33,"title":{"19":{}},"description":{}}],["club_clubs_members_partial_upd",{"_index":41,"title":{"23":{}},"description":{}}],["club_clubs_members_retriev",{"_index":38,"title":{"21":{}},"description":{}}],["club_clubs_members_upd",{"_index":40,"title":{"22":{}},"description":{}}],["club_clubs_partial_upd",{"_index":46,"title":{"27":{}},"description":{}}],["club_clubs_retriev",{"_index":43,"title":{"25":{}},"description":{}}],["club_clubs_upd",{"_index":45,"title":{"26":{}},"description":{}}],["clubmembership",{"_index":34,"title":{},"description":{"19":{},"20":{},"21":{},"22":{},"23":{},"24":{}}}],["content",{"_index":54,"title":{},"description":{"30":{}}}],["creat",{"_index":70,"title":{},"description":{"35":{},"36":{}}}],["crud",{"_index":27,"title":{},"description":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{}}}],["format",{"_index":51,"title":{},"description":{"30":{}}}],["json",{"_index":59,"title":{},"description":{"30":{}}}],["jukebox",{"_index":0,"title":{"0":{}},"description":{}}],["jukeboxcontroller_addlinktojukebox",{"_index":10,"title":{"7":{}},"description":{}}],["jukeboxcontroller_cr",{"_index":1,"title":{"1":{}},"description":{}}],["jukeboxcontroller_deletejukeboxlink",{"_index":11,"title":{"8":{}},"description":{}}],["jukeboxcontroller_findal",{"_index":3,"title":{"2":{}},"description":{}}],["jukeboxcontroller_findon",{"_index":4,"title":{"3":{}},"description":{}}],["jukeboxcontroller_getactivejukeboxlink",{"_index":13,"title":{"9":{}},"description":{}}],["jukeboxcontroller_getjukeboxlink",{"_index":8,"title":{"6":{}},"description":{}}],["jukeboxcontroller_remov",{"_index":7,"title":{"5":{}},"description":{}}],["jukeboxcontroller_setactivejukeboxlink",{"_index":15,"title":{"10":{}},"description":{}}],["jukeboxcontroller_upd",{"_index":6,"title":{"4":{}},"description":{}}],["manag",{"_index":64,"title":{},"description":{"32":{},"33":{},"34":{}}}],["model",{"_index":30,"title":{},"description":{"17":{},"18":{},"25":{},"26":{},"27":{},"28":{}}}],["negoti",{"_index":55,"title":{},"description":{"30":{}}}],["new",{"_index":71,"title":{},"description":{"35":{},"36":{}}}],["openapi3",{"_index":50,"title":{},"description":{"30":{}}}],["rout",{"_index":29,"title":{},"description":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{}}}],["schema",{"_index":48,"title":{"29":{}},"description":{"30":{}}}],["schema_club_manager_retriev",{"_index":49,"title":{"30":{}},"description":{}}],["select",{"_index":52,"title":{},"description":{"30":{}}}],["specif",{"_index":35,"title":{},"description":{"19":{},"20":{},"21":{},"22":{},"23":{},"24":{}}}],["spotifi",{"_index":16,"title":{"11":{}},"description":{}}],["spotifycontroller_deletespotifylink",{"_index":23,"title":{"15":{}},"description":{}}],["spotifycontroller_getspotifylink",{"_index":21,"title":{"14":{}},"description":{}}],["spotifycontroller_login",{"_index":17,"title":{"12":{}},"description":{}}],["spotifycontroller_loginsuccesscallback",{"_index":19,"title":{"13":{}},"description":{}}],["system",{"_index":76,"title":{},"description":{"36":{}}}],["token",{"_index":73,"title":{},"description":{"35":{}}}],["user",{"_index":62,"title":{"31":{}},"description":{"32":{},"33":{},"34":{},"35":{},"36":{}}}],["user_me_partial_upd",{"_index":68,"title":{"34":{}},"description":{}}],["user_me_retriev",{"_index":63,"title":{"32":{}},"description":{}}],["user_me_upd",{"_index":67,"title":{"33":{}},"description":{}}],["user_token_cr",{"_index":69,"title":{"35":{}},"description":{}}],["user_users_create_cr",{"_index":75,"title":{"36":{}},"description":{}}],["via",{"_index":53,"title":{},"description":{"30":{}}}],["yaml",{"_index":57,"title":{},"description":{"30":{}}}]],"pipeline":[]}},"options":{}};
+      const __redoc_state = {"menu":{"activeItemIdx":-1},"spec":{"data":{"openapi":"3.0.3","info":{"version":"1.0.0","title":"OSC Microservices API"},"servers":[],"tags":[{"name":"jukeboxes","description":""},{"name":"spotify","description":""}],"paths":{"/api/v1/club/clubs/":{"get":{"operationId":"club_clubs_list","description":"CRUD Api routes for Club models.","tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Club"}}}},"description":""}}},"post":{"operationId":"club_clubs_create","description":"CRUD Api routes for Club models.","tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Club"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Club"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}}},"/api/v1/club/clubs/{club_id}/members/":{"get":{"operationId":"club_clubs_members_list","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClubMembership"}}}},"description":""}}},"post":{"operationId":"club_clubs_members_create","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}}},"/api/v1/club/clubs/{club_id}/members/{id}/":{"get":{"operationId":"club_clubs_members_retrieve","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"put":{"operationId":"club_clubs_members_update","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/ClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"patch":{"operationId":"club_clubs_members_partial_update","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedClubMembership"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClubMembership"}}},"description":""}}},"delete":{"operationId":"club_clubs_members_destroy","description":"CRUD Api routes for ClubMembership for a specific Club.","parameters":[{"in":"path","name":"club_id","schema":{"type":"string","pattern":"^.+$"},"required":true},{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club membership.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"204":{"description":"No response body"}}}},"/api/v1/club/clubs/{id}/":{"get":{"operationId":"club_clubs_retrieve","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"put":{"operationId":"club_clubs_update","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Club"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Club"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"patch":{"operationId":"club_clubs_partial_update","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedClub"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedClub"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedClub"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Club"}}},"description":""}}},"delete":{"operationId":"club_clubs_destroy","description":"CRUD Api routes for Club models.","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"description":"A unique integer value identifying this club.","required":true}],"tags":["club"],"security":[{"tokenAuth":[]}],"responses":{"204":{"description":"No response body"}}}},"/api/v1/schema/club-manager":{"get":{"operationId":"schema_club_manager_retrieve","description":"OpenApi3 schema for this API. Format can be selected via content negotiation.\n\n- YAML: application/vnd.oai.openapi\n- JSON: application/vnd.oai.openapi+json","parameters":[{"in":"query","name":"format","schema":{"type":"string","enum":["json","yaml"]}},{"in":"query","name":"lang","schema":{"type":"string","enum":["af","ar","ar-dz","ast","az","be","bg","bn","br","bs","ca","ckb","cs","cy","da","de","dsb","el","en","en-au","en-gb","eo","es","es-ar","es-co","es-mx","es-ni","es-ve","et","eu","fa","fi","fr","fy","ga","gd","gl","he","hi","hr","hsb","hu","hy","ia","id","ig","io","is","it","ja","ka","kab","kk","km","kn","ko","ky","lb","lt","lv","mk","ml","mn","mr","ms","my","nb","ne","nl","nn","os","pa","pl","pt","pt-br","ro","ru","sk","sl","sq","sr","sr-latn","sv","sw","ta","te","tg","th","tk","tr","tt","udm","uk","ur","uz","vi","zh-hans","zh-hant"]}}],"tags":["schema"],"security":[{"cookieAuth":[]},{"basicAuth":[]},{}],"responses":{"200":{"content":{"application/vnd.oai.openapi":{"schema":{"type":"object","additionalProperties":{}}},"application/yaml":{"schema":{"type":"object","additionalProperties":{}}},"application/vnd.oai.openapi+json":{"schema":{"type":"object","additionalProperties":{}}},"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":""}}}},"/api/v1/user/me/":{"get":{"operationId":"user_me_retrieve","description":"Manage the authenticated user.","tags":["user"],"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}},"put":{"operationId":"user_me_update","description":"Manage the authenticated user.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/User"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/User"}}},"required":true},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}},"patch":{"operationId":"user_me_partial_update","description":"Manage the authenticated user.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedUser"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedUser"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedUser"}}}},"security":[{"tokenAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}}},"/api/v1/user/token/":{"post":{"operationId":"user_token_create","description":"Create a new auth token for user.","tags":["user"],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/AuthToken"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/AuthToken"}},"application/json":{"schema":{"$ref":"#/components/schemas/AuthToken"}}},"required":true},"security":[{"cookieAuth":[]},{"basicAuth":[]}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthToken"}}},"description":""}}}},"/api/v1/user/users/create/":{"post":{"operationId":"user_users_create_create","description":"Create a new user in the system.","tags":["user"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/User"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/User"}}},"required":true},"security":[{"cookieAuth":[]},{"basicAuth":[]},{}],"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}},"description":""}}}},"/api/v1/spotify/login":{"get":{"operationId":"SpotifyController_login","parameters":[],"responses":{"200":{"description":""}},"tags":["spotify"]}},"/api/v1/spotify/login/success":{"get":{"operationId":"SpotifyController_loginSuccessCallback","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object"}}}}},"tags":["spotify"]}},"/api/v1/spotify/links":{"get":{"operationId":"SpotifyController_getSpotifyLinks","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SpotifyAccount"}}}}}},"tags":["spotify"]}},"/api/v1/spotify/links/{id}":{"delete":{"operationId":"SpotifyController_deleteSpotifyLink","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["spotify"]}},"/api/v1/jukebox/jukeboxes":{"post":{"operationId":"JukeboxController_create","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateJukeboxDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"get":{"operationId":"JukeboxController_findAll","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxDto"}}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/jukeboxes/{id}":{"get":{"operationId":"JukeboxController_findOne","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"patch":{"operationId":"JukeboxController_update","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateJukeboxDto"}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]},"delete":{"operationId":"JukeboxController_remove","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxDto"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/links":{"get":{"operationId":"JukeboxController_getJukeboxLinks","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkDto"}}}}}},"tags":["jukeboxes"]},"post":{"operationId":"JukeboxController_addLinkToJukebox","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddJukeboxLinkDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxLinkDto"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/links/{id}":{"delete":{"operationId":"JukeboxController_deleteJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}},{"name":"id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/active-link":{"get":{"operationId":"JukeboxController_getActiveJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["jukeboxes"]},"post":{"operationId":"JukeboxController_setActiveJukeboxLink","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddJukeboxLinkDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotifyAccount"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/tracks-queue":{"get":{"operationId":"JukeboxController_getTracksQueue","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"type":"object"}}}}}},"tags":["jukeboxes"]},"post":{"operationId":"JukeboxController_addTrackToQueue","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddTrackToQueueDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"type":"object"}}}}},"tags":["jukeboxes"]}},"/api/v1/jukebox/{jukebox_id}/connect":{"post":{"operationId":"JukeboxController_connectJukeboxPlayer","parameters":[{"name":"jukebox_id","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"201":{"description":""}},"tags":["jukeboxes"]}}},"components":{"schemas":{"AuthToken":{"type":"object","description":"Serialzer for the user auth token","properties":{"email":{"type":"string","format":"email"},"password":{"type":"string"}},"required":["email","password"]},"BlankEnum":{"enum":[""]},"Club":{"type":"object","description":"Convert club model to JSON fields.","properties":{"id":{"type":"integer","readOnly":true},"name":{"type":"string","maxLength":64},"logo":{"type":"string","format":"uri","nullable":true},"members":{"type":"array","items":{"$ref":"#/components/schemas/ClubMemberNested"},"readOnly":true}},"required":["id","members","name"]},"ClubMemberNested":{"type":"object","description":"Represents a user's membership within a club.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer","readOnly":true},"username":{"type":"string","readOnly":true},"owner":{"type":"boolean","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}},"required":["id","owner","user_id","username"]},"ClubMembership":{"type":"object","description":"Represents a club membership to use for CRUD operations.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer"},"club_id":{"type":"integer","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"owner":{"type":"boolean"},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}},"required":["club_id","id","user_id"]},"PatchedClub":{"type":"object","description":"Convert club model to JSON fields.","properties":{"id":{"type":"integer","readOnly":true},"name":{"type":"string","maxLength":64},"logo":{"type":"string","format":"uri","nullable":true},"members":{"type":"array","items":{"$ref":"#/components/schemas/ClubMemberNested"},"readOnly":true}}},"PatchedClubMembership":{"type":"object","description":"Represents a club membership to use for CRUD operations.","properties":{"id":{"type":"integer","readOnly":true},"user_id":{"type":"integer"},"club_id":{"type":"integer","readOnly":true},"role":{"oneOf":[{"$ref":"#/components/schemas/RoleEnum"},{"$ref":"#/components/schemas/BlankEnum"}]},"owner":{"type":"boolean"},"points":{"type":"integer","maximum":2147483647,"minimum":-2147483648}}},"PatchedUser":{"type":"object","description":"Serialzier for the user object.","properties":{"id":{"type":"integer","readOnly":true},"username":{"type":"string"},"email":{"type":"string","format":"email"},"first_name":{"type":"string"},"last_name":{"type":"string"},"password":{"type":"string","writeOnly":true,"maxLength":128,"minLength":5},"clubs":{"type":"array","items":{"$ref":"#/components/schemas/UserClubNested"}}}},"RoleEnum":{"enum":["president","officer","member"],"type":"string","description":"* `president` - President\n* `officer` - Officer\n* `member` - Member"},"User":{"type":"object","description":"Serialzier for the user object.","properties":{"id":{"type":"integer","readOnly":true},"username":{"type":"string"},"email":{"type":"string","format":"email"},"first_name":{"type":"string"},"last_name":{"type":"string"},"password":{"type":"string","writeOnly":true,"maxLength":128,"minLength":5},"clubs":{"type":"array","items":{"$ref":"#/components/schemas/UserClubNested"}}},"required":["email","id","password"]},"UserClubNested":{"type":"object","description":"Represents nested club info for users.","properties":{"id":{"type":"string","readOnly":true},"name":{"type":"string","readOnly":true},"role":{"type":"string","readOnly":true}},"required":["id","name","role"]},"Jukebox":{"type":"object","properties":{"id":{"type":"number"},"name":{"type":"string"},"club_id":{"type":"number"},"link_assignments":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}},"required":["id","name","club_id","link_assignments"]},"SpotifyAccount":{"type":"object","properties":{"id":{"type":"number"},"access_token":{"type":"string"},"refresh_token":{"type":"string"},"user_id":{"type":"number"},"spotify_email":{"type":"string"},"expires_in":{"type":"number"},"expires_at":{"format":"date-time","type":"string"},"token_type":{"type":"string"},"jukebox_assignments":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkAssignment"}}},"required":["id","access_token","refresh_token","user_id","spotify_email","expires_in","expires_at","token_type","jukebox_assignments"]},"JukeboxLinkAssignment":{"type":"object","properties":{"jukebox_id":{"type":"number"},"jukebox":{"$ref":"#/components/schemas/Jukebox"},"spotify_link_id":{"type":"number"},"spotify_link":{"$ref":"#/components/schemas/SpotifyAccount"},"active":{"type":"boolean"}},"required":["jukebox_id","jukebox","spotify_link_id","spotify_link","active"]},"CreateJukeboxDto":{"type":"object","properties":{"name":{"type":"string"},"club_id":{"type":"number"}},"required":["name","club_id"]},"JukeboxLinkDto":{"type":"object","properties":{"id":{"type":"number"},"type":{"type":"string"},"email":{"type":"string"},"active":{"type":"boolean"}},"required":["id","type","email","active"]},"JukeboxDto":{"type":"object","properties":{"id":{"type":"number","readOnly":true},"created_at":{"format":"date-time","type":"string","readOnly":true},"updated_at":{"format":"date-time","type":"string","readOnly":true},"name":{"type":"string"},"club_id":{"type":"number"},"links":{"type":"array","items":{"$ref":"#/components/schemas/JukeboxLinkDto"}}},"required":["id","created_at","updated_at","name","club_id","links"]},"UpdateJukeboxDto":{"type":"object","properties":{"name":{"type":"string"}}},"AddJukeboxLinkDto":{"type":"object","properties":{"type":{"type":"string"},"email":{"type":"string"}},"required":["type","email"]},"AddTrackToQueueDto":{"type":"object","properties":{"track_id":{"type":"string"},"position":{"type":"number"}},"required":["track_id"]}},"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic"},"cookieAuth":{"type":"apiKey","in":"cookie","name":"sessionid"},"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""}}}}},"searchIndex":{"store":["tag/jukeboxes","tag/jukeboxes/operation/JukeboxController_create","tag/jukeboxes/operation/JukeboxController_findAll","tag/jukeboxes/operation/JukeboxController_findOne","tag/jukeboxes/operation/JukeboxController_update","tag/jukeboxes/operation/JukeboxController_remove","tag/jukeboxes/operation/JukeboxController_getJukeboxLinks","tag/jukeboxes/operation/JukeboxController_addLinkToJukebox","tag/jukeboxes/operation/JukeboxController_deleteJukeboxLink","tag/jukeboxes/operation/JukeboxController_getActiveJukeboxLink","tag/jukeboxes/operation/JukeboxController_setActiveJukeboxLink","tag/jukeboxes/operation/JukeboxController_getTracksQueue","tag/jukeboxes/operation/JukeboxController_addTrackToQueue","tag/jukeboxes/operation/JukeboxController_connectJukeboxPlayer","tag/spotify","tag/spotify/operation/SpotifyController_login","tag/spotify/operation/SpotifyController_loginSuccessCallback","tag/spotify/operation/SpotifyController_getSpotifyLinks","tag/spotify/operation/SpotifyController_deleteSpotifyLink","tag/club","tag/club/operation/club_clubs_list","tag/club/operation/club_clubs_create","tag/club/operation/club_clubs_members_list","tag/club/operation/club_clubs_members_create","tag/club/operation/club_clubs_members_retrieve","tag/club/operation/club_clubs_members_update","tag/club/operation/club_clubs_members_partial_update","tag/club/operation/club_clubs_members_destroy","tag/club/operation/club_clubs_retrieve","tag/club/operation/club_clubs_update","tag/club/operation/club_clubs_partial_update","tag/club/operation/club_clubs_destroy","tag/schema","tag/schema/operation/schema_club_manager_retrieve","tag/user","tag/user/operation/user_me_retrieve","tag/user/operation/user_me_update","tag/user/operation/user_me_partial_update","tag/user/operation/user_token_create","tag/user/operation/user_users_create_create"],"index":{"version":"2.3.9","fields":["title","description"],"fieldVectors":[["title/0",[0,3.308]],["description/0",[]],["title/1",[1,3.308]],["description/1",[2,3.918]],["title/2",[3,3.308]],["description/2",[2,3.918]],["title/3",[4,3.308]],["description/3",[5,3.447]],["title/4",[6,3.308]],["description/4",[5,3.447]],["title/5",[7,3.308]],["description/5",[5,3.447]],["title/6",[8,3.308]],["description/6",[9,3.918]],["title/7",[10,3.308]],["description/7",[9,3.918]],["title/8",[11,3.308]],["description/8",[12,4.634]],["title/9",[13,3.308]],["description/9",[14,3.918]],["title/10",[15,3.308]],["description/10",[14,3.918]],["title/11",[16,3.308]],["description/11",[17,3.918]],["title/12",[18,3.308]],["description/12",[17,3.918]],["title/13",[19,3.308]],["description/13",[20,4.634]],["title/14",[21,3.308]],["description/14",[]],["title/15",[22,3.308]],["description/15",[23,4.634]],["title/16",[24,3.308]],["description/16",[25,4.634]],["title/17",[26,3.308]],["description/17",[27,4.634]],["title/18",[28,3.308]],["description/18",[29,4.634]],["title/19",[30,1.111]],["description/19",[]],["title/20",[31,3.308]],["description/20",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,36,2.105]],["title/21",[37,3.308]],["description/21",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,36,2.105]],["title/22",[38,3.308]],["description/22",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,41,1.926]],["title/23",[42,3.308]],["description/23",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,41,1.926]],["title/24",[43,3.308]],["description/24",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,44,1.522]],["title/25",[45,3.308]],["description/25",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,44,1.522]],["title/26",[46,3.308]],["description/26",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,44,1.522]],["title/27",[47,3.308]],["description/27",[30,0.765,32,0.818,33,0.765,34,0.818,39,1.268,40,1.268,44,1.522]],["title/28",[48,3.308]],["description/28",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,49,1.662]],["title/29",[50,3.308]],["description/29",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,49,1.662]],["title/30",[51,3.308]],["description/30",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,49,1.662]],["title/31",[52,3.308]],["description/31",[30,0.836,32,0.894,33,0.836,34,0.894,35,1.386,49,1.662]],["title/32",[53,2.797]],["description/32",[]],["title/33",[54,3.308]],["description/33",[33,0.456,53,1.148,55,1.358,56,1.358,57,1.358,58,1.358,59,1.358,60,1.358,61,2.289,62,1.358,63,1.358,64,1.358,65,1.358,66,1.358]],["title/34",[67,1.842]],["description/34",[]],["title/35",[68,3.308]],["description/35",[67,1.701,69,2.272,70,2.272,71,2.272]],["title/36",[72,3.308]],["description/36",[67,1.701,69,2.272,70,2.272,71,2.272]],["title/37",[73,3.308]],["description/37",[67,1.701,69,2.272,70,2.272,71,2.272]],["title/38",[74,3.308]],["description/38",[67,1.386,75,2.105,76,2.105,77,2.489,78,2.489,79,2.489]],["title/39",[80,3.308]],["description/39",[67,1.527,75,2.319,76,2.319,81,2.743,82,2.743]]],"invertedIndex":[["",{"_index":61,"title":{},"description":{"33":{}}}],["api",{"_index":33,"title":{},"description":{"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"33":{}}}],["api/v1/club/club",{"_index":36,"title":{},"description":{"20":{},"21":{}}}],["api/v1/club/clubs/{club_id}/memb",{"_index":41,"title":{},"description":{"22":{},"23":{}}}],["api/v1/club/clubs/{club_id}/members/{id",{"_index":44,"title":{},"description":{"24":{},"25":{},"26":{},"27":{}}}],["api/v1/club/clubs/{id",{"_index":49,"title":{},"description":{"28":{},"29":{},"30":{},"31":{}}}],["api/v1/jukebox/jukebox",{"_index":2,"title":{},"description":{"1":{},"2":{}}}],["api/v1/jukebox/jukeboxes/{id",{"_index":5,"title":{},"description":{"3":{},"4":{},"5":{}}}],["api/v1/jukebox/{jukebox_id}/active-link",{"_index":14,"title":{},"description":{"9":{},"10":{}}}],["api/v1/jukebox/{jukebox_id}/connect",{"_index":20,"title":{},"description":{"13":{}}}],["api/v1/jukebox/{jukebox_id}/link",{"_index":9,"title":{},"description":{"6":{},"7":{}}}],["api/v1/jukebox/{jukebox_id}/links/{id",{"_index":12,"title":{},"description":{"8":{}}}],["api/v1/jukebox/{jukebox_id}/tracks-queu",{"_index":17,"title":{},"description":{"11":{},"12":{}}}],["api/v1/schema/club-manag",{"_index":66,"title":{},"description":{"33":{}}}],["api/v1/spotify/link",{"_index":27,"title":{},"description":{"17":{}}}],["api/v1/spotify/links/{id",{"_index":29,"title":{},"description":{"18":{}}}],["api/v1/spotify/login",{"_index":23,"title":{},"description":{"15":{}}}],["api/v1/spotify/login/success",{"_index":25,"title":{},"description":{"16":{}}}],["api/v1/user/m",{"_index":71,"title":{},"description":{"35":{},"36":{},"37":{}}}],["api/v1/user/token",{"_index":79,"title":{},"description":{"38":{}}}],["api/v1/user/users/cr",{"_index":82,"title":{},"description":{"39":{}}}],["application/vnd.oai.openapi",{"_index":63,"title":{},"description":{"33":{}}}],["application/vnd.oai.openapi+json",{"_index":65,"title":{},"description":{"33":{}}}],["auth",{"_index":77,"title":{},"description":{"38":{}}}],["authent",{"_index":70,"title":{},"description":{"35":{},"36":{},"37":{}}}],["club",{"_index":30,"title":{"19":{}},"description":{"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{}}}],["club_clubs_cr",{"_index":37,"title":{"21":{}},"description":{}}],["club_clubs_destroy",{"_index":52,"title":{"31":{}},"description":{}}],["club_clubs_list",{"_index":31,"title":{"20":{}},"description":{}}],["club_clubs_members_cr",{"_index":42,"title":{"23":{}},"description":{}}],["club_clubs_members_destroy",{"_index":47,"title":{"27":{}},"description":{}}],["club_clubs_members_list",{"_index":38,"title":{"22":{}},"description":{}}],["club_clubs_members_partial_upd",{"_index":46,"title":{"26":{}},"description":{}}],["club_clubs_members_retriev",{"_index":43,"title":{"24":{}},"description":{}}],["club_clubs_members_upd",{"_index":45,"title":{"25":{}},"description":{}}],["club_clubs_partial_upd",{"_index":51,"title":{"30":{}},"description":{}}],["club_clubs_retriev",{"_index":48,"title":{"28":{}},"description":{}}],["club_clubs_upd",{"_index":50,"title":{"29":{}},"description":{}}],["clubmembership",{"_index":39,"title":{},"description":{"22":{},"23":{},"24":{},"25":{},"26":{},"27":{}}}],["content",{"_index":59,"title":{},"description":{"33":{}}}],["creat",{"_index":75,"title":{},"description":{"38":{},"39":{}}}],["crud",{"_index":32,"title":{},"description":{"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{}}}],["format",{"_index":56,"title":{},"description":{"33":{}}}],["json",{"_index":64,"title":{},"description":{"33":{}}}],["jukebox",{"_index":0,"title":{"0":{}},"description":{}}],["jukeboxcontroller_addlinktojukebox",{"_index":10,"title":{"7":{}},"description":{}}],["jukeboxcontroller_addtracktoqueu",{"_index":18,"title":{"12":{}},"description":{}}],["jukeboxcontroller_connectjukeboxplay",{"_index":19,"title":{"13":{}},"description":{}}],["jukeboxcontroller_cr",{"_index":1,"title":{"1":{}},"description":{}}],["jukeboxcontroller_deletejukeboxlink",{"_index":11,"title":{"8":{}},"description":{}}],["jukeboxcontroller_findal",{"_index":3,"title":{"2":{}},"description":{}}],["jukeboxcontroller_findon",{"_index":4,"title":{"3":{}},"description":{}}],["jukeboxcontroller_getactivejukeboxlink",{"_index":13,"title":{"9":{}},"description":{}}],["jukeboxcontroller_getjukeboxlink",{"_index":8,"title":{"6":{}},"description":{}}],["jukeboxcontroller_gettracksqueu",{"_index":16,"title":{"11":{}},"description":{}}],["jukeboxcontroller_remov",{"_index":7,"title":{"5":{}},"description":{}}],["jukeboxcontroller_setactivejukeboxlink",{"_index":15,"title":{"10":{}},"description":{}}],["jukeboxcontroller_upd",{"_index":6,"title":{"4":{}},"description":{}}],["manag",{"_index":69,"title":{},"description":{"35":{},"36":{},"37":{}}}],["model",{"_index":35,"title":{},"description":{"20":{},"21":{},"28":{},"29":{},"30":{},"31":{}}}],["negoti",{"_index":60,"title":{},"description":{"33":{}}}],["new",{"_index":76,"title":{},"description":{"38":{},"39":{}}}],["openapi3",{"_index":55,"title":{},"description":{"33":{}}}],["rout",{"_index":34,"title":{},"description":{"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{}}}],["schema",{"_index":53,"title":{"32":{}},"description":{"33":{}}}],["schema_club_manager_retriev",{"_index":54,"title":{"33":{}},"description":{}}],["select",{"_index":57,"title":{},"description":{"33":{}}}],["specif",{"_index":40,"title":{},"description":{"22":{},"23":{},"24":{},"25":{},"26":{},"27":{}}}],["spotifi",{"_index":21,"title":{"14":{}},"description":{}}],["spotifycontroller_deletespotifylink",{"_index":28,"title":{"18":{}},"description":{}}],["spotifycontroller_getspotifylink",{"_index":26,"title":{"17":{}},"description":{}}],["spotifycontroller_login",{"_index":22,"title":{"15":{}},"description":{}}],["spotifycontroller_loginsuccesscallback",{"_index":24,"title":{"16":{}},"description":{}}],["system",{"_index":81,"title":{},"description":{"39":{}}}],["token",{"_index":78,"title":{},"description":{"38":{}}}],["user",{"_index":67,"title":{"34":{}},"description":{"35":{},"36":{},"37":{},"38":{},"39":{}}}],["user_me_partial_upd",{"_index":73,"title":{"37":{}},"description":{}}],["user_me_retriev",{"_index":68,"title":{"35":{}},"description":{}}],["user_me_upd",{"_index":72,"title":{"36":{}},"description":{}}],["user_token_cr",{"_index":74,"title":{"38":{}},"description":{}}],["user_users_create_cr",{"_index":80,"title":{"39":{}},"description":{}}],["via",{"_index":58,"title":{},"description":{"33":{}}}],["yaml",{"_index":62,"title":{},"description":{"33":{}}}]],"pipeline":[]}},"options":{}};
 
       var container = document.getElementById('redoc');
       Redoc.hydrate(__redoc_state, container);
diff --git a/proxy/api/output.swagger.yml b/proxy/api/output.swagger.yml
index 1872e25..4d63817 100644
--- a/proxy/api/output.swagger.yml
+++ b/proxy/api/output.swagger.yml
@@ -865,6 +865,63 @@ paths:
                 $ref: '#/components/schemas/SpotifyAccount'
       tags:
         - jukeboxes
+  '/api/v1/jukebox/{jukebox_id}/tracks-queue':
+    get:
+      operationId: JukeboxController_getTracksQueue
+      parameters:
+        - name: jukebox_id
+          required: true
+          in: path
+          schema:
+            type: number
+      responses:
+        '200':
+          description: ''
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  type: object
+      tags:
+        - jukeboxes
+    post:
+      operationId: JukeboxController_addTrackToQueue
+      parameters:
+        - name: jukebox_id
+          required: true
+          in: path
+          schema:
+            type: number
+      requestBody:
+        required: true
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/AddTrackToQueueDto'
+      responses:
+        '201':
+          description: ''
+          content:
+            application/json:
+              schema:
+                type: object
+      tags:
+        - jukeboxes
+  '/api/v1/jukebox/{jukebox_id}/connect':
+    post:
+      operationId: JukeboxController_connectJukeboxPlayer
+      parameters:
+        - name: jukebox_id
+          required: true
+          in: path
+          schema:
+            type: number
+      responses:
+        '201':
+          description: ''
+      tags:
+        - jukeboxes
 components:
   schemas:
     AuthToken:
@@ -1223,6 +1280,15 @@ components:
       required:
         - type
         - email
+    AddTrackToQueueDto:
+      type: object
+      properties:
+        track_id:
+          type: string
+        position:
+          type: number
+      required:
+        - track_id
   securitySchemes:
     basicAuth:
       type: http
diff --git a/sample.env b/sample.env
index 4cc03c0..53e41a3 100644
--- a/sample.env
+++ b/sample.env
@@ -1,20 +1,5 @@
 # Environment Variables
 
-## Spotify - Required
-SP_ID=changeme
-SP_SECRET=changeme
-
-## Spotify - Optional
-SP_URI=http://localhost:8000/spotify-login-callback
-
-## Node - Optional
-PORT=8000
-HOST=127.0.0.1
-
-## Mongo - Optional
-MONGO_HOST=mongo
-MONGO_PORT=27017
-MONGO_DB=db
-MONGO_USER=root
-MONGO_PASSWORD=password
+SPOTIFY_CLIENT_ID="example"
+SPOTIFY_CLIENT_SECRET="another-example"
 
diff --git a/src/app.gateway.ts b/src/app.gateway.ts
index 5e2ff30..7cb5125 100644
--- a/src/app.gateway.ts
+++ b/src/app.gateway.ts
@@ -1,10 +1,12 @@
-import { SubscribeMessage, WebSocketGateway } from '@nestjs/websockets'
+import { WebSocketGateway, WebSocketServer } from '@nestjs/websockets'
+import { Server } from 'socket.io'
+import { TrackStateUpdateDto } from './jukebox/dto/track-player-state.dto'
 
 @WebSocketGateway()
 export class AppGateway {
-  @SubscribeMessage('message')
-  handleMessage(client: any, payload: any): string {
-    console.log('websocket payload:', payload)
-    return 'Hello world!'
+  @WebSocketServer() server: Server
+
+  public emitTrackStateUpdate(payload: TrackStateUpdateDto) {
+    this.server.emit('track-state-update', payload)
   }
 }
diff --git a/src/app.module.ts b/src/app.module.ts
index e30d8c8..7c01700 100644
--- a/src/app.module.ts
+++ b/src/app.module.ts
@@ -1,21 +1,22 @@
+import { CacheModule } from '@nestjs/cache-manager'
 import { Module } from '@nestjs/common'
 import { ConfigModule } from '@nestjs/config'
 import { APP_INTERCEPTOR } from '@nestjs/core'
 import { AppGateway } from './app.gateway'
 import { AppService } from './app.service'
 import { AuthInterceptor } from './auth/auth.interceptor'
+import { CacheOptions } from './config/cache-options'
 import { DatabaseModule } from './config/database.module'
 import { JukeboxModule } from './jukebox/jukebox.module'
+import { TrackQueueModule } from './jukebox/track-queue/track-queue.module'
 import { NetworkModule } from './network/network.module'
 import { SpotifyModule } from './spotify/spotify.module'
-import { TrackQueueModule } from './jukebox/track-queue/track-queue.module'
 import { AxiosProvider } from './utils/providers/axios.provider'
 
 @Module({
   imports: [
-    ConfigModule.forRoot(),
-    // MongooseModule.forRoot(MONGO_URI),
-    // TypeOrmModule.forRoot(),
+    ConfigModule.forRoot({ isGlobal: true }),
+    CacheModule.registerAsync(CacheOptions),
     DatabaseModule,
     SpotifyModule,
     TrackQueueModule,
diff --git a/src/config/cache-options.ts b/src/config/cache-options.ts
new file mode 100644
index 0000000..28526fa
--- /dev/null
+++ b/src/config/cache-options.ts
@@ -0,0 +1,20 @@
+import { CacheModuleAsyncOptions } from '@nestjs/cache-manager'
+import { ConfigModule, ConfigService } from '@nestjs/config'
+import { redisStore } from 'cache-manager-redis-store'
+
+export const CacheOptions: CacheModuleAsyncOptions = {
+  isGlobal: true,
+  imports: [ConfigModule],
+  useFactory: async (configService: ConfigService) => {
+    const store = await redisStore({
+      socket: {
+        host: configService.get<string>('REDIS_HOST'),
+        port: parseInt(configService.get<string>('REDIS_PORT')!),
+      },
+    })
+    return {
+      store: () => store,
+    }
+  },
+  inject: [ConfigService],
+}
diff --git a/src/jukebox/dto/track-player-state.dto.ts b/src/jukebox/dto/track-player-state.dto.ts
new file mode 100644
index 0000000..7683a5c
--- /dev/null
+++ b/src/jukebox/dto/track-player-state.dto.ts
@@ -0,0 +1,11 @@
+export class TrackStateUpdateDto implements ITrackStateUpdate {
+  current_track?: ITrack
+  next_tracks?: ITrack[]
+  jukebox_id: number
+}
+
+export class PlayerUpdateDto implements IPlayerUpdate {
+  
+  current_track?: ITrack
+  jukebox_id: number
+}
diff --git a/src/jukebox/jukebox.controller.ts b/src/jukebox/jukebox.controller.ts
index 8ce2361..6cc34b0 100644
--- a/src/jukebox/jukebox.controller.ts
+++ b/src/jukebox/jukebox.controller.ts
@@ -9,37 +9,44 @@ import {
   Post,
 } from '@nestjs/common'
 import { ApiTags } from '@nestjs/swagger'
+import { AppGateway } from 'src/app.gateway'
+import { SpotifyService } from 'src/spotify/spotify.service'
 import { CurrentUser } from '../auth/current-user.decorator'
-import { SpotifyService } from '../spotify/spotify.service'
+import { SpotifyAuthService } from '../spotify/spotify-auth.service'
 import { AddJukeboxLinkDto } from './dto/add-jukebox-link.dto'
 import { CreateJukeboxDto } from './dto/create-jukebox.dto'
 import { JukeboxDto, JukeboxLinkDto } from './dto/jukebox.dto'
 import { UpdateJukeboxDto } from './dto/update-jukebox.dto'
 import { JukeboxService } from './jukebox.service'
+import { AddTrackToQueueDto } from './track-queue/dtos/track-queue.dto'
+import { TrackQueueService } from './track-queue/track-queue.service'
 
 @ApiTags('jukeboxes')
 @Controller('jukebox/')
 export class JukeboxController {
   constructor(
-    private readonly jukeboxService: JukeboxService,
-    private spotifyService: SpotifyService,
+    private readonly jukeboxSvc: JukeboxService,
+    private spotifyAuthSvc: SpotifyAuthService,
+    private spotifySvc: SpotifyService,
+    private queueSvc: TrackQueueService,
+    private appGateway: AppGateway,
   ) {}
 
   @Post('jukeboxes/')
   async create(@Body() createJukeboxDto: CreateJukeboxDto): Promise<JukeboxDto> {
-    const jbx = await this.jukeboxService.create(createJukeboxDto)
+    const jbx = await this.jukeboxSvc.create(createJukeboxDto)
     return jbx.serialize()
   }
 
   @Get('jukeboxes/')
   async findAll(): Promise<JukeboxDto[]> {
-    const jbxs = await this.jukeboxService.findAll()
+    const jbxs = await this.jukeboxSvc.findAll()
     return jbxs.map((jbx) => jbx.serialize())
   }
 
   @Get('jukeboxes/:id/')
   async findOne(@Param('id') id: number): Promise<JukeboxDto> {
-    const jbx = await this.jukeboxService.findOne(id)
+    const jbx = await this.jukeboxSvc.findOne(id)
     return jbx.serialize()
   }
 
@@ -48,19 +55,19 @@ export class JukeboxController {
     @Param('id') id: number,
     @Body() updateJukeboxDto: UpdateJukeboxDto,
   ): Promise<JukeboxDto> {
-    const jbx = await this.jukeboxService.update(id, updateJukeboxDto)
+    const jbx = await this.jukeboxSvc.update(id, updateJukeboxDto)
     return jbx.serialize()
   }
 
   @Delete('jukeboxes/:id/')
   async remove(@Param('id') id: number): Promise<JukeboxDto> {
-    const jbx = await this.jukeboxService.remove(id)
+    const jbx = await this.jukeboxSvc.remove(id)
     return jbx.serialize()
   }
 
   @Get('/:jukebox_id/links/')
   getJukeboxLinks(@Param('jukebox_id') jukeboxId: number): Promise<JukeboxLinkDto[]> {
-    return this.jukeboxService.getJukeboxLinks(jukeboxId)
+    return this.jukeboxSvc.getJukeboxLinks(jukeboxId)
   }
 
   @Post('/:jukebox_id/links/')
@@ -69,7 +76,7 @@ export class JukeboxController {
     @Param('jukebox_id') jukeboxId: number,
     @Body() jukeboxLink: AddJukeboxLinkDto,
   ): Promise<JukeboxLinkDto> {
-    const link = await this.spotifyService.findOneUserLink(user.id, jukeboxLink.email)
+    const link = await this.spotifyAuthSvc.findOneUserAccount(user.id, jukeboxLink.email)
 
     if (!link) {
       throw new NotFoundException(
@@ -77,23 +84,23 @@ export class JukeboxController {
       )
     }
 
-    return await this.jukeboxService.addLinkToJukebox(jukeboxId, link)
+    return await this.jukeboxSvc.addLinkToJukebox(jukeboxId, link)
   }
 
   @Delete('/:jukebox_id/links/:id/')
   async deleteJukeboxLink(@Param('jukebox_id') jukeboxId: number, @Param('id') linkId: number) {
-    const link = await this.jukeboxService.removeJukeboxLink(jukeboxId, linkId)
+    const link = await this.jukeboxSvc.removeJukeboxLink(jukeboxId, linkId)
     return link
   }
 
   @Get('/:jukebox_id/active-link/')
   async getActiveJukeboxLink(@Param('jukebox_id') jukeboxId: number) {
-    const link = await this.jukeboxService.getJukeboxActiveSpotifyLink(jukeboxId)
+    const link = await this.jukeboxSvc.getActiveSpotifyAccount(jukeboxId)
     if (!link) {
       return
     }
 
-    const refreshed = await this.spotifyService.refreshSpotifyLink(link)
+    const refreshed = await this.spotifyAuthSvc.refreshSpotifyAccount(link)
     return refreshed
   }
 
@@ -102,9 +109,42 @@ export class JukeboxController {
     @Param('jukebox_id') jukeboxId: number,
     @Body() jukeboxLink: AddJukeboxLinkDto,
   ) {
-    const link = await this.jukeboxService.findJukeboxLink(jukeboxId, jukeboxLink)
-    const activeLink = await this.jukeboxService.setActiveLink(jukeboxId, link.id)
+    const link = await this.jukeboxSvc.findJukeboxLink(jukeboxId, jukeboxLink)
+    const activeLink = await this.jukeboxSvc.setActiveLink(jukeboxId, link.id)
 
-    return await this.spotifyService.refreshSpotifyLink(activeLink.spotify_link)
+    return await this.spotifyAuthSvc.refreshSpotifyAccount(activeLink.spotify_link)
+  }
+
+  @Get('/:jukebox_id/tracks-queue/')
+  async getTracksQueue(@Param('jukebox_id') jukeboxId: number) {
+    return this.queueSvc.listTracks(jukeboxId)
+  }
+
+  @Post('/:jukebox_id/tracks-queue')
+  async addTrackToQueue(@Param('jukebox_id') jukeboxId: number, @Body() track: AddTrackToQueueDto) {
+    const account = await this.jukeboxSvc.getActiveSpotifyAccount(jukeboxId)
+    const trackItem = await this.spotifySvc.getTrack(account, track.track_id)
+
+    await this.queueSvc.queueTrack(jukeboxId, trackItem, track.position)
+    const nextTracks = await this.queueSvc.listTracks(jukeboxId)
+
+    if (nextTracks.length === 1) {
+      await this.spotifySvc.queueTrack(account, trackItem)
+    }
+
+    this.appGateway.emitTrackStateUpdate({ jukebox_id: jukeboxId, next_tracks: nextTracks })
+
+    return trackItem
+  }
+
+  @Post('/:jukebox_id/connect/')
+  async connectJukeboxPlayer(
+    @Param('jukebox_id') jukeboxId: number,
+    @Body() body: { device_id: string },
+  ) {
+    const account = await this.jukeboxSvc.getActiveSpotifyAccount(jukeboxId)
+    await this.spotifySvc.setPlayerDevice(account, body.device_id)
+
+    return
   }
 }
diff --git a/src/jukebox/jukebox.gateway.ts b/src/jukebox/jukebox.gateway.ts
new file mode 100644
index 0000000..a2c0562
--- /dev/null
+++ b/src/jukebox/jukebox.gateway.ts
@@ -0,0 +1,44 @@
+import { SubscribeMessage, WebSocketGateway, WebSocketServer } from '@nestjs/websockets'
+import { Server, Socket } from 'socket.io'
+import { AppGateway } from 'src/app.gateway'
+import { SpotifyService } from 'src/spotify/spotify.service'
+import { PlayerUpdateDto } from './dto/track-player-state.dto'
+import { JukeboxService } from './jukebox.service'
+import { TrackQueueService } from './track-queue/track-queue.service'
+
+@WebSocketGateway()
+export class JukeboxGateway {
+  constructor(
+    private queueSvc: TrackQueueService,
+    private jukeboxSvc: JukeboxService,
+    private spotifySvc: SpotifyService,
+    private appGateway: AppGateway,
+  ) {}
+
+  @WebSocketServer() server: Server
+
+  @SubscribeMessage('player-update')
+  async handleQueueNextTrack(client: Socket, payload: PlayerUpdateDto) {
+    const { current_track, jukebox_id } = payload
+
+    // Remove top track, either it's playing or was skipped
+    await this.queueSvc.popTrack(jukebox_id)
+    
+    // Look at the next track, queue it up in Spotify
+    const nextTrack = await this.queueSvc.peekTrack(jukebox_id)
+    const queuedTracks = await this.queueSvc.listTracks(jukebox_id)
+
+    this.appGateway.emitTrackStateUpdate({
+      current_track,
+      next_tracks: queuedTracks,
+      jukebox_id,
+    })
+
+    if (!nextTrack) {
+      return
+    }
+
+    const account = await this.jukeboxSvc.getActiveSpotifyAccount(jukebox_id)
+    this.spotifySvc.queueTrack(account, nextTrack)
+  }
+}
diff --git a/src/jukebox/jukebox.module.ts b/src/jukebox/jukebox.module.ts
index 49a7448..22bfeb3 100644
--- a/src/jukebox/jukebox.module.ts
+++ b/src/jukebox/jukebox.module.ts
@@ -5,10 +5,12 @@ import { Jukebox, JukeboxLinkAssignment } from './entities/jukebox.entity'
 import { JukeboxController } from './jukebox.controller'
 import { JukeboxService } from './jukebox.service'
 import { TrackQueueService } from './track-queue/track-queue.service'
+import { JukeboxGateway } from './jukebox.gateway';
+import { AppGateway } from 'src/app.gateway'
 
 @Module({
   controllers: [JukeboxController],
-  providers: [JukeboxService, TrackQueueService],
+  providers: [JukeboxService, TrackQueueService, JukeboxGateway, AppGateway],
   imports: [
     TypeOrmModule.forFeature([Jukebox, JukeboxLinkAssignment]),
     SpotifyModule,
diff --git a/src/jukebox/jukebox.service.ts b/src/jukebox/jukebox.service.ts
index 721faf3..bbf2f4b 100644
--- a/src/jukebox/jukebox.service.ts
+++ b/src/jukebox/jukebox.service.ts
@@ -135,7 +135,7 @@ export class JukeboxService {
     return assignment.serialize()
   }
 
-  async getJukeboxActiveSpotifyLink(jukeboxId: number): Promise<SpotifyAccount | undefined> {
+  async getActiveSpotifyAccount(jukeboxId: number): Promise<SpotifyAccount | undefined> {
     const jukebox = await this.findOne(jukeboxId)
     const assignment = jukebox.link_assignments.find((lnk) => lnk.active)
 
diff --git a/src/jukebox/tests/jukebox.controller.spec.ts b/src/jukebox/tests/jukebox.controller.spec.ts
index c81b589..2f7996c 100644
--- a/src/jukebox/tests/jukebox.controller.spec.ts
+++ b/src/jukebox/tests/jukebox.controller.spec.ts
@@ -1,44 +1,45 @@
 import type { TestingModule } from '@nestjs/testing'
 import { Test } from '@nestjs/testing'
 import { getRepositoryToken } from '@nestjs/typeorm'
+import { AppGateway } from 'src/app.gateway'
 import { NetworkModule } from 'src/network/network.module'
 import { SpotifyAccount } from 'src/spotify/entities/spotify-account.entity'
+import { SpotifyAuthService } from 'src/spotify/spotify-auth.service'
 import { SpotifyService } from 'src/spotify/spotify.service'
-import type { MockType } from 'src/utils'
+import { mockCache, mockRepo, type MockType } from 'src/utils'
 import { AxiosProvider } from 'src/utils/providers/axios.provider'
 import type { Repository } from 'typeorm'
 import { Jukebox, JukeboxLinkAssignment } from '../entities/jukebox.entity'
 import { JukeboxController } from '../jukebox.controller'
 import { JukeboxService } from '../jukebox.service'
+import { TrackQueueService } from '../track-queue/track-queue.service'
 
 describe('JukeboxController', () => {
   let controller: JukeboxController
 
   beforeEach(async () => {
-    const mockRepo: () => MockType<Repository<Jukebox>> = jest.fn(() => ({}))
-    const mockAssignmentRepo: () => MockType<Repository<JukeboxLinkAssignment>> = jest.fn(
-      () => ({}),
-    )
-    const mockSpotifyLinkRepo: () => MockType<Repository<SpotifyAccount>> = jest.fn(() => ({}))
-
     const module: TestingModule = await Test.createTestingModule({
       imports: [NetworkModule],
       controllers: [JukeboxController],
       providers: [
         AxiosProvider,
-        SpotifyService,
+        SpotifyAuthService,
         JukeboxService,
+        SpotifyService,
+        TrackQueueService,
+        AppGateway,
+        mockCache,
         {
           provide: getRepositoryToken(Jukebox),
-          useFactory: mockRepo,
+          useFactory: mockRepo<Jukebox>,
         },
         {
           provide: getRepositoryToken(JukeboxLinkAssignment),
-          useFactory: mockAssignmentRepo,
+          useFactory: mockRepo<JukeboxLinkAssignment>,
         },
         {
           provide: getRepositoryToken(SpotifyAccount),
-          useFactory: mockSpotifyLinkRepo,
+          useFactory: mockRepo<SpotifyAccount>,
         },
       ],
     }).compile()
diff --git a/src/jukebox/tests/jukebox.gateway.spec.ts b/src/jukebox/tests/jukebox.gateway.spec.ts
new file mode 100644
index 0000000..8850eca
--- /dev/null
+++ b/src/jukebox/tests/jukebox.gateway.spec.ts
@@ -0,0 +1,40 @@
+import { Test, TestingModule } from '@nestjs/testing'
+import { getRepositoryToken } from '@nestjs/typeorm'
+import { AppGateway } from 'src/app.gateway'
+import { SpotifyService } from 'src/spotify/spotify.service'
+import { mockCache, mockRepo } from 'src/utils'
+import { Jukebox, JukeboxLinkAssignment } from '../entities/jukebox.entity'
+import { JukeboxGateway } from '../jukebox.gateway'
+import { JukeboxService } from '../jukebox.service'
+import { TrackQueueService } from '../track-queue/track-queue.service'
+
+describe('JukeboxGateway', () => {
+  let gateway: JukeboxGateway
+
+  beforeEach(async () => {
+    const module: TestingModule = await Test.createTestingModule({
+      providers: [
+        JukeboxGateway,
+        TrackQueueService,
+        JukeboxService,
+        SpotifyService,
+        AppGateway,
+        mockCache,
+        {
+          provide: getRepositoryToken(Jukebox),
+          useFactory: mockRepo<Jukebox>,
+        },
+        {
+          provide: getRepositoryToken(JukeboxLinkAssignment),
+          useFactory: mockRepo<JukeboxLinkAssignment>,
+        },
+      ],
+    }).compile()
+
+    gateway = module.get<JukeboxGateway>(JukeboxGateway)
+  })
+
+  it('should be defined', () => {
+    expect(gateway).toBeDefined()
+  })
+})
diff --git a/src/jukebox/track-queue/dtos/track-queue.dto.ts b/src/jukebox/track-queue/dtos/track-queue.dto.ts
new file mode 100644
index 0000000..58f6c38
--- /dev/null
+++ b/src/jukebox/track-queue/dtos/track-queue.dto.ts
@@ -0,0 +1,15 @@
+import { ApiProperty } from '@nestjs/swagger'
+import { IsOptional } from 'class-validator'
+
+export class QueueNextTrackDto {
+  jukebox_id: number
+}
+
+export class AddTrackToQueueDto {
+  @ApiProperty()
+  track_id: string
+
+  @ApiProperty()
+  @IsOptional()
+  position?: number
+}
diff --git a/src/jukebox/track-queue/tests/track-queue.service.spec.ts b/src/jukebox/track-queue/tests/track-queue.service.spec.ts
index 6434ae5..7d9b736 100644
--- a/src/jukebox/track-queue/tests/track-queue.service.spec.ts
+++ b/src/jukebox/track-queue/tests/track-queue.service.spec.ts
@@ -1,5 +1,6 @@
 import type { TestingModule } from '@nestjs/testing'
 import { Test } from '@nestjs/testing'
+import { mockCache } from 'src/utils'
 import { TrackQueueService } from '../track-queue.service'
 
 describe('TrackQueueService', () => {
@@ -7,7 +8,7 @@ describe('TrackQueueService', () => {
 
   beforeEach(async () => {
     const module: TestingModule = await Test.createTestingModule({
-      providers: [TrackQueueService],
+      providers: [TrackQueueService, mockCache],
     }).compile()
 
     service = module.get<TrackQueueService>(TrackQueueService)
diff --git a/src/jukebox/track-queue/tests/trackQueue.spec.ts b/src/jukebox/track-queue/tests/trackQueue.spec.ts
index 06b8ec2..005cf04 100644
--- a/src/jukebox/track-queue/tests/trackQueue.spec.ts
+++ b/src/jukebox/track-queue/tests/trackQueue.spec.ts
@@ -1,5 +1,5 @@
-import { TrackQueue } from '../track-queue.service'
 import type { Track } from '@spotify/web-api-ts-sdk'
+import { TrackQueue } from '../track-queue.service'
 
 // describe('TrackQueue Tests', () => {
 let queue: TrackQueue
@@ -72,7 +72,7 @@ const sometrack: Track = {
 }
 
 describe('Test TackQue', () => {
-  const queue = new TrackQueue('testid')
+  const queue = new TrackQueue([])
   // queue.setGroupId("testid")
   // queue.push(sometrack)
   it('should push to queue', () => {
diff --git a/src/jukebox/track-queue/track-queue.service.ts b/src/jukebox/track-queue/track-queue.service.ts
index cec7971..44262b8 100644
--- a/src/jukebox/track-queue/track-queue.service.ts
+++ b/src/jukebox/track-queue/track-queue.service.ts
@@ -1,19 +1,28 @@
-import { Injectable } from '@nestjs/common'
+import { CACHE_MANAGER } from '@nestjs/cache-manager'
+import { Inject, Injectable } from '@nestjs/common'
 import type { Track } from '@spotify/web-api-ts-sdk'
+import { Cache } from 'cache-manager'
 
 export class TrackQueueItem {
+  recommended_by: string
   constructor(public track: Track) {}
 }
 
-// @Injectable()
 export class TrackQueue {
-  protected tracks: TrackQueueItem[] = []
-  // private groupId: string = '';
+  // private static queues: { [jukeboxId: number]: TrackQueue } = {}
+  // protected tracks: TrackQueueItem[] = []
 
-  constructor(readonly groupId: string) {}
-  public setGroupId(groupId: string) {
-    // this.groupId = groupId;
-  }
+  // private constructor(readonly jukeboxId: number) {}
+  constructor(readonly tracks: TrackQueueItem[]) {}
+
+  // public static getQueue(jukeboxId: number) {
+  //   if (!(jukeboxId in this.queues)) {
+  //     console.log('Creating new track queue...')
+  //     this.queues[jukeboxId] = new TrackQueue(jukeboxId)
+  //   }
+
+  //   return this.queues[jukeboxId]
+  // }
 
   // Pushes a track to the end of the queue and returns the new length
   public push(track: Track): number {
@@ -33,6 +42,10 @@ export class TrackQueue {
     return item ? item.track : undefined // Return the track or undefined if the queue is empty
   }
 
+  public list(): Track[] {
+    return this.tracks.map((item) => item.track)
+  }
+
   // Moves a track to a new position in the queue
   public setPosition(track: Track, pos: number) {
     const currentIndex = this.tracks.findIndex((item) => item.track === track)
@@ -52,4 +65,54 @@ export class TrackQueue {
 }
 
 @Injectable()
-export class TrackQueueService {}
+export class TrackQueueService {
+  constructor(@Inject(CACHE_MANAGER) private cache: Cache) {}
+
+  private getCacheKey(jukeboxId: number) {
+    return `queue-${jukeboxId}`
+  }
+
+  private async getQueue(jukeboxId: number) {
+    const key = this.getCacheKey(jukeboxId)
+    const tracks = (await this.cache.get<TrackQueueItem[] | undefined>(key)) ?? []
+    return new TrackQueue(tracks)
+    // return TrackQueue.getQueue(jukeboxId)
+  }
+
+  private async commitQueue(jukeboxId: number, queue: TrackQueue) {
+    const key = this.getCacheKey(jukeboxId)
+    await this.cache.set(key, queue.tracks)
+  }
+
+  public async listTracks(jukeboxId: number) {
+    const queue = await this.getQueue(jukeboxId)
+    return queue.list()
+  }
+
+  public async queueTrack(jukeboxId: number, track: Track, position = -1) {
+    const queue = await this.getQueue(jukeboxId)
+
+    queue.push(track)
+    if (position >= 0) {
+      queue.setPosition(track, position)
+    }
+
+    await this.commitQueue(jukeboxId, queue)
+    return track
+  }
+
+  public async popTrack(jukeboxId: number): Promise<Track | null> {
+    const queue = await this.getQueue(jukeboxId)
+    const track: Track | null = queue.pop() ?? null
+
+    this.commitQueue(jukeboxId, queue)
+    return track
+  }
+
+  public async peekTrack(jukeboxId: number): Promise<Track | null> {
+    const queue = await this.getQueue(jukeboxId)
+    const track: Track | null = queue.peek() ?? null
+
+    return track
+  }
+}
diff --git a/src/spotify/spotify-auth.service.ts b/src/spotify/spotify-auth.service.ts
new file mode 100644
index 0000000..a26ffbc
--- /dev/null
+++ b/src/spotify/spotify-auth.service.ts
@@ -0,0 +1,201 @@
+import { BadRequestException, Injectable, Logger, NotFoundException } from '@nestjs/common'
+import { InjectRepository } from '@nestjs/typeorm'
+import { Axios } from 'axios'
+import { stringify } from 'querystring'
+import {
+  SPOTIFY_CLIENT_ID,
+  SPOTIFY_CLIENT_SECRET,
+  SPOTIFY_REDIRECT_URI,
+  SPOTIFY_SCOPES,
+} from 'src/config'
+import { Repository } from 'typeorm'
+import { CreateSpotifyAccountDto, UpdateSpotifyAccountDto } from './dto/spotify-account.dto'
+import { SpotifyTokensDto } from './dto/spotify-tokens.dto'
+import { isSpotifyLink, SpotifyAccount } from './entities/spotify-account.entity'
+import { SpotifyBaseService } from './spotify-base.service'
+
+@Injectable()
+export class SpotifyAuthService extends SpotifyBaseService {
+  constructor(
+    @InjectRepository(SpotifyAccount) private repo: Repository<SpotifyAccount>,
+    protected axios: Axios,
+  ) {
+    super()
+  }
+
+  private async authenticateSpotify(code: string): Promise<SpotifyTokensDto> {
+    const body = {
+      grant_type: 'authorization_code',
+      code: code,
+      redirect_uri: SPOTIFY_REDIRECT_URI,
+    }
+    const authBuffer = Buffer.from(SPOTIFY_CLIENT_ID + ':' + SPOTIFY_CLIENT_SECRET)
+
+    const res = await this.axios
+      .post('https://accounts.spotify.com/api/token', body, {
+        headers: {
+          'Content-Type': 'application/x-www-form-urlencoded',
+          Authorization: 'Basic ' + authBuffer.toString('base64'),
+        },
+      })
+      .catch((error) => {
+        throw new BadRequestException(error?.response?.data?.error_description || error)
+      })
+
+    if (res.status > 299 || !res.data) {
+      throw new BadRequestException('Unable to authenticate with Spotify')
+    }
+
+    const tokens: SpotifyTokensDto = {
+      access_token: res.data.access_token,
+      expires_in: res.data.expires_in,
+      refresh_token: res.data.refresh_token,
+      token_type: res.data.token_type,
+    }
+
+    return tokens
+  }
+
+  public getSpotifyRedirectUri(userId: number, finalRedirect?: string) {
+    const state = JSON.stringify({ userId, finalRedirect })
+    const url =
+      'https://accounts.spotify.com/authorize?' +
+      stringify({
+        response_type: 'code',
+        client_id: SPOTIFY_CLIENT_ID,
+        scope: SPOTIFY_SCOPES.join(','),
+        redirect_uri: SPOTIFY_REDIRECT_URI,
+        state: state,
+      })
+
+    return url
+  }
+
+  public async handleAuthCode(userId: number, code: string) {
+    const tokens = await this.authenticateSpotify(code)
+    const sdk = this.getSdk(tokens)
+    const profile = await sdk.currentUser.profile()
+
+    await this.updateOrCreateAccount(userId, profile.email, tokens)
+
+    return profile
+  }
+
+  // TODO: Implement not found error, should be implemented in service or controller?
+  public async findUserAccounts(userId: number) {
+    return await this.repo.findBy({ user_id: userId })
+  }
+
+  public async findOneUserAccount(userId: number, spotifyEmail: string) {
+    return await this.repo.findOneBy({ user_id: userId, spotify_email: spotifyEmail })
+  }
+
+  private async findAccountFromEmail(spotifyEmail: string) {
+    return await this.repo.findOneBy({ spotify_email: spotifyEmail })
+  }
+
+  public async refreshSpotifyAccount(
+    account: { spotify_email: string } | SpotifyAccount,
+  ): Promise<SpotifyAccount> {
+    let spotifyAccount: SpotifyAccount
+
+    if (!isSpotifyLink(account)) {
+      spotifyAccount = (await this.findAccountFromEmail(account.spotify_email)) as SpotifyAccount
+    } else {
+      spotifyAccount = account
+    }
+
+    if (!spotifyAccount.isExpired()) {
+      return spotifyAccount
+    }
+
+    const body = new URLSearchParams({
+      grant_type: 'refresh_token',
+      refresh_token: spotifyAccount.refresh_token,
+    })
+    const authBuffer = Buffer.from(SPOTIFY_CLIENT_ID + ':' + SPOTIFY_CLIENT_SECRET)
+
+    const res = await this.axios
+      .post('https://accounts.spotify.com/api/token', body, {
+        headers: {
+          'Content-Type': 'application/x-www-form-urlencoded',
+          Authorization: 'Basic ' + authBuffer.toString('base64'),
+        },
+      })
+      .catch((error) => {
+        console.log('Error from axios spotify:', error)
+        throw new BadRequestException(error?.response?.data?.error_description || error)
+      })
+
+    spotifyAccount.access_token = res.data.access_token
+    spotifyAccount.expires_in = res.data.expires_in
+    spotifyAccount.syncExpiresAt()
+    Logger.debug('Refreshed spotify token.')
+
+    await spotifyAccount.save()
+    return spotifyAccount
+  }
+
+  private async addAccount(createSpotifyLinkDto: CreateSpotifyAccountDto) {
+    const { user_id: userId, spotify_email: spotifyEmail, tokens } = createSpotifyLinkDto
+    const account = this.repo.create({ user_id: userId, spotify_email: spotifyEmail, ...tokens })
+
+    account.syncExpiresAt()
+    await this.repo.save(account)
+
+    return account
+  }
+
+  private async updateAccount(id: number, updateSpotifyLInkDto: UpdateSpotifyAccountDto) {
+    const account = await this.repo.findOneBy({ id })
+
+    Object.assign(account, updateSpotifyLInkDto)
+
+    await this.repo.save(account)
+
+    if (!account) {
+      throw new BadRequestException(`Cannot find preexisting spotify account link with id ${id}`)
+    }
+
+    return account
+  }
+
+  private async updateOrCreateAccount(
+    userId: number,
+    spotifyEmail: string,
+    tokens: SpotifyTokensDto,
+  ) {
+    const existing = await this.repo.findOneBy({ user_id: userId, spotify_email: spotifyEmail })
+
+    if (!existing) {
+      await this.addAccount({ user_id: userId, spotify_email: spotifyEmail, tokens })
+    } else {
+      await this.updateAccount(existing.id, {
+        access_token: tokens.access_token,
+        expires_in: tokens.expires_in,
+      })
+    }
+  }
+
+  public async removeAccount(id: number) {
+    const account = await this.repo.findOneBy({ id })
+    await account.remove()
+
+    return account
+  }
+
+  public async getAccountTokens(id: number): Promise<SpotifyTokensDto> {
+    let account = await this.repo.findOneBy({ id })
+    if (!account) {
+      throw new NotFoundException(`Spotify account not found with linked id ${id}.`)
+    }
+    account = await this.refreshSpotifyAccount(account)
+
+    return {
+      access_token: account.access_token,
+      expires_in: account.expires_in,
+      refresh_token: account.refresh_token,
+      token_type: account.token_type,
+    }
+  }
+}
diff --git a/src/spotify/spotify-base.service.ts b/src/spotify/spotify-base.service.ts
new file mode 100644
index 0000000..63b5a67
--- /dev/null
+++ b/src/spotify/spotify-base.service.ts
@@ -0,0 +1,14 @@
+import { SpotifyApi } from '@spotify/web-api-ts-sdk'
+import { SPOTIFY_CLIENT_ID } from 'src/config'
+import { SpotifyTokensDto } from './dto/spotify-tokens.dto'
+
+export class SpotifyBaseService {
+  protected getSdk(tokens: SpotifyTokensDto) {
+    return SpotifyApi.withAccessToken(SPOTIFY_CLIENT_ID, {
+      access_token: tokens.access_token,
+      refresh_token: tokens.refresh_token,
+      expires_in: tokens.expires_in,
+      token_type: tokens.token_type,
+    })
+  }
+}
diff --git a/src/spotify/spotify.controller.ts b/src/spotify/spotify.controller.ts
index e3e48ff..33fd110 100644
--- a/src/spotify/spotify.controller.ts
+++ b/src/spotify/spotify.controller.ts
@@ -3,12 +3,12 @@ import { ApiTags } from '@nestjs/swagger'
 import { Response } from 'express'
 import { AuthInterceptor } from 'src/auth/auth.interceptor'
 import { CurrentUser } from 'src/auth/current-user.decorator'
-import { SpotifyService } from './spotify.service'
+import { SpotifyAuthService } from './spotify-auth.service'
 
 @ApiTags('spotify')
 @Controller('spotify/')
 export class SpotifyController {
-  constructor(protected spotifyService: SpotifyService) {}
+  constructor(protected spotifyService: SpotifyAuthService) {}
 
   @Get('login/')
   @UseInterceptors(AuthInterceptor)
@@ -37,12 +37,12 @@ export class SpotifyController {
 
   @Get('links/')
   async getSpotifyLinks(@CurrentUser() user: IUser) {
-    return this.spotifyService.findUserLinks(user.id)
+    return this.spotifyService.findUserAccounts(user.id)
   }
 
   @Delete('links/:id/')
   async deleteSpotifyLink(@CurrentUser() user: IUser, @Param('id') id: number) {
-    const link = await this.spotifyService.deleteLink(id)
+    const link = await this.spotifyService.removeAccount(id)
     return link
   }
 }
diff --git a/src/spotify/spotify.module.ts b/src/spotify/spotify.module.ts
index 45f93af..9a364f4 100644
--- a/src/spotify/spotify.module.ts
+++ b/src/spotify/spotify.module.ts
@@ -4,14 +4,14 @@ import { NetworkModule } from 'src/network/network.module'
 import { NetworkService } from '../network/network.service'
 import { AxiosProvider } from '../utils/providers/axios.provider'
 import { SpotifyAccount } from './entities/spotify-account.entity'
+import { SpotifyAuthService } from './spotify-auth.service'
 import { SpotifyController } from './spotify.controller'
 import { SpotifyService } from './spotify.service'
 
 @Module({
   imports: [NetworkModule, TypeOrmModule.forFeature([SpotifyAccount])],
   controllers: [SpotifyController],
-  providers: [SpotifyService, AxiosProvider, NetworkService],
-  // imports: [MongooseModule.forFeature([{ name: SpotifyLink.name, schema: SpotifyLinkSchema }])],
-  exports: [SpotifyService],
+  providers: [SpotifyAuthService, AxiosProvider, NetworkService, SpotifyService],
+  exports: [SpotifyAuthService, SpotifyService],
 })
 export class SpotifyModule {}
diff --git a/src/spotify/spotify.service.ts b/src/spotify/spotify.service.ts
index 1ef7590..58c9050 100644
--- a/src/spotify/spotify.service.ts
+++ b/src/spotify/spotify.service.ts
@@ -1,189 +1,22 @@
-import { BadRequestException, Injectable, Logger } from '@nestjs/common'
-import { InjectRepository } from '@nestjs/typeorm'
-import { SpotifyApi } from '@spotify/web-api-ts-sdk'
-import { Axios } from 'axios'
-import { stringify } from 'querystring'
-import {
-  SPOTIFY_CLIENT_ID,
-  SPOTIFY_CLIENT_SECRET,
-  SPOTIFY_REDIRECT_URI,
-  SPOTIFY_SCOPES,
-} from 'src/config'
-import { Repository } from 'typeorm'
-import { CreateSpotifyAccountDto, UpdateSpotifyAccountDto } from './dto/spotify-account.dto'
+import { Injectable } from '@nestjs/common'
+import { Track } from '@spotify/web-api-ts-sdk'
 import { SpotifyTokensDto } from './dto/spotify-tokens.dto'
-import { isSpotifyLink, SpotifyAccount } from './entities/spotify-account.entity'
+import { SpotifyBaseService } from './spotify-base.service'
 
 @Injectable()
-export class SpotifyService {
-  constructor(
-    @InjectRepository(SpotifyAccount) private repo: Repository<SpotifyAccount>,
-    protected axios: Axios,
-  ) {}
-
-  private getSdk(tokens: SpotifyTokensDto) {
-    return SpotifyApi.withAccessToken(SPOTIFY_CLIENT_ID, {
-      access_token: tokens.access_token,
-      refresh_token: tokens.refresh_token,
-      expires_in: tokens.expires_in,
-      token_type: tokens.token_type,
-    })
-  }
-
-  private async authenticateSpotify(code: string): Promise<SpotifyTokensDto> {
-    const body = {
-      grant_type: 'authorization_code',
-      code: code,
-      redirect_uri: SPOTIFY_REDIRECT_URI,
-    }
-    const authBuffer = Buffer.from(SPOTIFY_CLIENT_ID + ':' + SPOTIFY_CLIENT_SECRET)
-
-    const res = await this.axios
-      .post('https://accounts.spotify.com/api/token', body, {
-        headers: {
-          'Content-Type': 'application/x-www-form-urlencoded',
-          Authorization: 'Basic ' + authBuffer.toString('base64'),
-        },
-      })
-      .catch((error) => {
-        throw new BadRequestException(error?.response?.data?.error_description || error)
-      })
-
-    if (res.status > 299 || !res.data) {
-      throw new BadRequestException('Unable to authenticate with Spotify')
-    }
-
-    const tokens: SpotifyTokensDto = {
-      access_token: res.data.access_token,
-      expires_in: res.data.expires_in,
-      refresh_token: res.data.refresh_token,
-      token_type: res.data.token_type,
-    }
-
-    return tokens
-  }
-
-  public getSpotifyRedirectUri(userId: number, finalRedirect?: string) {
-    const state = JSON.stringify({ userId, finalRedirect })
-    const url =
-      'https://accounts.spotify.com/authorize?' +
-      stringify({
-        response_type: 'code',
-        client_id: SPOTIFY_CLIENT_ID,
-        scope: SPOTIFY_SCOPES.join(','),
-        redirect_uri: SPOTIFY_REDIRECT_URI,
-        state: state,
-      })
-
-    return url
-  }
-
-  public async handleAuthCode(userId: number, code: string) {
-    const tokens = await this.authenticateSpotify(code)
-    const sdk = this.getSdk(tokens)
-    const profile = await sdk.currentUser.profile()
-
-    await this.updateOrCreateLink(userId, profile.email, tokens)
-
-    return profile
-  }
-
-  // TODO: Implement not found error, should be implemented in service or controller?
-  public async findUserLinks(userId: number) {
-    return await this.repo.findBy({ user_id: userId })
-  }
-
-  public async findOneUserLink(userId: number, spotifyEmail: string) {
-    return await this.repo.findOneBy({ user_id: userId, spotify_email: spotifyEmail })
-  }
-
-  private async findLinkFromEmail(spotifyEmail: string) {
-    return await this.repo.findOneBy({ spotify_email: spotifyEmail })
+export class SpotifyService extends SpotifyBaseService {
+  public async getTrack(spotifyAuth: SpotifyTokensDto, trackId: string) {
+    const sdk = this.getSdk(spotifyAuth)
+    return await sdk.tracks.get(trackId)
   }
 
-  public async refreshSpotifyLink(
-    link: { spotify_email: string } | SpotifyAccount,
-  ): Promise<SpotifyAccount> {
-    let spotifyLink: SpotifyAccount
-
-    if (!isSpotifyLink(link)) {
-      spotifyLink = (await this.findLinkFromEmail(link.spotify_email)) as SpotifyAccount
-    } else {
-      spotifyLink = link
-    }
-
-    if (!spotifyLink.isExpired()) {
-      return spotifyLink
-    }
-
-    const body = new URLSearchParams({
-      grant_type: 'refresh_token',
-      refresh_token: spotifyLink.refresh_token,
-    })
-    const authBuffer = Buffer.from(SPOTIFY_CLIENT_ID + ':' + SPOTIFY_CLIENT_SECRET)
-
-    const res = await this.axios
-      .post('https://accounts.spotify.com/api/token', body, {
-        headers: {
-          'Content-Type': 'application/x-www-form-urlencoded',
-          Authorization: 'Basic ' + authBuffer.toString('base64'),
-        },
-      })
-      .catch((error) => {
-        console.log('Error from axios spotify:', error)
-        throw new BadRequestException(error?.response?.data?.error_description || error)
-      })
-
-    spotifyLink.access_token = res.data.access_token
-    spotifyLink.expires_in = res.data.expires_in
-    spotifyLink.syncExpiresAt()
-    Logger.debug('Refreshed spotify token.')
-
-    await spotifyLink.save()
-    return spotifyLink
-  }
-
-  private async createLink(createSpotifyLinkDto: CreateSpotifyAccountDto) {
-    const { user_id: userId, spotify_email: spotifyEmail, tokens } = createSpotifyLinkDto
-    const link = this.repo.create({ user_id: userId, spotify_email: spotifyEmail, ...tokens })
-
-    link.syncExpiresAt()
-    await this.repo.save(link)
-
-    return link
+  public async queueTrack(spotifyAuth: SpotifyTokensDto, track: Track) {
+    const sdk = this.getSdk(spotifyAuth)
+    await sdk.player.addItemToPlaybackQueue(track.uri)
   }
 
-  private async updateLink(id: number, updateSpotifyLInkDto: UpdateSpotifyAccountDto) {
-    const link = await this.repo.findOneBy({ id })
-
-    Object.assign(link, updateSpotifyLInkDto)
-
-    await this.repo.save(link)
-
-    if (!link) {
-      throw new BadRequestException(`Cannot find preexisting spotify account link with id ${id}`)
-    }
-
-    return link
-  }
-
-  private async updateOrCreateLink(userId: number, spotifyEmail: string, tokens: SpotifyTokensDto) {
-    const existing = await this.repo.findOneBy({ user_id: userId, spotify_email: spotifyEmail })
-
-    if (!existing) {
-      await this.createLink({ user_id: userId, spotify_email: spotifyEmail, tokens })
-    } else {
-      await this.updateLink(existing.id, {
-        access_token: tokens.access_token,
-        expires_in: tokens.expires_in,
-      })
-    }
-  }
-
-  public async deleteLink(id: number) {
-    const link = await this.repo.findOneBy({ id })
-    await link.remove()
-
-    return link
+  public async setPlayerDevice(spotifyAuth: SpotifyTokensDto, deviceId: string) {
+    const sdk = this.getSdk(spotifyAuth)
+    await sdk.player.transferPlayback([deviceId])
   }
 }
diff --git a/src/spotify/tests/spotify.controller.spec.ts b/src/spotify/tests/spotify.controller.spec.ts
index f6d3608..4e2f255 100644
--- a/src/spotify/tests/spotify.controller.spec.ts
+++ b/src/spotify/tests/spotify.controller.spec.ts
@@ -6,8 +6,8 @@ import { NetworkModule } from 'src/network/network.module'
 import type { MockType } from 'src/utils'
 import type { Repository } from 'typeorm'
 import { SpotifyAccount } from '../entities/spotify-account.entity'
+import { SpotifyAuthService } from '../spotify-auth.service'
 import { SpotifyController } from '../spotify.controller'
-import { SpotifyService } from '../spotify.service'
 
 describe('SpotifyController', () => {
   let controller: SpotifyController
@@ -18,7 +18,7 @@ describe('SpotifyController', () => {
       imports: [NetworkModule],
       controllers: [SpotifyController],
       providers: [
-        SpotifyService,
+        SpotifyAuthService,
         {
           provide: Axios.Axios,
           useValue: Axios.create(),
diff --git a/src/spotify/tests/spotify.service.spec.ts b/src/spotify/tests/spotify.service.spec.ts
index b16834a..11dcee4 100644
--- a/src/spotify/tests/spotify.service.spec.ts
+++ b/src/spotify/tests/spotify.service.spec.ts
@@ -7,16 +7,16 @@ import { Model } from 'mongoose'
 import type { MockType } from 'src/utils'
 import type { Repository } from 'typeorm'
 import { SpotifyAccount } from '../entities/spotify-account.entity'
-import { SpotifyService } from '../spotify.service'
+import { SpotifyAuthService } from '../spotify-auth.service'
 
 describe('SpotifyService', () => {
-  let service: SpotifyService
+  let service: SpotifyAuthService
 
   beforeEach(async () => {
     const mockSpotifyLinkRepo: () => MockType<Repository<SpotifyAccount>> = jest.fn(() => ({}))
     const module: TestingModule = await Test.createTestingModule({
       providers: [
-        SpotifyService,
+        SpotifyAuthService,
         { provide: getModelToken(SpotifyAccount.name), useValue: Model<SpotifyAccount> },
         {
           provide: Axios.Axios,
@@ -29,7 +29,7 @@ describe('SpotifyService', () => {
       ],
     }).compile()
 
-    service = module.get<SpotifyService>(SpotifyService)
+    service = module.get<SpotifyAuthService>(SpotifyAuthService)
   })
 
   it('should be defined', () => {
diff --git a/src/types/spotify.d.ts b/src/types/spotify.d.ts
new file mode 100644
index 0000000..1ba378b
--- /dev/null
+++ b/src/types/spotify.d.ts
@@ -0,0 +1,13 @@
+declare type ITrack = Spotify.Track
+
+declare interface ITrackStateUpdate {
+  current_track?: ITrack
+  // is_playing: boolean
+  next_tracks?: ITrack[]
+  jukebox_id: number
+}
+
+declare interface IPlayerUpdate {
+  current_track?: ITrack
+  jukebox_id: number
+}
diff --git a/src/utils/testing/mocking.ts b/src/utils/testing/mocking.ts
index 805ce5c..5b8ce28 100644
--- a/src/utils/testing/mocking.ts
+++ b/src/utils/testing/mocking.ts
@@ -1,3 +1,16 @@
+import { CACHE_MANAGER } from '@nestjs/cache-manager'
+import { Repository } from 'typeorm'
+
 export type MockType<T> = {
   [P in keyof T]?: jest.Mock<object>
 }
+
+export const mockCache = {
+  provide: CACHE_MANAGER,
+  useValue: {
+    get: () => '',
+    set: () => jest.fn(),
+  },
+}
+
+export const mockRepo: <T>() => MockType<Repository<T>> = jest.fn(() => ({}))