-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-apis.postman_collection.json
1236 lines (1236 loc) · 69.4 KB
/
service-apis.postman_collection.json
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
{
"id": "6eb13776-1cb4-e971-111a-3454dbc99950",
"name": "service-apis",
"description": "",
"order": [
"11459baf-b4e7-11c6-cbc0-08b2906b0cf1",
"1dc98f9c-0f77-ce9f-b25c-497891d0899d"
],
"folders": [
{
"owner": 0,
"lastUpdatedBy": "251240",
"lastRevision": 100605285,
"id": "2f2285a0-e1a4-98a8-bf45-82936f2f54d6",
"name": "Alarm",
"description": "",
"order": [
"e6c113cb-0997-ad10-d7d2-19b27078bd9b",
"a70d52b4-07e7-603d-1e48-b865114d02ef",
"277c63d8-90d5-5447-b461-6e37cba2ed8c",
"b88feeb6-a529-469e-f340-ff2655bdc40c"
]
},
{
"id": "e42f4e43-045c-d8e0-3c94-a73c2686cc26",
"name": "Analysis Evidence",
"description": "",
"order": [
"a9cbc5b1-b11c-754d-943a-69a46f9a974a"
],
"owner": 0
},
{
"id": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85",
"name": "Asset APM",
"description": "",
"order": [
"c86a88ed-816f-0a98-6f8c-8108771e771a",
"fff9d2e9-c734-de99-e765-2e209448e20d",
"8ecff6e3-7262-346c-8ee4-c3297a8edb8e",
"5d28dd06-36ae-6676-570d-18d9207e36a5",
"5767fc9a-4776-4608-2abb-27a1b984e7a2",
"c64aa3d0-72f2-8d74-7075-d28bed0a377d",
"8aa029c7-48ec-079d-a83c-cd21f9cc2415",
"d34dd61a-90c3-03a7-011e-9bab969388f7",
"87720832-f797-e066-b304-b29288a6e1c3",
"d81b1488-35ec-edd3-2322-2e13745667c4",
"e4913824-d75c-be65-6c21-ca57f5ef1130",
"c77e5999-2a6b-2416-d6d6-af0c8c803c17",
"c363d000-dcd4-1c5a-5dd6-82d33f08d1e0",
"853ba07d-7614-e213-32d1-2d9460faf2c4"
],
"owner": 0,
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"id": "cba7612a-cf99-6783-ab59-69fbce8bbb2e",
"name": "Asset Predix",
"description": "",
"order": [
"23953524-90ac-609f-4e11-bf34a2138dee"
],
"owner": 0,
"collectionId": "af1236ef-b7b3-964a-0ca1-3c0d20506c2b"
},
{
"id": "2a2a78cc-dd6b-94e7-3026-0abaeea528f3",
"name": "Blob",
"description": "",
"order": [
"c89cb2ce-f97e-4db9-7a3e-605c8e1c3886",
"24e34c24-c702-303a-b1f1-792f339e761a"
],
"owner": 0
},
{
"id": "114e3f2b-c8e8-f14b-d65e-62f6a720541a",
"name": "Cases",
"description": "",
"order": [
"23dd4538-9100-3f0e-bd9a-7095a3fc7a64",
"74f02770-680f-0504-162e-c6ea28c18cb3",
"b7901c88-e2b6-9d9a-e6ce-d4b6290e5a03",
"4440032b-054d-f370-9ff9-92b8ed0f5ed1",
"3862136f-858f-b7d3-821e-9c9e75dd04c5"
],
"owner": 0
},
{
"owner": 0,
"lastUpdatedBy": "251240",
"lastRevision": 100605283,
"id": "bfbbc252-b0f5-b0f1-ac6b-0559fe458cfc",
"name": "Filter",
"description": "",
"order": [
"2e6c7a4f-00da-7c33-20b0-22601c73094c",
"d2bba6cd-81c9-10ab-380f-6fe84e8c7043",
"d9f419c1-f0dc-570e-00ef-de2ce552ba85"
]
},
{
"owner": 0,
"lastUpdatedBy": "251240",
"lastRevision": 100605286,
"id": "8144d710-73be-9f43-aa10-4fffacbedcda",
"name": "Gateway",
"description": "",
"order": [
"781862bd-36f8-3c39-d42a-9c47ddd84196",
"799af14c-374c-86cf-7703-da60f9034bb7"
]
},
{
"owner": 0,
"lastUpdatedBy": "251240",
"lastRevision": 100605284,
"id": "52a40ae3-fef9-0026-dad4-5b5a32bdd3f4",
"name": "Notes",
"description": "",
"order": [
"555ebd48-e8df-b54f-f732-68bd489b5065",
"09c2bc52-2ebd-ff28-a356-088e7524f7c3"
]
},
{
"owner": 0,
"lastUpdatedBy": "251240",
"lastRevision": 100605287,
"id": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"name": "Profile",
"description": "",
"order": [
"b43b91e2-cf7b-064b-3bf4-b12093e099fb",
"efc6908e-59d7-49e6-1db1-62e1ea9adef3",
"9f01cd7c-4eae-169f-9774-17b7995c80ce",
"da1831e3-5e68-8b5e-4958-eba37f124bc4",
"eb3af0e3-22ca-8792-9355-5085a143050d",
"0ca1128f-31dc-e4df-9d26-f4a8340cae94",
"a29b9b1b-6bfd-40f4-b650-51794b217811",
"7e0782be-2249-7071-38a6-608b74073d73",
"d40d181c-c9ac-8e38-a905-2a5a0dbd85ee",
"595018c4-5c54-9ad0-b5d4-4d38a9386204"
]
},
{
"id": "4730f826-0dcb-8b6c-073e-ddc5e8190c55",
"name": "Timeseries APM",
"description": "",
"order": [
"5cae1af4-6d6b-db02-800b-2b3b9ffe421a",
"01f5256d-6476-7de6-88c3-2dced0f41a5b",
"03344cbc-144c-571b-0685-595137188198"
],
"owner": 0,
"collectionId": "af1236ef-b7b3-964a-0ca1-3c0d20506c2b"
}
],
"timestamp": 1468988221602,
"owner": 0,
"remoteLink": "",
"public": false,
"published": false,
"requests": [
{
"id": "01f5256d-6476-7de6-88c3-2dced0f41a5b",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json\nAccept: application/json\n",
"url": "{{apm.timeseries.url}}/data/add?file_type=json",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468990733370,
"name": "time-series-ingest.json",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"rawModeData": "{\n \"tags\": [\n {\n \"tagId\": \"AVD-ASSET-GrandCHILD01-ID.TempMatlab2.mean\",\n \"errorCode\": null,\n \"errorMessage\": null,\n \"data\": [\n {\n \"ts\": 1462089000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462114000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462190000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463918000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463994000,\n \"v\": \"105.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456905000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456930000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458658000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462442000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462467000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457006000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462618000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458910000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458028000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458644000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457017000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462100000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456992000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463929000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456916000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458720000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462176000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462201000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457535000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462795000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463299000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457010000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462446000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457539000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459267000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459443000,\n \"v\": \"-100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462798000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458032000,\n \"v\": \"103.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462118000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462194000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463922000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463997000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1464022000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456909000,\n \"v\": \"103.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456934000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458662000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462093000,\n \"v\": \"105.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458723000,\n \"v\": \"103.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456920000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458648000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462456000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462104000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463932000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457020000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462179000,\n \"v\": \"105.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462204000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456995000,\n \"v\": \"103.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457348000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459000000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462809000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457524000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459177000,\n \"v\": \"-80.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463302000,\n \"v\": \"105.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462802000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463331000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463306000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462197000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457013000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456912000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456938000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462096000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462122000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463925000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457164000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462449000,\n \"v\": \"3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457528000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462107000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456999000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457024000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458752000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458727000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456923000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458651000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462435000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462460000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458903000,\n \"v\": \"-3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462183000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462208000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462111000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462186000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463914000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457168000,\n \"v\": \"103.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462453000,\n \"v\": \"3.667\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457344000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462806000,\n \"v\": \"3.889\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458036000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458061000,\n \"v\": \"3.223\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457002000,\n \"v\": \"3.444\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462438000,\n \"v\": \"105.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462464000,\n \"v\": \"4.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456927000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458655000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463990000,\n \"v\": \"150.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458907000,\n \"v\": \"-3.556\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462615000,\n \"v\": \"100.0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457532000,\n \"v\": \"3.778\",\n \"q\": \"3\"\n }\n ]\n },\n {\n \"tagId\": \"AVD-ASSET-GrandCHILD01-ID.TempMatlab2.deviation\",\n \"errorCode\": null,\n \"errorMessage\": null,\n \"data\": [\n {\n \"ts\": 1462089000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462114000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462190000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463918000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463994000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456905000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456930000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458658000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462442000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462467000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457006000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462618000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458910000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458028000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458644000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457017000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462100000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456992000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463929000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456916000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458720000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462176000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462201000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457535000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462795000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463299000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457010000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462446000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457539000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459267000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459443000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462798000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458032000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462118000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462194000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463922000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463997000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1464022000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456909000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456934000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458662000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462093000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458723000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456920000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458648000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462456000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462104000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463932000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457020000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462179000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462204000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456995000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457348000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459000000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462809000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457524000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1459177000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463302000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462802000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463331000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463306000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462197000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457013000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456912000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456938000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462096000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462122000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463925000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457164000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462449000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457528000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462107000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456999000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457024000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458752000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458727000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456923000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458651000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462435000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462460000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458903000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462183000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462208000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462111000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462186000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463914000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457168000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462453000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457344000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462806000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458036000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458061000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457002000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462438000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462464000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1456927000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458655000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1463990000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1458907000,\n \"v\": \"0\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1462615000,\n \"v\": \"1\",\n \"q\": \"3\"\n },\n {\n \"ts\": 1457532000,\n \"v\": \"0\",\n \"q\": \"3\"\n }\n ]\n }\n ]\n}",
"folder": "4730f826-0dcb-8b6c-073e-ddc5e8190c55"
},
{
"id": "03344cbc-144c-571b-0685-595137188198",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"url": "{{apm.timeseries.url}}/data?tagList=20881.actual_angle_blade_1_sd&operation=raw&startTime=1",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468991385131,
"name": "time-series-get-for-tag-id",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "4730f826-0dcb-8b6c-073e-ddc5e8190c55"
},
{
"folder": "52a40ae3-fef9-0026-dad4-5b5a32bdd3f4",
"id": "09c2bc52-2ebd-ff28-a356-088e7524f7c3",
"name": "Read All Notes",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": "html",
"description": "",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.notes.url}}/notes?parentEntityUuid=E79A1A468A514E66B6D01F545966919F&sortBy=CREATE_DATE&sortOrder=ASC",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "0ca1128f-31dc-e4df-9d26-f4a8340cae94",
"name": "Read Profile Type by Id",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": null,
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profileTypes/1",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"id": "11459baf-b4e7-11c6-cbc0-08b2906b0cf1",
"headers": "Accept: application/json\nContent-Type: text/plain\n",
"url": "https://apm-env-var-hackapm.run.aws-usw02-pr.ice.predix.io/v1/environment/postman",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "if (responseCode.code !== 200) {\n return;\n}\n\nvar data = JSON.parse(responseBody);\n\n_.forEach(data, function(value, key) {\n postman.setEnvironmentVariable(key, value);\n});\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469127664571,
"name": "init-environment",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"rawModeData": "###############################################\n# Please change these properties according to your environment\n\nweb.app.url=https://apm-tubs-hackapm-basic.run.aws-usw02-pr.ice.predix.io/sample1\n\nadmin.user.name=sample1-admin\nadmin.password=test\n\nmgr.user.name=user1\nmgr.password=P@ssword1\n\nspace.name=hackapm\n\n###############################################\n\nuse.proxy=false\nproxy.host=sjc1intproxy01.crd.ge.com\nproxy.port=8080\n\n# Following properties will be set by default.\n#space.name\n#uaa.instance.id\n#uaa.host.name\n#url.domain\n#tenant.uuid\n#http.protocol\n\nuaa.url=${uaa.base.url}/oauth/token\n\nconfig.service.url=${http.protocol}://apm-config-${space.name}.${url.domain}/v1\napm.analytic.url=${http.protocol}://apm-analytic-${space.name}.${url.domain}/v1\napm.asset.url=${http.protocol}://apm-asset-${space.name}.${url.domain}/v1\napm.asset.adapter.url=${http.protocol}://apm-s95-adapter-${space.name}.${url.domain}/v1\napm.timeseries.url=${http.protocol}://apm-timeseries-services-${space.name}.${url.domain}/v1\napm.alarm.url=${http.protocol}://apm-alarm-management-${space.name}.${url.domain}/v1\napm.alert.profile.url=${http.protocol}://apm-profile-${space.name}.${url.domain}/v1\napm.filter.url=${http.protocol}://apm-filtering-meta-model-${space.name}.${url.domain}/v1\napm.gateway.url=${http.protocol}://apm-gateway-${space.name}.${url.domain}/v1\napm.notes.url=${http.protocol}://apm-note-management-${space.name}.${url.domain}/v1\napm.adapter.config.provider=${http.protocol}://apm-adapter-config-provider-${space.name}.${url.domain}/v1\napm.security.provisioning.base.url=${http.protocol}://apm-access-control-${space.name}.${url.domain}/v1\n\nservice.instance.px_acs.name=predix-acs\n# The following properties all belong to predix-acs as they have prefix \"service.instance.acs\"\n# Also, the values are the paths in the \"predix-acs\" object of the service instances response JSON\nservice.instance.px_acs.uri=/credentials/uri\nservice.instance.px_acs.zone.header.name=/credentials/zone/http-header-name\nservice.instance.px_acs.zone.header.value=/credentials/zone/http-header-value\nservice.instance.px_acs.oauth.scope=/credentials/zone/oauth-scope\n# The following property will be initialized with the authorization \"bearer <token>\" to talk to predix-acs\nservice.instance.px_acs.token=\n\nservice.instance.px_asset.name=predix-asset\nservice.instance.px_asset.uri=/credentials/uri\nservice.instance.px_asset.zone.header.name=/credentials/zone/http-header-name\nservice.instance.px_asset.zone.header.value=/credentials/zone/http-header-value\nservice.instance.px_asset.oauth.scope=/credentials/zone/oauth-scope\nservice.instance.px_asset.token=\n\nservice.instance.px_catalog.name=predix-analytics-catalog\nservice.instance.px_catalog.uri=/credentials/catalog_uri\nservice.instance.px_catalog.zone.header.name=/credentials/zone-http-header-name\nservice.instance.px_catalog.zone.header.value=/credentials/zone-http-header-value\nservice.instance.px_catalog.oauth.scope=/credentials/zone-oauth-scope\nservice.instance.px_catalog.token=\n\n#service.instance.px_runtime.name=predix-analytics-runtime\n#service.instance.px_runtime.config.uri=/credentials/config_uri\n#service.instance.px_runtime.execution.uri=/credentials/execution_uri\n#service.instance.px_runtime.monitoring.uri=/credentials/monitoring_uri\n#service.instance.px_runtime.scheduler.uri=/credentials/scheduler_uri\n#service.instance.px_runtime.zone.header.name=/credentials/zone-http-header-name\n#service.instance.px_runtime.zone.header.value=/credentials/zone-http-header-value\n#service.instance.px_runtime.oauth.scope=/credentials/zone-oauth-scope\n#service.instance.px_runtime.token=\n\nservice.instance.px_timeseries.name=predix-timeseries\nservice.instance.px_timeseries.uri=/credentials/query/uri\nservice.instance.px_timeseries.zone.header.name=/credentials/query/zone-http-header-name\nservice.instance.px_timeseries.zone.header.value=/credentials/query/zone-http-header-value\nservice.instance.px_timeseries.oauth.scope=/credentials/query/zone-token-scopes\nservice.instance.px_timeseries.token=\n\nuaa.base.url=${http.protocol}://${uaa.instance.id}.${uaa.host.name}.${url.domain}\nuaa.token.issuer.regex=^${uaa.url}/oauth/token$\nconfig.component.name=predixServiceInstances\n"
},
{
"id": "1dc98f9c-0f77-ce9f-b25c-497891d0899d",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"url": "https://apm-ext-service-hackapm.run.aws-usw02-pr.ice.predix.io/v1/assets",
"pathVariables": {},
"preRequestScript": "",
"method": "GET",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"data": [],
"dataMode": "params",
"name": "starter-micro-service-api",
"description": "",
"descriptionFormat": "html",
"time": 1469074160181,
"version": 2,
"responses": [],
"tests": "",
"currentHelper": "normal",
"helperAttributes": {}
},
{
"id": "23953524-90ac-609f-4e11-bf34a2138dee",
"headers": "Authorization: {{service.instance.px_asset.token}}\nContent-Type: application/json\n{{service.instance.px_catalog.zone.header.name}}: {{service.instance.px_asset.zone.header.value}}\n",
"url": "{{service.instance.px_asset.uri}}/v1/assets",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468991350625,
"name": "assets-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "cba7612a-cf99-6783-ab59-69fbce8bbb2e"
},
{
"id": "23dd4538-9100-3f0e-bd9a-7095a3fc7a64",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\n",
"url": "https://apm-cases-{{env}}.{{domain}}/v1/cases-gateway/cases/9DEED492EB164C81A2DAD4115397142A",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469051919264,
"name": "Read Case By Uuid",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "114e3f2b-c8e8-f14b-d65e-62f6a720541a"
},
{
"id": "24e34c24-c702-303a-b1f1-792f339e761a",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"url": "{{http.protocol}}://apm-blob-storage-{{env}}.{{domain}}/v2/attachments?parentEntityUuid=E050ACFA4345498C8DAE193D7F8B55D3&parentEntityType=Alarm&userOwnerUuid=7449980F6E8843DCB202CA29C7961735&name=Lion.jpg",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [
{
"key": "file",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469056814654,
"name": "Upload attachment",
"description": "Blob post file",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "2a2a78cc-dd6b-94e7-3026-0abaeea528f3"
},
{
"folder": "2f2285a0-e1a4-98a8-bf45-82936f2f54d6",
"id": "277c63d8-90d5-5447-b461-6e37cba2ed8c",
"name": "Patch Alarm",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "Claim an alarm",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\nContent-Type: application/json\n",
"method": "PATCH",
"pathVariables": {},
"url": "{{apm.alarm.url}}/alarms/E79A1A468A514E66B6D01F545966919F?1449255022981",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "[{\n \"op\":\"REPLACE\",\n \"path\":\"/alarmState/name\",\n \"value\":\"Claimed\"\n }]"
},
{
"folder": "bfbbc252-b0f5-b0f1-ac6b-0559fe458cfc",
"id": "2e6c7a4f-00da-7c33-20b0-22601c73094c",
"name": "Read All Filters",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": "html",
"description": "",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.filter.url}}/filterSets/search/byUserIdAndEntityType?entityType=ALARM&userId=2B8C45293AB44865A7D1EAD8E14D0F36",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"id": "3862136f-858f-b7d3-821e-9c9e75dd04c5",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nAccept: application/schema+json\n",
"url": "{{http.protocol}}://apm-cases-{{env}}.{{domain}}/v1/cases/schema",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469052379504,
"name": "Read Case Schema",
"description": "Get Cases Schema",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "114e3f2b-c8e8-f14b-d65e-62f6a720541a"
},
{
"id": "4440032b-054d-f370-9ff9-92b8ed0f5ed1",
"headers": "Authorization: {{mgr.authorization}}\nTenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"url": "https://apm-cases-{{env}}.{{domain}}/v1/cases/search?page=0&page_size=20&sort_field=createdOn&sort_order=desc",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469052306913,
"name": "Search Cases",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "114e3f2b-c8e8-f14b-d65e-62f6a720541a",
"rawModeData": "{\n \"filters\":[\n {\n \"operation\":\"eq\",\n \"operand1\":{\n \"path\":\"caseEntity.caseStatus.status\",\n \"type\":\"STRING\",\n \"entity\":\"CASE\",\n \"builderClass\":\"com.ge.apm.filtering.impl.SimpleFilterQueryBuilder\"\n \n },\n \"operand2\":[\"Open\"]\n }\n ]\n}"
},
{
"folder": "52a40ae3-fef9-0026-dad4-5b5a32bdd3f4",
"id": "555ebd48-e8df-b54f-f732-68bd489b5065",
"name": "Create Note",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.notes.url}}/notes",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"text\":\"Test Note\",\"parentEntityUuid\":\"E79A1A468A514E66B6D01F545966919F\",\"parentEntityType\":\"Alarm\",\"userOwnerUuid\":\"2B8C45293AB44865A7D1EAD8E14D0F36\"}"
},
{
"id": "5767fc9a-4776-4608-2abb-27a1b984e7a2",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/siteTypes",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989869765,
"name": "site-types-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "595018c4-5c54-9ad0-b5d4-4d38a9386204",
"name": "Read Profiles as List",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": "html",
"description": "",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profiles/",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"id": "5cae1af4-6d6b-db02-800b-2b3b9ffe421a",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.timeseries.url}}/data/addfile?file_type=json",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [
{
"key": "file",
"type": "file",
"enabled": true,
"value": ""
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468991393978,
"name": "time-series-ingest-json-file",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "4730f826-0dcb-8b6c-073e-ddc5e8190c55"
},
{
"id": "5d28dd06-36ae-6676-570d-18d9207e36a5",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/enterpriseTypes/0035a551-b3ad-3650-adc2-aa436c99f632",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989832829,
"name": "enterprise-types-get-for-uuid",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "74f02770-680f-0504-162e-c6ea28c18cb3",
"headers": "Authorization: bearer eyJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJlMzIxMjUzZC01Y2Y1LTQ2OWUtOTU5MC0zMGViY2IwY2M2ODkiLCJzdWIiOiIyNjE1YTI0My00NjQ0LTQ4NDYtYjFhYy03M2FiMWViM2E1YjEiLCJzY29wZSI6WyJvcGVuaWQiXSwiY2xpZW50X2lkIjoid2ViYXBwLkNDMEMzM0VFM0RCQzQ2MzE5ODE3QzcxOTlCMDEwNEQ3IiwiY2lkIjoid2ViYXBwLkNDMEMzM0VFM0RCQzQ2MzE5ODE3QzcxOTlCMDEwNEQ3IiwiYXpwIjoid2ViYXBwLkNDMEMzM0VFM0RCQzQ2MzE5ODE3QzcxOTlCMDEwNEQ3IiwidXNlcl9pZCI6IjI2MTVhMjQzLTQ2NDQtNDg0Ni1iMWFjLTczYWIxZWIzYTViMSIsIm9yaWdpbiI6Imdlc3NvLXN0YWdpbmctaWRwIiwidXNlcl9uYW1lIjoiNTAyMzg2MzQzIiwiZW1haWwiOiI1MDIzODYzNDNAdW5rbm93bi5vcmciLCJhdXRoX3RpbWUiOjE0NDkyNzM3NjIsInJldl9zaWciOiJiYmQ4MmI3MCIsImlhdCI6MTQ0OTI3Mzc2MiwiZXhwIjoxNDQ5MzYwMTYyLCJpc3MiOiJodHRwczovLzkzMjZmYzAyLTBmOTQtNDY0Ny04ZWUwLWM2ZGMyZjJiNmQzYy5wcmVkaXgtdWFhLXN5c2ludC5ncmMtYXBwcy5zdmMuaWNlLmdlLmNvbS9vYXV0aC90b2tlbiIsInppZCI6IjkzMjZmYzAyLTBmOTQtNDY0Ny04ZWUwLWM2ZGMyZjJiNmQzYyIsImF1ZCI6WyJ3ZWJhcHAuQ0MwQzMzRUUzREJDNDYzMTk4MTdDNzE5OUIwMTA0RDciLCJvcGVuaWQiXX0.aQkSmAJ0325v0gVLMTg1l_RXbGS1Iccdrk_rSAPWCz1Tpqit6gkUS5BcdiKfmTt-P10RgAqutQl2zeaDFkmFUVbFLad7GM4j_mUFRrxSr-jSSNwgnSCVQ5MUXyNsJpvrGK4_oT47xTo50rdMp9yR0_S6xis89wTdZXUs2Y7iKgFRFL8_8XJP_oG6-uR05H0Lf8cRJd-8K9nlsserf8PlH9jYDFAWiivt1p2tI9Eb8gWoMXJjHytZyFGtPTw98AfAESnXuW7FHHIY4Ziz_gi7nfRD4lBVluAxP4-MG0CECrcf8u1kd5SvamSCwi8-Mo2k7cN685Ts-NtCwMuJrz4Ksw\ntenant: 5D24F75DF2F5433C824141BEFEEB2E01\n",
"url": "http://apm-cases-{{env}}.{{domain}}/v1/cases?page=0&pageSize=10",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469051670599,
"name": "Read All Cases",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "114e3f2b-c8e8-f14b-d65e-62f6a720541a"
},
{
"folder": "8144d710-73be-9f43-aa10-4fffacbedcda",
"id": "781862bd-36f8-3c39-d42a-9c47ddd84196",
"name": "Create Task",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.gateway.url}}/jobs",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"taskList\":[{\"taskId\":\"1\",\"type\":\"createAlarm\",\"body\":{\"sample\":\"payload\"},\"links\":[]},{\"taskId\":\"2\",\"type\":\"createCase\",\"body\":{\"sample\":\"payload\"},\"links\":[]}]}"
},
{
"folder": "8144d710-73be-9f43-aa10-4fffacbedcda",
"id": "799af14c-374c-86cf-7703-da60f9034bb7",
"name": "Get Task Status",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": "html",
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.gateway.url}}/jobs/B72B16D5A6684364BA70995A1A9B0BC2/status",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "7e0782be-2249-7071-38a6-608b74073d73",
"name": "Create Profile",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "Name must be unique",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profiles",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"severity\":1,\"name\":\"Test Profile Creation\",\"isActiveProfile\":true,\"isConsumable\":true,\"isTrip\":false,\"description\":\"Test profile\",\"type\":\"{{apm.alert.profile.url}}/profileTypes/1\",\"source\":\"{{apm.alert.profile.url}}/profileSources/1\",\"templates\":[]}"
},
{
"id": "853ba07d-7614-e213-32d1-2d9460faf2c4",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/assets/00a16783-a547-4b00-92ef-7023fd24ac8e",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989528654,
"name": "asset-get-for-uuid",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "87720832-f797-e066-b304-b29288a6e1c3",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/tagTypes",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989598151,
"name": "tag-types-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "8aa029c7-48ec-079d-a83c-cd21f9cc2415",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/segments",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989933608,
"name": "segments-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "8ecff6e3-7262-346c-8ee4-c3297a8edb8e",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/enterpriseTypes",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989797595,
"name": "enterprise-types-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "9f01cd7c-4eae-169f-9774-17b7995c80ce",
"name": "Read Profile Source by Id",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": null,
"description": "",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profileSources/1",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "a29b9b1b-6bfd-40f4-b650-51794b217811",
"name": "Read Profiles by Filter",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profiles/filter?projection=false&page=0&size=20",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"name\":\"\",\"defaultFilterSet\":false,\"filters\":[{\"operation\":\"containsIgnoreCase\",\"operand2\":\"\",\"operand1\":{\"builderClass\":\"com.ge.apm.filtering.impl.SimpleFilterQueryBuilder\",\"displayName\":\"Alarm Name\",\"entity\":\"PROFILE\",\"path\":\"profile.name\",\"type\":\"TEXT\",\"operationTranslations\":{\"containsIgnoreCase\":\"filters.operation.contains\"}}}]}"
},
{
"folder": "2f2285a0-e1a4-98a8-bf45-82936f2f54d6",
"id": "a70d52b4-07e7-603d-1e48-b865114d02ef",
"name": "Read Alarm by Uuid",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": "html",
"description": "",
"headers": "tenant: {{tenant.uuid}}\nAuthorization: {{mgr.authorization}}\n",
"method": "GET",
"pathVariables": {},
"url": "{{apm.alarm.url}}/alarms/E79A1A468A514E66B6D01F545966919F?1449255022981",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950"
},
{
"id": "a9cbc5b1-b11c-754d-943a-69a46f9a974a",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"url": "{{http.protocol}}://apm-analysis-evidence-{{env}}.{{domain}}/v1/gateway/analysis_evidences?parentEntityUuid=E050ACFA4345498C8DAE193D7F8B55D3&parentEntityType=ALARM",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469055953764,
"name": "Read Analysis Evidence By parentEntityUuid and parentEntityType",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"folder": "e42f4e43-045c-d8e0-3c94-a73c2686cc26",
"rawModeData": "{\n \"uuid\" : \"41B6EC952F5746DEB4D1D6CB12BE794D\",\n \"name\" : \"TEST_ANALYSIS_EVIDENCE\",\n \"parentEntityUuid\" : \"parent-entity-uuid\",\n \"parentEntityType\" : \"ALARM\",\n \"userOwnerUuid\" : \"user-owner-uuid\"\n}"
},
{
"folder": "5a5dd9ab-16b7-b5d9-9a02-38f61179b862",
"id": "b43b91e2-cf7b-064b-3bf4-b12093e099fb",
"name": "Create Profile Source",
"dataMode": "raw",
"data": [],
"descriptionFormat": null,
"description": "Name must be unique",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.alert.profile.url}}/profileSources/",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"isActive\":true,\"name\":\"SmartSignal 1\",\"description\":\"SmartSignal\",\"tenantUuid\":\"70A701E8F0594532AB102F2A6FE0BAD7\"}"
},
{
"id": "b7901c88-e2b6-9d9a-e6ce-d4b6290e5a03",
"headers": "Authorization: {{mgr.authorization}}\nTenant: {{tenant.uuid}}\nContent-Type: application/json\n",
"url": "http://apm-cases-{{env}}.{{domain}}/v1/cases/9DEED492EB164C81A2DAD4115397142A",
"preRequestScript": "",
"pathVariables": {},
"method": "PATCH",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469052125718,
"name": "Patch Case",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "114e3f2b-c8e8-f14b-d65e-62f6a720541a",
"rawModeData": "{\n \"symptoms\":\"Test Symptoms\",\n \"diagnosis\":\"Test Diagnosis\",\n \"recommendation\":\"Test Recommendation\"\n}"
},
{
"folder": "2f2285a0-e1a4-98a8-bf45-82936f2f54d6",
"id": "b88feeb6-a529-469e-f340-ff2655bdc40c",
"name": "Read Alarms by Filter",
"dataMode": "raw",
"data": [],
"descriptionFormat": "html",
"description": "",
"headers": "Authorization: {{mgr.authorization}}\ntenant: {{tenant.uuid}}\nContent-Type: application/json;charset=UTF-8\n",
"method": "POST",
"pathVariables": {},
"url": "{{apm.alarm.url}}/alarms/filter?fields=uuid,name,storageReceiveTime,associatedMonitoredEntity.site.name,alarmState.name,isTrip,severity,incident.incidentEventCount,associatedMonitoredEntity.equipmentId&page=0&pageSize=20&sortField=storageReceiveTime&sortOrder=desc",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"rawModeData": "{\"name\":\"\",\"userId\":\"2B8C45293AB44865A7D1EAD8E14D0F36\",\"defaultFilterSet\":false,\"filters\":[{\"operation\":\"eq\",\"operand2\":[\"SmartSignal\"],\"operand1\":{\"builderClass\":\"com.ge.apm.filtering.impl.SimpleFilterQueryBuilder\",\"displayName\":\"Source\",\"entity\":\"PROFILE\",\"path\":\"profile.source.name\",\"type\":\"STRING\",\"operand2Translations\":{\"OrchestrationManager\":\"profile.source.central\",\"SmartSignal\":\"profile.source.sscentral\"},\"operationTranslations\":{\"eq\":\"filters.operation.equals\",\"not(eq)\":\"filters.operation.notEquals\"},\"possibleEnumValues\":[{\"label\":\"Central\",\"selectionValues\":[\"OrchestrationManager\"]},{\"label\":\"SSCentral\",\"selectionValues\":[\"SmartSignal\"],\"isSelected\":true}]}}]}"
},
{
"id": "c363d000-dcd4-1c5a-5dd6-82d33f08d1e0",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/assets?components=BASIC&pageSize=1000",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989135035,
"name": "assets-get-all",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "c64aa3d0-72f2-8d74-7075-d28bed0a377d",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/siteTypes/00e6703e-4d26-3dc8-ae7e-6a1e7e5ce587",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468989897806,
"name": "site-types-get-for-uuid",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "c77e5999-2a6b-2416-d6d6-af0c8c803c17",
"headers": "Authorization: {{mgr.authorization}}\nContent-Type: application/json\ntenant: {{tenant.uuid}}\n",
"url": "{{apm.asset.url}}/tags/009a1f9d-7a42-4811-93d1-65f5681c989d",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [
{
"key": "file",
"value": "",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469073151950,
"name": "tags-get-for-uuid",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": []
},
{
"id": "c86a88ed-816f-0a98-6f8c-8108771e771a",
"headers": "Authorization: {{ingestor-token}}\ntenant: {{tenant}}\n",
"url": "{{apm-s95-url}}/asset/upload",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [
{
"key": "file",
"type": "file",
"enabled": true,
"value": ""
}
],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1468991398122,
"name": "ingest-asset-model",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "ea806a7c-4ba5-f4ea-1b7e-6596c4a04f85"
},
{
"id": "c89cb2ce-f97e-4db9-7a3e-605c8e1c3886",
"headers": "Authorization: {{mgr.authorization}}\nTenant: {{tenant.uuid}}\n",
"url": "{{http.protocol}}://apm-blob-storage-{{env}}.{{domain}}/v2/attachments/2ae5fbf7-efc5-40dd-803b-4cb6cfa86c55/download",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1469056196398,
"name": "Download attachment",
"description": "",
"collectionId": "6eb13776-1cb4-e971-111a-3454dbc99950",
"responses": [],
"folder": "2a2a78cc-dd6b-94e7-3026-0abaeea528f3"
},
{
"folder": "bfbbc252-b0f5-b0f1-ac6b-0559fe458cfc",
"id": "d2bba6cd-81c9-10ab-380f-6fe84e8c7043",
"name": "Create Filter",
"dataMode": "raw",
"data": [],