-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinsomnia.yml
1267 lines (1263 loc) · 34.3 KB
/
insomnia.yml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_type: export
__export_format: 4
__export_date: 2023-11-26T12:25:04.014Z
__export_source: insomnia.desktop.app:v2023.4.0
resources:
- _id: req_27e4b3e404f0475a9806ec504047a9c3
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689954495695
created: 1687621763480
url: '{{ _.baseUrl }}/boxes/claim'
name: claimBox
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"token": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
prefix: Bearer
token: '{{ _.userToken }}'
metaSortKey: -1687618849612
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_8dc3eb2d970d40a69c8b1d719cd91d47
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1687721554685
created: 1687609986199
name: box
description: ''
environment: {}
environmentPropertyOrder: {}
metaSortKey: -1687693687685
_type: request_group
- _id: wrk_1f52a56f8af34b59938c3f2a1daa258e
parentId: null
modified: 1700996335423
created: 1700996335423
name: OpenSenseMap
description: ''
scope: design
_type: workspace
- _id: req_17cce28b1ede4134bf257ca3652f4832
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689954400942
created: 1687674880918
url: '{{ _.baseUrl }}/boxes/transfer'
name: createTransfer
description: ''
method: POST
body:
mimeType: application/json
text: >-
{
"boxId": "{{ _.boxID }}",
"date": "{% customTimestamp 'add', '', '', '1', '', '', '', '', 'iso-8601', '', '' %}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1615d933d3db4b86ab40c4d2234bb5b9
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849587
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_709065f2a76a40978e357999fc0073ec
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689963442253
created: 1687678405384
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}'
name: deleteBox
description: ''
method: DELETE
body:
mimeType: application/json
text: |-
{
"password": "{{ _.userPassword }}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849574.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_26824ca5a06840899d237d83f28a1ccb
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1700996435961
created: 1700996427395
url: '{{ _.baseUrl }}/tags'
name: getAllTags
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1687618849568.25
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_dc824c31c95149e38fed83b8c9e894bb
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1701000711430
created: 1687618849662
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}'
name: getBox
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1687618849562
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_6b523cb4a0104f40bc79e6e9493189a7
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1687683328517
created: 1687678807780
url: '{{ _.baseUrl }}/boxes'
name: getBoxes
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"bbox": "7.645503,51.962280,7.646168,51.962515"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687618849512
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_d083e5732ebc4f518cab4370513e29dc
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1687977432633
created: 1687683582239
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/locations'
name: getBoxLocations
description: ''
method: GET
body:
mimeType: application/json
text: >-
{
"from-date": "{% customTimestamp 'specific', '2000', '1', '1', '1', '0', '0', '0', 'iso-8601', '', '' %}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687618849462
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_0d8429ca679d49ed87853d613198f1ee
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1687686990891
created: 1687686511597
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/script'
name: getSketch
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849412
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_fe87740f63754a5394f5d36eafece2d3
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1687688018601
created: 1687687013545
url: '{{ _.baseUrl }}/boxes/transfer/{{ _.boxID }}'
name: getTransfer
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication:
type: bearer
prefix: Bearer
token: '{{ _.userToken }}'
metaSortKey: -1687618849362
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_98651d2fe3d94431b414baabb19b5d95
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689884137332
created: 1687688062661
url: '{{ _.baseUrl }}/boxes'
name: postNewBox
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"name": "Test",
"exposure": "outdoor",
"location": [0, 70],
"sensors": [
{
"title": "Testsensor",
"unit": "g/cm²"
}
]
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849312
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_4386f3e0ea9242ec80a1fd44da24ef6a
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689884143480
created: 1687688094414
url: '{{ _.baseUrl }}/boxes/transfer'
name: removeTransfer
description: ''
method: DELETE
body:
mimeType: application/json
text: |-
{
"boxId": "{{ _.boxID }}",
"token": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849262
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_4e730e487d3e4ee181f794db57e545dc
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1689955066542
created: 1687689492405
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}'
name: updateBox
description: ''
method: PUT
body:
mimeType: application/json
text: |-
{
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1687618849212
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_21820dad73ce46bd8459ac3a0337d698
parentId: fld_8dc3eb2d970d40a69c8b1d719cd91d47
modified: 1687691692843
created: 1687691166683
url: '{{ _.baseUrl }}/boxes/transfer/{{ _.boxID }}'
name: updateTransfer
description: ''
method: PUT
body:
mimeType: application/json
text: >-
{
"token": "",
"date": "{% customTimestamp 'add', '', '', '3', '', '', '', '', 'iso-8601', '', '' %}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
prefix: Bearer
token: '{{ _.userToken }}'
metaSortKey: -1687618849162
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_1c32d9c17bef40ada2643acbb1d428f8
parentId: fld_6ba1665aad29435ca71dcfade014ea04
modified: 1687798314606
created: 1687721559543
url: '{{ _.baseUrl }}/statistics/idw'
name: calculateIdw
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"phenomenon": "Temperatur",
"bbox": "7.992554,50.534380,12.008057,51.730431"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687721559543
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_6ba1665aad29435ca71dcfade014ea04
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1687721556091
created: 1687721547961
name: interpolation
description: ''
environment: {}
environmentPropertyOrder: null
metaSortKey: -1687693687635
_type: request_group
- _id: req_9deea3f2387241ea81e745ab33920150
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1689962776779
created: 1687797686749
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/{{ _.sensorID }}/measurements'
name: deleteMeasurements
description: ''
method: DELETE
body:
mimeType: application/json
text: |-
{
"deleteAllMeasurements": true
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
prefix: Bearer
token: '{{ _.userToken }}'
metaSortKey: -1687797686749
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_3a283bd4bbd24757b3126f0fd0061fa8
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1687797476208
created: 1687797450965
name: measurement
description: ''
environment: {}
environmentPropertyOrder: null
metaSortKey: -1687693687585
_type: request_group
- _id: req_10074107831640a4a43a73594515407f
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1687804628235
created: 1687798047937
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/data/{{ _.sensorID }}'
name: getData
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"to-date": "{% now 'iso-8601', '' %}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687797686699
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_32d7b544108b463c86315bcebc337f3c
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1687978687703
created: 1687977599367
url: '{{ _.baseUrl }}/boxes/data/bytag'
name: getDataByGroupTag
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"grouptag": "edu"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687797686649
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_0d97d5a8e66d458db8d3585c25a9a2d8
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1688583798880
created: 1688580610056
url: '{{ _.baseUrl }}/boxes/data'
name: getDataMulti
description: ''
method: GET
body:
mimeType: application/json
text: >-
{
"boxId": "{{ _.boxID }}",
"phenomenon": "Temperatur",
"format": "json",
"from-date": "{% customTimestamp 'specific', '2000', '1', '1', '1', '0', '0', '0', 'iso-8601', '', '' %}",
"columns": "value"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687797686599
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_461872c0502b452bba51fd156d0ca106
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1688667334672
created: 1688666475714
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/sensors/{{ _.sensorID }}'
name: getLatestMeasurementOfSensor
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687797686549
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ffcb61a7c0ae475d9f943ab016fc6b0a
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1688667464847
created: 1688667358436
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/sensors'
name: getLatestMeasurements
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"count": 5
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1687797686499
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_f8e2636236824b92b65617884a770eb3
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1689959526752
created: 1688668038686
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/{{ _.sensorID }}'
name: postNewMeasurement
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"value": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: apikey
disabled: false
key: Authorization
value: '{{ _.boxAuthorization }}'
addTo: header
metaSortKey: -1687797686449
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_49116ab882134d2b81369c9e9dd82687
parentId: fld_3a283bd4bbd24757b3126f0fd0061fa8
modified: 1689960302809
created: 1688668058546
url: '{{ _.baseUrl }}/boxes/{{ _.boxID }}/data'
name: postNewMeasurements
description: ''
method: POST
body:
mimeType: application/json
text: |-
[
{
"sensor": "{{ _.sensorID }}",
"value": "2"
},
{
"sensor": "{{ _.sensorID }}",
"value": "3"
}
]
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: apikey
disabled: false
key: Authorization
value: '{{ _.boxAuthorization }}'
addTo: header
metaSortKey: -1687797686399
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_1c066a880f1a435e9db046b5e77c5479
parentId: fld_8eb8da0184344b5993697c6535f610c9
modified: 1688668410429
created: 1688668131344
url: '{{ _.baseUrl }}/stats'
name: getStatistics
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
"human": true
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1688668131344
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_8eb8da0184344b5993697c6535f610c9
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1688668128758
created: 1688668125487
name: misc
description: ''
environment: {}
environmentPropertyOrder: null
metaSortKey: -1687693687535
_type: request_group
- _id: req_6e09730baadc438f8215d1be3984c979
parentId: fld_8eb8da0184344b5993697c6535f610c9
modified: 1688668491247
created: 1688668480785
url: '{{ _.baseUrl }}/'
name: printRoutes
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1688668131294
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_edc2c70e08544e4683f9f0765ea46798
parentId: fld_1fb6f75ae770449e8b027f6f98de7c93
modified: 1689015988480
created: 1689011295266
url: '{{ _.baseUrl }}/statistics/descriptive'
name: descriptive
description: ''
method: GET
body:
mimeType: application/json
text: >-
{
"boxId": "{{ _.boxID }}",
"phenomenon": "Temperatur",
"format": "json",
"from-date": "{% customTimestamp 'specific', '2000', '1', '1', '1', '0', '0', '0', 'iso-8601', '', '' %}",
"to-date": "{% now 'iso-8601', '' %}",
"window": "120000",
"operation": "sum"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1689011295266
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_1fb6f75ae770449e8b027f6f98de7c93
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1689011292446
created: 1689011290373
name: statistic
description: ''
environment: {}
environmentPropertyOrder: null
metaSortKey: -1687693687485
_type: request_group
- _id: req_91731a45ac0246ebbfabe2503450a5ba
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689880174492
created: 1689610668869
url: '{{ _.baseUrl }}/users/confirm-email'
name: confirmEmail
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"email": "{{ _.userEmail }}",
"token": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1689610668869
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_be8a4072f9c5460b96e6f28daf2b3532
parentId: wrk_1f52a56f8af34b59938c3f2a1daa258e
modified: 1689099787662
created: 1689099765750
name: user
description: ''
environment: {}
environmentPropertyOrder: null
metaSortKey: -1687693687435
_type: request_group
- _id: req_a3d5ae6436ee4709bf417f3b2d75c14d
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689968117962
created: 1689610984927
url: '{{ _.baseUrl }}/users/me'
name: deleteUser
description: ''
method: DELETE
body:
mimeType: application/json
text: |-
{
"password": "{{ _.userPassword }}"
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
prefix: Bearer
token: '{{ _.userToken }}'
metaSortKey: -1689355230646.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_fcaeaf4842e84aeb9d4e8c009ad2d256
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689101215498
created: 1689099792424
url: '{{ _.baseUrl }}/users/me'
name: getUser
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1689099792424
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_7b8df9f1d4644f50b98057e105030aea
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689968087977
created: 1689964575687
url: '{{ _.baseUrl }}/users/me/boxes/{{ _.boxID }}'
name: getUserBox
description: ''
method: GET
body: {}
parameters: []
headers: []
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1689077668134.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_00546e023f3e4fdeaf8a13b8b2f12d61
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689968108428
created: 1689099845377
url: '{{ _.baseUrl }}/users/me/boxes'
name: getUserBoxes
description: ''
method: GET
body:
mimeType: application/json
text: |-
{
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication:
type: bearer
token: '{{ _.userToken }}'
prefix: Bearer
metaSortKey: -1689055543845
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_0f64bd27cc624942b28e2790750e4c44
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689954467625
created: 1689611278748
url: '{{ _.baseUrl }}/users/password-reset'
name: passwordReset
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"password": "",
"token": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1689055543832.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ce99b2c01b7b44a5bb57ef92717b885a
parentId: fld_be8a4072f9c5460b96e6f28daf2b3532
modified: 1689272880302
created: 1689272523405
url: '{{ _.baseUrl }}/users/refresh-auth'
name: refreshAuth
description: ''
method: POST
body:
mimeType: application/json
text: |-
{
"token": "{{ _.userRefreshToken }}"
}
parameters: []
headers:
- name: Content-Type