{"id":26235768,"url":"https://github.com/dxtaner/bookstore-wepapi","last_synced_at":"2025-06-27T03:36:48.405Z","repository":{"id":159311139,"uuid":"535300967","full_name":"dxtaner/BookStore-WepAPI","owner":"dxtaner","description":"BookStore","archived":false,"fork":false,"pushed_at":"2025-01-24T11:58:37.000Z","size":5947,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-16T03:38:00.333Z","etag":null,"topics":["book","bookstore-web","bookstorewebapi","entity-framework-core","webapi"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dxtaner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-11T13:05:21.000Z","updated_at":"2025-01-24T11:58:43.000Z","dependencies_parsed_at":"2025-03-13T07:15:37.401Z","dependency_job_id":null,"html_url":"https://github.com/dxtaner/BookStore-WepAPI","commit_stats":null,"previous_names":["dxtaner/bookstore-wepapi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dxtaner/BookStore-WepAPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dxtaner%2FBookStore-WepAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dxtaner%2FBookStore-WepAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dxtaner%2FBookStore-WepAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dxtaner%2FBookStore-WepAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dxtaner","download_url":"https://codeload.github.com/dxtaner/BookStore-WepAPI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dxtaner%2FBookStore-WepAPI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262182771,"owners_count":23271683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["book","bookstore-web","bookstorewebapi","entity-framework-core","webapi"],"created_at":"2025-03-13T03:17:47.377Z","updated_at":"2025-06-27T03:36:45.836Z","avatar_url":"https://github.com/dxtaner.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eBook Application Web API\u003c/h1\u003e \u003cp\u003eThis C# Web API application is designed to manage records for books, authors, genres, and users.\u003c/p\u003e \u003ch2\u003eAPI Usage\u003c/h2\u003e \u003cp\u003eTo access the API, you must send HTTP requests using the main API URL. For example, to list books, you need to send a \u003ccode\u003eGET\u003c/code\u003e request:\u003c/p\u003e \u003cpre\u003e\u003ccode\u003eGET https://localhost:5001/api/books \u003c/code\u003e\u003c/pre\u003e \u003cp\u003eTo add a book, you need to send a \u003ccode\u003ePOST\u003c/code\u003e request:\u003c/p\u003e \u003cpre\u003e\u003ccode\u003ePOST https://localhost:5001/api/books Content-Type: application/json\n{ \"title\": \"Harry Potter and the Philosopher's Stone\", \"author\": \"J.K. Rowling\", \"genre\": 1 } \u003c/code\u003e\u003c/pre\u003e\n\n\u003cp\u003eTo update a book, you need to send a \u003ccode\u003ePUT\u003c/code\u003e request:\u003c/p\u003e \u003cpre\u003e\u003ccode\u003ePUT https://localhost:5001/api/books/1 Content-Type: application/json\n{ \"title\": \"Harry Potter and the Sorcerer's Stone\", \"author\": \"J.K. Rowling\", \"genre\": 2 } \u003c/code\u003e\u003c/pre\u003e\n\n\u003cp\u003eTo delete a book, you need to send a \u003ccode\u003eDELETE\u003c/code\u003e request:\u003c/p\u003e \u003cpre\u003e\u003ccode\u003eDELETE https://localhost:5001/api/books/1 \u003c/code\u003e\u003c/pre\u003e \u003cp\u003eYou can send similar requests for other record types (author, genre, user).\u003c/p\u003e \u003ch2\u003eAPI Documentation\u003c/h2\u003e \u003cp\u003eThe API documentation provides detailed information about how to use the API, including its features and examples.\u003c/p\u003e \u003cp\u003eTo access the API documentation, append \"/swagger\" to the main API URL. For example, \"https://localhost:5001/swagger\" will direct you to the API documentation.\u003c/p\u003e \u003ch2\u003eAPI License\u003c/h2\u003e \u003cp\u003eThe API license provides information on how the API can be used. The license outlines the terms under which users can utilize the API.\u003c/p\u003e \u003cp\u003eThe license is included in the API documentation. Users should read and accept the license before using the API.\u003c/p\u003e \u003ch2\u003eSetup\u003c/h2\u003e \u003cp\u003eFollow these steps to run the application:\u003c/p\u003e \u003col\u003e \u003cli\u003eClone this repository.\u003c/li\u003e \u003cli\u003eInstall the .NET Core 6 SDK.\u003c/li\u003e \u003cli\u003eOpen the project files using Visual Studio or a text editor.\u003c/li\u003e \u003cli\u003eUse the NuGet Package Manager to install the required dependencies for the application.\u003c/li\u003e \u003cli\u003eRun the application using the \"IIS Express\" or \"localhost\" server.\u003c/li\u003e \u003cli\u003eSend HTTP requests using the appropriate URLs to access the API.\u003c/li\u003e \u003c/ol\u003e \u003ch2\u003eContributors\u003c/h2\u003e \u003cp\u003eThis project is open source and has been developed by contributors. All kinds of contributions, suggestions, and feedback are welcome.\u003c/p\u003e \u003cp\u003eThose interested in contributing can fork the project, improve it, and particularly help with debugging, documentation, and testing.\u003c/p\u003e \u003cp\u003ePlease read the CONTRIBUTING.md file before contributing and share your questions or suggestions in the GitHub Issues section.\u003c/p\u003e \u003ch2\u003eLicense\u003c/h2\u003e \u003cp\u003eThis project is licensed under the MIT License. For more information, see the LICENSE file.\u003c/p\u003e\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdxtaner%2Fbookstore-wepapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdxtaner%2Fbookstore-wepapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdxtaner%2Fbookstore-wepapi/lists"}