diff --git a/Artist.md b/Artist.md new file mode 100644 index 0000000..4b7c799 --- /dev/null +++ b/Artist.md @@ -0,0 +1,41 @@ +**Endpoint: "/artist"** + +## GET ## + +##### Summary ##### +Returns all artists in your collection + +##### Parameters ###### + +*None* + +##### Returns JsonArray ###### + +## GET/{id} ## + +##### Summary ##### +Returns the artist with the matching ID or 404 if no matching artist is found + +##### Parameters ###### + +`id (int)` + +##### Returns JsonObject ###### + +## DELETE/{id} ## + +##### Summary ##### +Delete the artist with the given ID + +##### Parameters ###### + +Required: +`id (int)` + +Optional: +`deleteFiles (bool)` - if true the series folder and all files will be deleted when the series is deleted + +##### Returns JsonObject ###### +````JSON +{} +```` \ No newline at end of file