-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.http
38 lines (32 loc) · 855 Bytes
/
test.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
POST http://localhost:7071/api/StartScheduler HTTP/1.1
Content-Type: application/json
{
"Name": "Recurrent 5 Second event",
"StartTime": "2022-03-04T10:59:00+01:00",
"NextDay": 0,
"NextHour": 0,
"NextMinute": 0,
"NextSecond": 5
}
###
POST http://localhost:7071/api/StartScheduler HTTP/1.1
Content-Type: application/json
{
"Name": "Recurrent 10 Second event",
"StartTime": "2022-03-04T11:00:00+01:00",
"NextDay": 0,
"NextHour": 0,
"NextMinute": 0,
"NextSecond": 10
}
###
POST http://localhost:7071/api/StartScheduler HTTP/1.1
Content-Type: application/json
{
"Name": "Recurrent 20 Second event",
"StartTime": "2022-03-04T11:01:00+01:00",
"NextDay": 0,
"NextHour": 0,
"NextMinute": 0,
"NextSecond": 20
}