From 76d8c4579299f4cd5ac66c4ec921af5df697cfe7 Mon Sep 17 00:00:00 2001 From: Rahul Popat Mule Date: Sun, 14 Apr 2024 04:24:13 +0530 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 304fa3c..774f75a 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,13 @@ To run this project, you need to have .NET 8 and Azure Cosmos DB. The API exposes several endpoints that correspond to CRUD operations: - `POST /api/games`: Create a new game. + ```json + { + "GameId": "1", + "Name": "Call of Duty: Warzone", + "Description": "Call of Duty: Warzone was a free-to-play battle royale video game developed by Raven Software and Infinity Ward and published by Activision", + "Type": "Shooter" + } - `GET /api/games/{id}`: Get a game by ID. - `GET /api/games`: Get all games. - `DELETE /api/games/{id}`: Delete a game by ID.