-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNode.js Google Distance Example.postman_collection.json
More file actions
66 lines (66 loc) · 1.29 KB
/
Node.js Google Distance Example.postman_collection.json
File metadata and controls
66 lines (66 loc) · 1.29 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
{
"info": {
"name": "Node.js Google Distance Example",
"_postman_id": "21986bb0-9ed1-c9a9-56ea-e5a2410ddd0f",
"description": "",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "By Location",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"origin\": \"Jakarta\",\n\t\"destination\": \"Bandung\",\n\t\"mode\": \"walking\"\n}"
},
"url": {
"raw": "localhost:3000/location",
"host": [
"localhost"
],
"port": "3000",
"path": [
"location"
]
},
"description": ""
},
"response": []
},
{
"name": "By Coordinates",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"origin\": [-6.1753871, 106.8249641],\n\t\"destination\": [-6.2656321, 106.8760519],\n\t\"mode\": \"walking\"\n}"
},
"url": {
"raw": "localhost:3000/coordinates",
"host": [
"localhost"
],
"port": "3000",
"path": [
"coordinates"
]
},
"description": ""
},
"response": []
}
]
}