-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebApiWithGenericsExample.postman_collection.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathWebApiWithGenericsExample.postman_collection.json
File metadata and controls
64 lines (64 loc) · 1.55 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
{
"variables": [],
"info": {
"name": "WebApiWithGenericsExample",
"_postman_id": "4b090e76-f868-4604-26cb-9aa592c7627a",
"description": "",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "http://localhost:51755/api/FootballFixture/5",
"request": {
"url": "http://localhost:51755/api/FootballFixture/5",
"method": "GET",
"header": [],
"body": {},
"description": ""
},
"response": []
},
{
"name": "http://localhost:51755/api/TennisFixture",
"request": {
"url": "http://localhost:51755/api/TennisFixture",
"method": "GET",
"header": [],
"body": {},
"description": ""
},
"response": []
},
{
"name": "http://localhost:51755/api/FootballFixture/5",
"request": {
"url": "http://localhost:51755/api/FootballFixture/5",
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"description": ""
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"Football\",\n \"goalScorer\": \"juanito\",\n \"id\": 5,\n \"availableSources\": {\n \"isFootballFeedOne\": true,\n \"isFootballFeedTwo\": false\n }\n }"
},
"description": ""
},
"response": []
},
{
"name": "http://localhost:51755/api/FootballFixture/5",
"request": {
"url": "http://localhost:51755/api/FootballFixture/5",
"method": "GET",
"header": [],
"body": {},
"description": ""
},
"response": []
}
]
}