-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostman_collection.json
More file actions
43 lines (42 loc) · 1.23 KB
/
postman_collection.json
File metadata and controls
43 lines (42 loc) · 1.23 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
{
"info": {
"name": "Cloud Security Monitoring API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Auth / dev-token",
"request": { "method": "POST", "url": "http://localhost:3000/auth/dev-token" }
},
{
"name": "AWS / fetch-events",
"request": {
"method": "GET",
"header": [ { "key": "Authorization", "value": "Bearer {{token}}" } ],
"url": "http://localhost:3000/aws-security/fetch-events"
}
},
{
"name": "AWS / events (live)",
"request": {
"method": "GET",
"header": [ { "key": "Authorization", "value": "Bearer {{token}}" } ],
"url": "http://localhost:3000/aws-security/events"
}
},
{
"name": "AWS / db-events",
"request": {
"method": "GET",
"header": [ { "key": "Authorization", "value": "Bearer {{token}}" } ],
"url": {
"raw": "http://localhost:3000/aws-security/db-events?limit=20",
"host": ["http://localhost:3000"],
"path": ["aws-security","db-events"],
"query": [ { "key": "limit", "value": "20" } ]
}
}
}
],
"variable": [ { "key": "token", "value": "" } ]
}