-
-
Notifications
You must be signed in to change notification settings - Fork 516
/
exceptionless.http
84 lines (56 loc) · 1.66 KB
/
exceptionless.http
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
83
84
# Additonal http collections can be found in the tests/http folder.
@apiUrl = http://localhost:5200/api/v2
@email = test@localhost
@password = tester
### create an account
# @name signup
POST {{apiUrl}}/auth/signup
Content-Type: application/json
{
"name": "Test Tester",
"email": "{{email}}",
"password": "{{password}}"
}
### login to test account
# @name login
POST {{apiUrl}}/auth/login
Content-Type: application/json
{
"email": "{{email}}",
"password": "{{password}}"
}
###
@token = {{login.response.body.$.token}}
### get current user info
GET {{apiUrl}}/users/me
Authorization: Bearer {{token}}
### get organizations
GET {{apiUrl}}/organizations
Authorization: Bearer {{token}}
### get projects
# @name projects
GET {{apiUrl}}/projects
Authorization: Bearer {{token}}
###
@projectId = {{projects.response.body.$[0].id}}
### post a sample JSON event
POST {{apiUrl}}/projects/{{projectId}}/events
Authorization: Bearer {{token}}
Content-Type: application/json
{
"message": "Hello World!"
}
### post a sample text event
POST {{apiUrl}}/projects/{{projectId}}/events
Authorization: Bearer {{token}}
Content-Type: text/plain
Hello World!
### get events
GET {{apiUrl}}/events?sort=date
Authorization: Bearer {{token}}
### get events with after token
GET {{apiUrl}}/events?sort=date&after=WzE2OTQxNDczMjc1NTgsIjY0ZmFhMmZmZTBhZTljMmY1YzhmZjMxYyJd
Authorization: Bearer {{token}}
###
GET {{apiUrl}}/events/count?filter=(status:open%20OR%20status:regressed)&offset=-300m&time=last%2024%20hours&aggregations=date:(date^-300m%20cardinality:stack%20sum:count~1)%20cardinality:stack%20terms:(first%20@include:true)%20sum:count~1
Authorization: Bearer {{token}}