-
Notifications
You must be signed in to change notification settings - Fork 0
/
insomnia_requests.yaml
1313 lines (1313 loc) · 40 KB
/
insomnia_requests.yaml
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: 2021-07-11T15:38:57.324Z
__export_source: insomnia.desktop.app:v2021.4.0
resources:
- _id: req_96cc9a1212a44d6db97c6f2b981c8bf2
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1625911088821
created: 1625910816993
url: http://localhost:4000/api/v1/badges/_/DEFAULT/SW
name: Get Badge
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1625910816993
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_968c322f3d47491eae1b7d36da8ea67d
parentId: wrk_e3f71ca7a2484e20ad351c94534cbeb3
modified: 1623665031215
created: 1618405509678
name: Decarb
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1618405509679
_type: request_group
- _id: wrk_e3f71ca7a2484e20ad351c94534cbeb3
parentId: null
modified: 1598546980441
created: 1598546980441
name: Insomnia
description: ""
scope: collection
_type: workspace
- _id: req_75ab656eeeb8436abc1b9b2f0374b556
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624991077542
created: 1619077867301
url: http://localhost:4000/api/v1/users/01f8444d-7f2c-458f-933e-e1a606471a8d
name: Get User
description: ""
method: GET
body:
mimeType: application/json
text: ""
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication: {}
metaSortKey: -1617540191176.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_30db81f2917443dc83e608e8fbd4177d
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1624376432676
created: 1624376432676
name: User
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1624376432676
_type: request_group
- _id: req_704af20ae61f4b67bf76d3717deda01f
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1625914112667
created: 1625913960686
url: http://localhost:4000/api/v1/users/d9983dd0-d328-4375-8c13-cde311b46722/registration-state
name: Get User Registration State
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617540191151.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_38aac5dc8bf04bbabf557ccefbd62f54
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624376438478
created: 1618415914178
url: http://localhost:4000/api/v1/users
name: Create user
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "kapaun.on@gmx.de"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_8717c754bcce49dbb6768aff03f085a2
authentication: {}
metaSortKey: -1617540191126.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_60443fcfc4b2493d9035787fca0d8944
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624376463145
created: 1619090096540
url: http://localhost:4000/api/v1/auth/login
name: Login
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "hello@florian-kapaun.de",
"password": "test123123"
}
parameters: []
headers:
- name: ""
value: ""
id: pair_1463fb316510404cadde8f0e175f2ed4
disabled: true
- name: Content-Type
value: application/json
id: pair_5094d575784b459b911f3e94c02d92d9
authentication: {}
metaSortKey: -1617540191101.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_20a43aeba1af4815a2f5297686a0df6c
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624376445750
created: 1619082939221
url: http://localhost:4000/api/v1/users/cebbe4bb-504b-49bc-8b2c-b7c8ac6e2d3c/password
name: Set User Password
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"password": "test123"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication: {}
metaSortKey: -1617540191076.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ffcee39c1e19407aad5c84e0b93efa8d
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624376452426
created: 1619079797435
url: http://localhost:4000/api/v1/users/2a5a687b-ab3a-410d-871e-f67fed6220bc/reset-verification
name: Reset User Mail Verification
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "hello@florian-kapaun.de"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication: {}
metaSortKey: -1617540191026.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_a992fa507f574fe097551997d1261574
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624740367905
created: 1619091447329
url: http://localhost:4000/api/v1/auth/logout
name: Logout
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "hello@florian-kapaun.de"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication: {}
metaSortKey: -1617540190976.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_b16737460aa94af2946cf3295a50059a
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624740374798
created: 1619080198428
url: http://localhost:4000/api/v1/users/cebbe4bb-504b-49bc-8b2c-b7c8ac6e2d3c/verification
name: Verify User Mail
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"verificationCode": "272497"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication: {}
metaSortKey: -1617540190951.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ca53f4d745884d8f8fd84256aac70834
parentId: fld_30db81f2917443dc83e608e8fbd4177d
modified: 1624740371920
created: 1619091603359
url: http://localhost:4000/api/v1/auth/refresh-token
name: Refresh Token
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "hello@florian-kapaun.de"
}
parameters: []
headers:
- name: ""
value: ""
description: ""
id: pair_f6267f32525844e38e041176f195a001
disabled: true
- name: ""
value: ""
description: ""
id: pair_393a80faab7643129dcb855842ca2ecd
disabled: true
- name: Content-Type
value: application/json
id: pair_f08f4ff5af7d43218173931ee7d60bfe
authentication: {}
metaSortKey: -1617540190926.7188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_4dafbd62fb34415e98c810ad0967361d
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1625055921827
created: 1625055170045
url: http://localhost:4000/api/v1/domains/248e50b4-3cf4-469f-b854-50f95645abc3/emission-estimation
name: Get initial Emission Estimation
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1625055170045
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_c22ae2944d644cc888a2273374108c94
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1624335315818
created: 1624335315818
name: Domain
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1624335315818
_type: request_group
- _id: req_951f32d7d7f14a7c980ed9f2996c6232
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624335356422
created: 1618588610801
url: http://localhost:4000/api/v1/domains
name: Create Domain
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"url": "https://led-lampe-test.de",
"estimatedMonthlyPageViews": 150
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_1463fb316510404cadde8f0e175f2ed4
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWVjby13ZWItdXNlci1pZCI6ImNlYmJlNGJiLTUwNGItNDliYy04YjJjLWI3YzhhYzZlMmQzYyIsIngtZWNvLXdlYi11c2VyLWVtYWlsIjoiaGVsbG9AZmxvcmlhbi1rYXBhdW4uZGUiLCJpYXQiOjE2MTkyNjYyNjcsImV4cCI6MTYxOTI2NzE2N30.uodaAJsJFUFM3lPBM6paMn65u7KmKKqL6PNhK7p3qSI
metaSortKey: -1617721802308
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_8c28db299eeb4c1b9c4e4f02aa53dc12
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624949501603
created: 1618567393325
url: http://localhost:4000/api/v1/domains
name: Get all Domains
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617721802295.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_cdf0e2013e2d4febb625277aab00aa47
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1625912242873
created: 1618588674849
url: http://localhost:4000/api/v1/domains/3ec273b5-da69-46d6-9130-fbbc4447cd2f
name: Get single Domain
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617721802289.25
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_7b1ce8a81bad492abae25fb6c82605c3
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1625912702011
created: 1618648779488
url: http://localhost:4000/api/v1/domains/3ec273b5-da69-46d6-9130-fbbc4447cd2f/pages
name: Get Domain including pages
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617721802283
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_615c4e723bf44be09ce37b3ee7547d21
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624373046947
created: 1624371534245
url: http://localhost:4000/api/v1/domains/florian-kapaun.de/profile
name: Get Domain Profile by URL
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617721802245.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_3aea41a9ddea491086e0c31b4a49d284
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624346681695
created: 1620371748354
url: http://localhost:4000/api/v1/domains/51044be8-6128-4c0d-abae-f1e6e8f59415/ownership-verification
name: Verify Domain Ownership
description: ""
method: POST
body: {}
parameters: []
headers:
- name: ""
value: ""
description: ""
id: pair_3eaf55fe7a0948f9932537fe4ed840d6
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWRlY2FyYi11c2VyLWlkIjoiNTIwZDAzM2YtNTczNy00MmM5LTg4OWQtZWE2NWQ3Y2E4Nzc0IiwieC1kZWNhcmItdXNlci1lbWFpbCI6ImhlbGxvQGZsb3JpYW4ta2FwYXVuLmRlIiwiaWF0IjoxNjI0MzQ2NjcxLCJleHAiOjE2MjQzNDc1NzF9.dpa3oPMn7te1EhVsco68KsXmKrdxMqdvLVcWsKL0OtU
metaSortKey: -1617721802233
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_68580a20d6e0460196da85490fa1edb2
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1625922154038
created: 1620313848229
url: http://localhost:4000/api/v1/users/6dd8ca08-4ed6-4dc7-91b3-f334a3efec94/domains
name: Get a Users Domains
description: ""
method: GET
body: {}
parameters: []
headers:
- name: ""
value: ""
description: ""
id: pair_3eaf55fe7a0948f9932537fe4ed840d6
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWRlY2FyYi11c2VyLWlkIjoiNmRkOGNhMDgtNGVkNi00ZGM3LTkxYjMtZjMzNGEzZWZlYzk0IiwieC1kZWNhcmItdXNlci1lbWFpbCI6ImhlbGxvQGZsb3JpYW4ta2FwYXVuLmRlIiwiaWF0IjoxNjI1OTIyMTM4LCJleHAiOjE2MjU5MjMwMzh9.BwG07FZQcwb-VPWVPT0rAPZPzPSS1CXNd0De0mysTYQ
metaSortKey: -1617721802220.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_b6f5c01d5f4244a19c17dfb2f9abacde
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624335369119
created: 1618639230050
url: http://localhost:4000/api/v1/domains/2a44311a-f944-4f85-b06d-4866011267a3
name: Update Domain
description: ""
method: PUT
body:
mimeType: application/json
text: |-
{
"companyName": "Teest GmbH"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_0993f14470334541941f4eca35cac268
- name: ""
value: ""
description: ""
id: pair_3eaf55fe7a0948f9932537fe4ed840d6
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWVjby13ZWItdXNlci1pZCI6ImNlYmJlNGJiLTUwNGItNDliYy04YjJjLWI3YzhhYzZlMmQzYyIsIngtZWNvLXdlYi11c2VyLWVtYWlsIjoiaGVsbG9AZmxvcmlhbi1rYXBhdW4uZGUiLCJpYXQiOjE2MTkyNjM5NTksImV4cCI6MTYxOTI2NDg1OX0.PG8lUXJB4l9xlOJNSuMQdzznix44sTMT8ukeG1_OUsI
metaSortKey: -1617721802217.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_97941f78e36d44feaebeefe9632169ff
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624335352642
created: 1618638394671
url: http://localhost:4000/api/v1/domains/3a00afaf-02a2-43aa-8ddf-d43de0dd917c
name: Delete Domain
description: ""
method: DELETE
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617721802214.25
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_16452d066c254463ac57c8d2b0c25fd3
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624794927683
created: 1620380900265
url: http://localhost:4000/api/v1/domains/23b85bfb-8f21-4013-b26f-7cff9cd02962/views/day
name: Get Domains cummulated PageViews per day
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"timeStart": "2021-04-01 22:01:12",
"timeEnd": "2021-07-01 22:01:12"
}
parameters: []
headers:
- name: ""
value: ""
description: ""
id: pair_3eaf55fe7a0948f9932537fe4ed840d6
- name: Content-Type
value: application/json
id: pair_9a0f7ed533ae482dbb3b5e33c9a44b18
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWRlY2FyYi11c2VyLWlkIjoiNTIwZDAzM2YtNTczNy00MmM5LTg4OWQtZWE2NWQ3Y2E4Nzc0IiwieC1kZWNhcmItdXNlci1lbWFpbCI6ImhlbGxvQGZsb3JpYW4ta2FwYXVuLmRlIiwiaWF0IjoxNjI0NzQxNjU4LCJleHAiOjE2MjQ3NDI1NTh9.1CLthK7wvXp47XK2UEOlfHHeBGVE-AecexqjnltVhbE
metaSortKey: -1617721802158
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_1a14624259c44447bccd368d4177d4f8
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624794932462
created: 1624788706259
url: http://localhost:4000/api/v1/domains/23b85bfb-8f21-4013-b26f-7cff9cd02962/views
name: Get PageViews for each Page of a Domain
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"timeStart": "2021-06-29 22:01:12",
"timeEnd": "2021-07-01 22:01:12"
}
parameters: []
headers:
- name: ""
value: ""
description: ""
id: pair_3eaf55fe7a0948f9932537fe4ed840d6
- name: Content-Type
value: application/json
id: pair_9a0f7ed533ae482dbb3b5e33c9a44b18
authentication:
type: bearer
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ4LWRlY2FyYi11c2VyLWlkIjoiNTIwZDAzM2YtNTczNy00MmM5LTg4OWQtZWE2NWQ3Y2E4Nzc0IiwieC1kZWNhcmItdXNlci1lbWFpbCI6ImhlbGxvQGZsb3JpYW4ta2FwYXVuLmRlIiwiaWF0IjoxNjI0NzQxNjU4LCJleHAiOjE2MjQ3NDI1NTh9.1CLthK7wvXp47XK2UEOlfHHeBGVE-AecexqjnltVhbE
metaSortKey: -1617721802133
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_bebb9f7c2b9e48faaef9266261ad9a53
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624909455502
created: 1618855707975
url: http://localhost:4000/api/v1/domains/617dbba2-cfa8-4118-8ccf-313705ccda4c/emissions
name: Get Domain Emissions
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"timeStart": "2021-01-28 00:01:12",
"timeEnd": "2021-07-28 00:01:12"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_9538716a938547719b8110380b76174c
authentication: {}
metaSortKey: -1617721802108
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_32172dea53734a5c915bbe63af9369c4
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624794213074
created: 1624783231165
url: http://localhost:4000/api/v1/domains/23b85bfb-8f21-4013-b26f-7cff9cd02962/pages/emissions
name: Get Domains Pages current PageViewEmissions
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"itemLimit": 2,
"itemOffset": 1
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_07850b5a896040db80794865503b3ab9
authentication: {}
metaSortKey: -1617679070138.875
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_5a3f2f516db3407cb7ab26da3bc21457
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624796872987
created: 1624783876879
url: http://localhost:4000/api/v1/domains/23b85bfb-8f21-4013-b26f-7cff9cd02962/hosting-emissions
name: Get Domains current DomainHostingEmissions
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617657704154.3125
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_9e9f5f8264b64bafaab442b00d1513ea
parentId: fld_c22ae2944d644cc888a2273374108c94
modified: 1624788105548
created: 1624787687757
url: http://localhost:4000/api/v1/domains/51044be8-6128-4c0d-abae-f1e6e8f59415/offsets/purchased
name: Get cummulated data of Domains purchased Offsets
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1617647021162.0312
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_95edba3da4814166846e7bba977471a9
parentId: fld_9601dd0db0954b75b8d0808267f33d61
modified: 1620889258002
created: 1620889252929
url: https://ew-stage.kapaun.uber.space/api/v1/domains
name: Get all Domains
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1620889252929
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_9601dd0db0954b75b8d0808267f33d61
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1620889241868
created: 1620889241868
name: Stage
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1620889241868
_type: request_group
- _id: req_1f9cd03271ad4efa9b0fee7e0ecc3989
parentId: fld_9601dd0db0954b75b8d0808267f33d61
modified: 1620889324774
created: 1620889307611
url: https://ew-stage.kapaun.uber.space/api/v1/users
name: Register User
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "kapaun4998@gmx.de"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_2d48948bac054098b2daffd824cc1847
authentication: {}
metaSortKey: -1619948352551
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_db9f02d58753433599f16a332696f69c
parentId: fld_9601dd0db0954b75b8d0808267f33d61
modified: 1620889362798
created: 1620889345784
url: https://ew-stage.kapaun.uber.space/api/v1/auth/login
name: Login
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"email": "hello@florian-kapaun.de",
"password": "test123123"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_2d48948bac054098b2daffd824cc1847
authentication: {}
metaSortKey: -1619477902362
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_36d8316e0df846c48e14f162d1277702
parentId: fld_4e87476c620b4669a70181f6a7fcc8cc
modified: 1619010292146
created: 1619007452173
url: https://public.ecologi.com/impact/trees
name: Purchase Trees
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"number": 1,
"name": null,
"test": true
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_a73e7010b06f4504ae85d1c30cabffaa
authentication:
type: bearer
token: cd8c9c1e-5041-21bb-a1c9-3ccbe1cadcc6
metaSortKey: -1619007452173
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_4e87476c620b4669a70181f6a7fcc8cc
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1619007440554
created: 1619007440554
name: Ecologi
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1619007440554
_type: request_group
- _id: req_b35c5e57933547b8bc9ca19f25bd22b7
parentId: fld_4e87476c620b4669a70181f6a7fcc8cc
modified: 1619010331070
created: 1619010221280
url: https://public.ecologi.com/impact/carbon
name: Purchase Carbon Offsets
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"number": 3.15,
"units": "KG",
"test": true
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_a73e7010b06f4504ae85d1c30cabffaa
authentication:
type: bearer
token: cd8c9c1e-5041-21bb-a1c9-3ccbe1cadcc6
metaSortKey: -1618711683175.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_e56855e912d744b5a7cf36663aa24029
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1618405516239
created: 1618405514514
url: http://localhost:4000/api/v1
name: API Status
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1618405514514
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_15116d8b1c304f15b7ac0ae0699deef6
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1625908467184
created: 1618754516727
url: http://localhost:4000/api/v1/sandbox/
name: Sandbox
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"subscription": "sub_JpGnX9o4gNBl4x"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_0ef6f33c951e4212ac75444d805dd543
authentication: {}
metaSortKey: -1618063658361
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_899935cf304e4514b5b6330a3677adf2
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1624968575462
created: 1620638231133
url: http://localhost:4000/api/v1/sandbox
name: Sandbox2
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"id": "5351ba61-cb66-4296-a3b6-53304ebb0d14"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_8acaaeecb0264aa6ab90608c5d318cc8
authentication: {}
metaSortKey: -1618020926341.875
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_8f5889c4ad11494085e9bd5d6e1f4d09
parentId: fld_968c322f3d47491eae1b7d36da8ea67d
modified: 1624960412734
created: 1624909553920
url: http://localhost:4000/api/v1/pageviews