-
Notifications
You must be signed in to change notification settings - Fork 14
/
exampleRequests.http
59 lines (53 loc) · 1.16 KB
/
exampleRequests.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
###
# Join
POST http://localhost:8080/api/zoomus/webhook
Content-Type: application/json
{
"event": "meeting.participant_joined",
"payload": {
"account_id": "abc",
"object": {
"uuid": "uuid",
"id": "156",
"host_id": "abc",
"topic": "My Meeting",
"type": 2,
"start_time": "2019-07-09T17:00:00Z",
"duration": 60,
"timezone": "America/Los_Angeles",
"participant": {
"user_id": "16778205",
"user_name": "shree",
"id": "iFxeBPYun6SAiWUzBcEkX",
"join_time": "2019-07-16T17:13:13Z"
}
}
}
}
###
# Leave
POST http://localhost:8080/api/zoomus/webhook
Content-Type: application/json
{
"event": "meeting.participant_left",
"payload": {
"account_id": "abc",
"object": {
"uuid": "uuid",
"id": "1",
"host_id": "abc",
"topic": "My Meeting",
"type": 2,
"start_time": "2019-07-09T17:00:00Z",
"duration": 60,
"timezone": "America/Los_Angeles",
"participant": {
"user_id": "167782041",
"user_name": "shree",
"id": "iFxeBPYun6SAiWUzBcEkX",
"join_time": "2019-07-16T17:13:13Z"
}
}
}
}
###