-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMinesWeeperGo.postman_collection.json
More file actions
95 lines (95 loc) · 1.71 KB
/
MinesWeeperGo.postman_collection.json
File metadata and controls
95 lines (95 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"info": {
"_postman_id": "19c4d6b0-e239-4ffe-896c-8b6aef4f6e05",
"name": "MinesWeeper go",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Create a Game",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"CampoMinadoWin2021\",\n \"size\": 3,\n \"bombs\": 3\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:8080/games",
"host": [
"localhost"
],
"port": "8080",
"path": [
"games"
]
}
},
"response": []
},
{
"name": "Get a Game",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "text"
}
}
},
"url": {
"raw": "localhost:8080/games/b8dfbfd2-9cdb-4652-8eda-a68d629608a7",
"host": [
"localhost"
],
"port": "8080",
"path": [
"games",
"b8dfbfd2-9cdb-4652-8eda-a68d629608a7"
]
}
},
"response": []
},
{
"name": "Update a Game",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"row\": 0,\n \"col\": 1\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:8080/games/b8dfbfd2-9cdb-4652-8eda-a68d629608a7",
"host": [
"localhost"
],
"port": "8080",
"path": [
"games",
"b8dfbfd2-9cdb-4652-8eda-a68d629608a7"
]
}
},
"response": []
}
]
}