{ "variables": [], "info": { "name": "games module", "_postman_id": "41336f83-2d57-a883-1362-cabe040e52dd", "description": "Requests for the games module of FLEXess", "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" }, "item": [ { "name": "allGames", "request": { "url": "http://localhost:8080/api/games/", "method": "GET", "header": [], "body": {}, "description": "get all games" }, "response": [] }, { "name": "gameById", "request": { "url": "http://localhost:8080/api/games/1", "method": "GET", "header": [], "body": {}, "description": "get a single game by ID" }, "response": [] }, { "name": "createGame", "request": { "url": "http://localhost:8080/api/games/", "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "description": "" } ], "body": { "mode": "raw", "raw": "{\n\t\"playerBlack\": \"tabea\"\n}" }, "description": "create a new game" }, "response": [] }, { "name": "createMove", "request": { "url": "http://localhost:8080/api/games/4/moves/", "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "description": "" } ], "body": { "mode": "raw", "raw": "{\n\t\"text\": \"e2e4\"\n}" }, "description": "create and perform a move" }, "response": [] } ] }