Newer
Older
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
{
"info": {
"_postman_id": "4364ba9f-1781-49aa-a2a2-f9648218eed3",
"name": "Beego Todo",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json",
"_exporter_id": "37291569"
},
"item": [
{
"name": "New To Do",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"Name\":\"Eat sleep repeat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "http://localhost:8086/api/todo"
},
"response": []
},
{
"name": "Entryy",
"request": {
"method": "GET",
"header": [],
"url": "http://localhost:8086"
},
"response": []
},
{
"name": "List Todos",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"Name\": \"Updated Todo Name\",\n \"Done\": \"true\"\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "http://localhost:8086/api/todo/1"
},
"response": []
},
{
"name": "Get Todo by ID",
"request": {
"method": "GET",
"header": [],
"url": "http://localhost:8086/api/todo/1"
},
"response": []
},
{
"name": "Update Todo by ID",
"request": {
"method": "GET",
"header": [],
"url": "http://localhost:8086/api/todo/1"
},
"response": []
},
{
"name": "Delete Todo",
"request": {
"method": "DELETE",
"header": [],
"url": "http://localhost:8086/api/todo/delete/2"
},
"response": []
}
]
}