forked from exceptionless/Exceptionless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exceptionless.http
73 lines (50 loc) · 1.28 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
@apiUrl = http://localhost:5000/api/v2
@email = test@test.com
@password = tester
### create an account
# @name account
POST {{apiUrl}}/auth/signup
Content-Type: application/json
{
"name": "Test Tester",
"email": "{{email}}",
"password": "{{password}}"
}
@token = {{account.response.body.$.token}}
@email = {{account.request.body.$.email}}
@password = {{account.request.body.$.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
Authorization: Bearer {{token}}