-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrice Service.postman_collection.json
77 lines (77 loc) · 1.59 KB
/
Price Service.postman_collection.json
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
{
"info": {
"_postman_id": "750a048f-0471-45d4-9989-fc111e803e49",
"name": "Task Service",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "34717831"
},
"item": [
{
"name": "Find",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8080/task-service-rest-api/v1.0/task?page=0&size=10",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"task-service-rest-api",
"v1.0",
"task"
],
"query": [
{
"key": "page",
"value": "0"
},
{
"key": "size",
"value": "10"
}
]
}
},
"response": []
},
{
"name": "Create",
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\": \"Complete Project Documentation\",\r\n \"dueDate\": \"2024-08-15T12:00:00Z\",\r\n \"description\": \"Finalize and review all project documentation before the deadline.\",\r\n \"tags\": [\"documentation\", \"project\", \"deadline\"],\r\n \"status\": \"IN_PROGRESS\"\r\n}\r\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8080/task-service-rest-api/v1.0/task",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"task-service-rest-api",
"v1.0",
"task"
]
}
},
"response": []
}
]
}