-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEA_Insomnia.yaml
1958 lines (1958 loc) · 56.9 KB
/
DEA_Insomnia.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: 2023-12-14T07:58:54.323Z
__export_source: insomnia.desktop.app:v8.4.5
resources:
- _id: req_6f66bef356bc43eab8ccfa5d2cff2700
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866302311
created: 1683865436207
url: https://{{cognitoDomainName}}.auth.{{region}}.amazoncognito.com/oauth2/authorize
name: GET Oauth2/Authorize
description: ""
method: GET
body: {}
parameters:
- id: pair_e40699909e0242ba874e92345fe6c302
name: response_type
value: code
description: ""
- id: pair_51a73ec212c14b61b93fd3195b69623f
name: client_id
value: "{{cognitoClientId}}"
description: ""
- id: pair_5488437a0a0c414aa47ff85d0fbcc258
name: redirect_uri
value: "{{deaApiUrl}}ui/auth-test"
description: ""
- id: pair_47e17b3cbe1841c5b98298e2dff81154
name: code_challenge_method
value: S256
description: ""
- id: pair_6ec046367f70432f9026d074545277f3
name: code_challenge
value: puInudFiZFpUk3mV3kLBYlPlnbxmOx46cXqD3SkFG5Y
description: ""
headers: []
authentication: {}
metaSortKey: -1683865216739.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_d4da873fe6fd4f018495e12e93e1fddf
parentId: wrk_01f26046da65445daff05b4377c4dfdf
modified: 1683904555679
created: 1683865436206
name: Auth
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1678933323918.625
_type: request_group
- _id: wrk_01f26046da65445daff05b4377c4dfdf
parentId: null
modified: 1701978917956
created: 1701978917956
name: DEA Insomnia Config
description: ""
scope: design
_type: workspace
- _id: req_281fd4d594cc4aefac7e39d2cfaada06
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866310303
created: 1683865436216
url: "{{deaApiUrl}}auth/{{authCode}}/token"
name: POST get-token
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"codeVerifier": "TestPKCE"
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_f2fd36ecd7ee42c48c205275aebbecf0
- id: pair_bdfddb84b1b041f6a6ff54083b9cefbf
name: callback-override
value: "{{deaApiUrl}}ui/auth-test"
description: ""
authentication: {}
metaSortKey: -1683865215775.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_2c490b3abcbe4995bc4dd9643a115d07
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683869193894
created: 1683866843517
url: https://cognito-identity.{{region}}.amazonaws.com/
name: POST get-identity-id
description: ""
method: POST
body:
mimeType: application/json
text: >-
{
"IdentityPoolId":"{{identityPoolId}}",
"Logins":
{
"cognito-idp.{{region}}.amazonaws.com/{{userPoolId}}":"{{ _.idToken }}"
}
}
parameters: []
headers:
- name: Content-Type
value: application/x-amz-json-1.1
id: pair_01e1768f4723406382ab54730e5f8a83
disabled: false
- id: pair_42cdaa7f50c94a63979970b4ec0997be
name: X-Amz-Target
value: AWSCognitoIdentityService.GetId
description: ""
disabled: false
authentication: {}
metaSortKey: -1683865215654.8594
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_b7e66adcaced464ca0e69c8512678cfd
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683869297700
created: 1683866499890
url: https://cognito-identity.{{region}}.amazonaws.com/
name: POST idp-credentials
description: ""
method: POST
body:
mimeType: application/json
text: >-
{
"IdentityId":"{{identityId}}",
"Logins":
{
"cognito-idp.{{region}}.amazonaws.com/{{userPoolId}}":"{{ _.idToken }}"
}
}
parameters: []
headers:
- name: Content-Type
value: application/x-amz-json-1.1
id: pair_b587f6d708634baab2e225ecf00fd49a
- id: pair_758df4d12b9d4dd0adf8a48f69b5a00e
name: X-Amz-Target
value: AWSCognitoIdentityService.GetCredentialsForIdentity
description: ""
authentication: {}
metaSortKey: -1683865215534.3438
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_513bfc2c191b494b9dc726dfbd318b8f
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866054186
created: 1683865436219
url: "{{deaApiUrl}}auth/refreshToken"
name: POST refresh-token
description: ""
method: POST
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1683865215293.3125
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_bedba58d886e4c678efbf5b42fdee739
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866486358
created: 1683865436221
url: "{{deaApiUrl}}auth/revokeToken"
name: POST revokeToken
description: ""
method: POST
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1683865215052.2812
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_5262d1d564f6474fbd3162f714831a0c
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866195147
created: 1683865436211
url: "{{deaApiUrl}}auth/loginUrl"
name: GET loginUrl
description: ""
method: GET
body: {}
parameters:
- id: pair_cadd9f0cb8c3408b9e9d9629d7780b34
name: callbackUrl
value: "{{ _.deaApiUrl }}ui/login"
description: ""
headers: []
authentication: {}
metaSortKey: -1683865214811.25
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_c34ec8570f804466a8458b28a708caf3
parentId: fld_d4da873fe6fd4f018495e12e93e1fddf
modified: 1683866205940
created: 1683865436213
url: "{{deaApiUrl}}auth/logoutUrl"
name: GET logoutUrl
description: ""
method: GET
body: {}
parameters:
- id: pair_85897304f3ea4a91957a028c097b5444
name: callbackUrl
value: "{{ _.deaApiUrl }}ui/login"
description: ""
headers: []
authentication: {}
metaSortKey: -1683865213847.125
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_19ace4df1c6a42a0afcfac7c1ebf23c7
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873005949
created: 1683872994961
url: "{{deaApiUrl}}cases/{{caseUlid}}/scopedInformation"
name: GET case scoped information
description: ""
method: GET
body: {}
parameters: []
headers:
- id: pair_7e05d836487844049fefbcaf3e24db5c
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{region}}"
service: execute-api
metaSortKey: -1683872192810.75
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_1e89808be4094b3a8ca131d24da25b49
parentId: wrk_01f26046da65445daff05b4377c4dfdf
modified: 1683904559490
created: 1683872184563
name: Privileged Endpoints
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1678686731089.4062
_type: request_group
- _id: req_3f6d61ef485a4ec187e22893eece299b
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873000713
created: 1683865436226
url: "{{deaApiUrl}}cases/all-cases?limit=5"
name: GET all-cases
description: ""
method: GET
body: {}
parameters: []
headers:
- id: pair_7e05d836487844049fefbcaf3e24db5c
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{region}}"
service: execute-api
metaSortKey: -1683872192699.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_d4bb2a7787e147b597b5b7d8647c7c10
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683872202842
created: 1683865436238
url: "{{ _.deaApiUrl }}cases/{{caseUlid}}/details"
name: DELETE case
description: ""
method: DELETE
body: {}
parameters: []
headers:
- id: pair_dce20185857348429e86294a7dec2a72
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{region}}"
service: execute-api
metaSortKey: -1683872192588
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_a7b639cb3c544474a6f3ba781f4fd19b
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873061005
created: 1683865436231
url: "{{ _.deaApiUrl }}cases/{{caseUlid}}/owner"
name: POST create case owner
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"userUlid": "{{userUlid}}",
"caseUlid": "{{caseUlid}}",
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_0f9f123ac68a452caf8f33620b44a8eb
- id: pair_a3e62d55254f4fe6a7d1979c449d18c3
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{region}}"
service: execute-api
metaSortKey: -1683872192538
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_4b6e9a512dcc4ad085daafceaac5b7fa
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873114859
created: 1683873087656
url: "{{ _.deaApiUrl }}users/{{userUlid}}/audit/{{ _.auditId }}/csv"
name: GET case user audit
description: ""
method: GET
body: {}
parameters: []
headers:
- id: pair_c9caf26fce5240e898f7d85e5c1a6109
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication: {}
metaSortKey: -1683872192488
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_66bbf19c56624572829b16f03f5fa821
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873186021
created: 1683873129477
url: "{{ _.deaApiUrl }}users/{{ _.userUlid }}/audit"
name: POST request case user audit
description: ""
method: POST
body: {}
parameters:
- id: pair_432852043b2e4ca9bae23e20fdf62997
name: from
value: ""
description: ""
- id: pair_d03e3387ccec4849a333433f2f6a87fe
name: to
value: ""
description: ""
headers:
- id: pair_c9caf26fce5240e898f7d85e5c1a6109
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication: {}
metaSortKey: -1683872192475.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_e3b71d1460eb4ff2b252a561fb3aa6f7
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873220820
created: 1683873183302
url: "{{ _.deaApiUrl }}system/audit/{{ _.auditId }}/csv"
name: GET system audit
description: ""
method: GET
body: {}
parameters: []
headers:
- id: pair_c9caf26fce5240e898f7d85e5c1a6109
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication: {}
metaSortKey: -1683872192472.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_706371cde7ff470eae2e14fcf519f571
parentId: fld_1e89808be4094b3a8ca131d24da25b49
modified: 1683873227444
created: 1683873218730
url: "{{ _.deaApiUrl }}system/audit"
name: POST request system audit
description: ""
method: POST
body: {}
parameters:
- id: pair_432852043b2e4ca9bae23e20fdf62997
name: from
value: ""
description: ""
- id: pair_d03e3387ccec4849a333433f2f6a87fe
name: to
value: ""
description: ""
headers:
- id: pair_c9caf26fce5240e898f7d85e5c1a6109
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication: {}
metaSortKey: -1683872192469.25
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_52280745d98d45a0b1c0a3581690524d
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539122845
created: 1701978966330
url: "{{ _.deaApiUrl }}datavaults"
name: POST datavaults
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"name": "",
"description": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
id: pair_229a28a8edb44bf1834c93fc719139ab
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1701978966330
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_6c4198840c55480da17692ea0f5aa2ac
parentId: wrk_01f26046da65445daff05b4377c4dfdf
modified: 1701978962940
created: 1701978942653
name: DataVault MDI
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1678563434674.7969
_type: request_group
- _id: req_4b0f0f0cc710464bad2fe8592726279e
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539236510
created: 1702539144057
url: "{{ _.deaApiUrl }}datavaults"
name: GET datavaults
description: ""
method: GET
body: {}
parameters: []
headers:
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
- id: pair_9ed3a83e0633499fb868088baccb46ec
name: Content-Type
value: application/json
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1692925579570.375
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_7d3d2a12c091452cba2263802bf40f97
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539285790
created: 1702539184704
url: "{{ _.deaApiUrl }}datasync/tasks"
name: GET datasync tasks
description: ""
method: GET
body: {}
parameters: []
headers:
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
- id: pair_8ec1e49c9ef5494686b79d55efc54768
name: Content-Type
value: application/json
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1691793906225.4219
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_29cebb0bdedb43d2990f59335ce05682
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539346934
created: 1702539277431
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/details"
name: GET datavault by id
description: ""
method: GET
body: {}
parameters: []
headers:
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
- id: pair_9ed3a83e0633499fb868088baccb46ec
name: Content-Type
value: application/json
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1690662232880.4688
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_814d19bb49864064bb93c197e8b9dedb
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539676268
created: 1702539654691
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/files/{{
_.dataVaultFileId }}/info"
name: GET datavault file details by id
description: ""
method: GET
body: {}
parameters: []
headers:
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
- id: pair_9ed3a83e0633499fb868088baccb46ec
name: Content-Type
value: application/json
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1690450044128.29
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_160082afcd75420086def85a96b4220b
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539577649
created: 1702539538561
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/caseAssociations"
name: POST case association
description: ""
method: POST
body:
mimeType: application/json
text: |
{
"caseUlids": ["",""],
"fileUlids": ["", ""]
}
parameters: []
headers:
- name: Content-Type
value: application/json
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1690237855376.1113
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_b2601a5ef7b84811a387da6e23f9e57f
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539848635
created: 1702539801899
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/files/{{
_.dataVaultFileId }}/caseAssociations"
name: DEL case association
description: ""
method: DELETE
body:
mimeType: application/json
text: |
{
"caseUlids": ["",""]
}
parameters: []
headers:
- name: Content-Type
value: application/json
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1690131761000.022
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_45c6bfc133244fcbb19f0a631000f1f5
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539630796
created: 1702539608278
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/tasks"
name: POST datavault task
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"name": "",
"description": "",
"sourceLocationArn": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1690025666623.9326
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_2feafa7424734c3c9e3ad4a7533c9157
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539781894
created: 1702539729249
url: "{{ _.deaApiUrl }}datavaults/tasks/{{ _.dataSyncTaskId }}/executions"
name: POST datavault execution
description: ""
method: POST
body:
mimeType: application/json
text: |-
{
"taskArn": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1689919572247.8433
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_528c66c76c1248e7a621d8741ee5d956
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539480855
created: 1702539375648
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/details"
name: Update datavault details
description: ""
method: PUT
body:
mimeType: application/json
text: |-
{
"ulid": "{{ _.dataVaultUlid }}",
"name": "",
"description": ""
}
parameters: []
headers:
- name: Content-Type
value: application/json
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1689813477871.754
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_59c838183f004de5a8c9151af5918f02
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702539513451
created: 1702539475910
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/files"
name: GET datavault files by id at filePath
description: ""
method: GET
body: {}
parameters:
- id: pair_565726a05594426eb363428b602eca5e
name: filePath
value: /yourDirectory/
description: ""
disabled: true
headers:
- name: idToken
value: "{{ _.idToken }}"
id: pair_0042c33970ea49ce8c122147b24777fa
- id: pair_9ed3a83e0633499fb868088baccb46ec
name: Content-Type
value: application/json
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1688964722863.039
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_5324cb359f814422b36bbbefe53ec576
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702540566853
created: 1702540539555
url: "{{ _.deaApiUrl }}datavaults/{{ _.dataVaultUlid }}/files/{{
_.dataVaultFileId }}/audit"
name: POST request data vault file audit
description: ""
method: POST
body: {}
parameters:
- id: pair_432852043b2e4ca9bae23e20fdf62997
name: from
value: ""
description: ""
- id: pair_d03e3387ccec4849a333433f2f6a87fe
name: to
value: ""
description: ""
headers:
- id: pair_c9caf26fce5240e898f7d85e5c1a6109
name: idToken
value: "{{ _.idToken }}"
description: ""
authentication:
type: iam
disabled: false
accessKeyId: "{{ _.accessKeyId }}"
secretAccessKey: "{{ _.secretAccessKey }}"
sessionToken: "{{ _.sessionToken }}"
region: "{{ _.region }}"
service: execute-api
metaSortKey: -1688964722763.039
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_0bd311cd460e460abec71ce42b0ec102
parentId: fld_6c4198840c55480da17692ea0f5aa2ac
modified: 1702540693097
created: 1702540623470