Android application where you can perform CRUD tests with API that you can run locally.
GET /games
Tüm oyunların bir listesini JSON formatında geri döner.
POST /add
Tüm oyun listesine oyun eklemenize olanak sağlar. JSON formatında body bekler.
Örnek body:
{
"name": "Revelation Online",
"description": "A free-to-play fantasy MMO developed by NetEase and published by My.com.",
"imageUrl": "https://www.freetogame.com/g/77/thumbnail.jpg",
"genre": "MMORPG"
}
Tüm oyun listesinden id'si ile istenilen oyun silinir.
DELETE /delete/{id}
Parameter | Type | Description |
---|---|---|
id |
int |
Required — Oyunun id'si istenir. |
Tüm oyun listesinden id'si ile istenilen oyun güncellenir.
PUT /update/{id}
Parameter | Type | Description |
---|---|---|
id |
int |
Required — Oyunun id'si istenir. |