https://gamecrud-production.up.railway.app
GET /api/game
GET /api/game/${id}
Parameter | Type | Description |
---|---|---|
id |
string |
Required. Id of game to fetch |
POST /api/game
Schema to follow
Parameter | Type | Description |
---|---|---|
name |
string |
name of the game to add |
url |
string |
url of game to add |
author |
string |
author of the game to add |
publishedDate |
date |
publish date of the game to add |
PATCH /api/game/${id}
Parameter | Type | Description |
---|---|---|
id |
string |
Required. Id of game to update |
Schema to follow
Parameter | Type | Description |
---|---|---|
name |
string |
updated name of the game |
url |
string |
updated url of the game |
author |
string |
updated author of the game |
publishedDate |
date |
updated publish date of the game |
DELETE /api/game/${id}
Parameter | Type | Description |
---|---|---|
id |
string |
Required. Id of game to delete |