-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
7970 lines (7970 loc) · 379 KB
/
config.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
{
"path_to_default_chromedriver": "C:\\Users\\Gleb\\Downloads\\chromedriver-win64\\chromedriver.exe",
"urls": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Integration_and_iPaaS_257fcf2c-7e93-48d0-be67-bd53fb444930",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Jumpstart_your_journey_with_integration",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-AtomSphere_Editions_bde0b272-5d32-46ec-82ea-6f9ffe98bd63",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Personal_Edition_2914620c-a00d-416e-a33b-1381c60b017d",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-EDI_and_B2B_Solutions_10d697bb-082c-4fbf-b923-eda0da227516",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Trading_Partners_93a114b8-4f6b-488c-80ed-0e18f5ed4034",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Build_page_0ff5baa9-222d-4c9a-b97a-982cef8b6d9d",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Deploy_menu_10d40903-a721-4630-bcac-769d1b87a9dd",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Manage_menu_652ad84f-efe8-47f0-adf4-8203cc7a3b68",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Atoms_Molecules_and_Atom_Clouds_d8fe8ad8-3ba5-4eb1-967d-cd0fc9ffb062",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Atoms_aa350919-15e5-4ec5-a11a-ee308fddd087",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Molecules_e9469404-7628-4aa7-a63b-7ae57fb13a3e",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-Atom_Clouds_b835095b-048e-4871-a42d-b2186707e314",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/c-atm-The_Boomi_Atom_Clouds_6c3bfab5-2fdc-4fde-a7cb-5f0c591a9f08",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-First_Boomi_Integration_process_eb8e485d-0d81-4cfb-8a0e-10ddd6fecee9",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Prerequisites_for_building_your_first_process_710c260a-5d8c-4749-b00d-902041455824",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Creating_the_Mail_connection_and_operation_96283ae7-a4e4-4589-9e0a-8117286c3e89",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Building_the_first_process_f098315d-cfc7-47ab-bdf5-9652ce9b2f9d",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Testing_your_first_process_fd3f2cbf-556c-4090-941f-08b08c223638",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Prerequisites_for_building_your_second_process_2fe74312-901d-4460-8bd3-0689a4598ad4",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Setting_up_the_Google_Sheets_credentials_4a92996b-3b17-448e-8922-5c017619b52e",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Creating_the_Google_Sheets_connection_and_operation_64c01f7d-8cd8-4929-8603-46b71c71ce7f",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Building_your_second_process_6fed04d9-45e2-4d43-9b30-c6fe78e2e453",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Getting%20started/int-Testing_your_second_process_d5e8b77b-e7cb-459a-a5ee-b5af620c9d2a",
"children": []
}
]
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_Molecule_and_Atom_Cloud_setup_60a6c21e-add1-44b7-a549-1067b864404b",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Methods_for_installing_Atoms_Molecules_and_Clouds_2579bb82-4589-4834-968a-93300a90e04e",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Unattended_installation_of_Atom_Molecule_or_Cloud_8e4eb1de-e2f9-40d1-888b-a9c25e395997",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Unattended_upgrade_of_an_Atom_Molecule_Cloud_4e6dd3d3-b016-451b-b9c5-8f77ec4d3e45",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Docker_installation_of_an_Atom_Molecule_or_Cloud_9e6d09ec-c6a9-42d2-92e8-dd3352a83edf",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Installation_directories_fec3863c-e459-439a-91c3-da8bea9b4fb8",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Atom_setup_f7dedf01-31c1-4642-824b-9c76d5d0bf8e",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Atom_system_requirements_e3656558-174d-438e-bc5a-6dd48d20c159",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Docker_Atom_system_requirements_528c616e-042f-4cc1-b9d2-e8e6bc4d8533",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_Docker_Image_4a0d9480-ec45-48e8-b587-915b2d90c9f1",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Downloading_the_local_Atom_installer_401abba4-2ea0-43d7-9a15-4012f63467c1",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_installation_checklist_Windows_9dd66968-a6ad-4278-9efb-9476bc7ceb3c",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_a_local_Atom_on_Windows_beec31b0-477d-430b-a744-cedb3a8d67eb",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_the_Atoms_Windows_service_25e40dc5-0590-4c53-951a-777ce7503390",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_installation_checklist_Linux_a00ebe62-be96-4bd8-9142-07b702f22e88",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_a_local_Atom_on_Linux_4bcd02f0-6f21-444c-a861-cbdfba8f1550",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Molecule_setup_ecdadb16-a51a-465b-90d5-b095acca4823",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Molecule_system_requirements_41f9a675-ab11-4f3b-bf51-1655394aba5b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Docker_Molecule_system_requirements_f881d31a-880c-46ec-a222-1f27b8ab1604",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/Molecule_Docker_Image_c699cb30-da58-4673-bfe2-68e0b4bfe3ab",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Downloading_the_Molecule_installer_edb2871c-e830-4756-b8fc-846cb5b81652",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Molecule_installation_checklist_Windows_72ac67a8-f757-4d7a-9fec-5f614c2f8039",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_a_Windows_shared_directory_for_a_Molecule_c3c92327-d9db-407a-8256-e0e34491fe6a",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_the_initial_Molecule_node_on_Windows_4007a6f9-6906-4673-a015-9c3990594ae2",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_the_Molecules_Windows_service_ad1bdda0-6a7f-497d-b82d-ef6d2a94cfef",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_additional_Molecule_nodes_on_Windows_8129507e-2ee1-48eb-a088-9b48ba3a2ad7",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Molecule_installation_checklist_Linux_cff53cf9-83a2-400b-9cf0-f4f1a76013df",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-_Setting_up_Linux_shared_directories_94440785-fc85-48f9-a6f2-116759ac814b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_the_initial_Molecule_node_on_Linux_0d5230d0-8d55-4b95-9fad-059e81d15caf",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_additional_Molecule_nodes_on_Linux_3fec362e-e44e-4859-baa6-1882b6fb420a",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Atom_Cloud_setup_9d27029a-b0c9-4821-a833-daa7856415cd",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Atom_Cloud_system_requirements_45494670-1aa1-452f-8bb2-1928778a1041",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/r-atm-Docker_Atom_Cloud_system_requirements_1ed1973f-e36c-4d1c-80c4-ed3652be1acb",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_Cloud_Docker_Image_c6b2e370-431a-4839-a9fb-4e6b74ccb21b",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Adding_an_Atom_Cloud_7dafe690-45e5-4da7-ba3d-f167592db954",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Editing_an_Atom_Clouds_settings_9024c712-8524-4a1d-a17f-4755d028c969",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Downloading_the_Cloud_Molecule_installer_d2444c7b-98a2-47f6-a139-f8e09593ff4f",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_Cloud_installation_checklist_Windows_cad69a98-88cf-4bdb-9854-56acd2a34caf",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_a_Windows_shared_directory_for_a_Cloud_abdd64ac-b603-44ec-8691-52eacd34ffc0",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_the_initial_Cloud_Molecule_on_Windows_448cc859-8080-4eef-83df-8f8f89621ea0",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_the_Atom_Clouds_Windows_service_c21bbf90-9dc1-4f5b-a58e-74fb82356500",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_additional_Cloud_Molecules_on_Windows_a6fc4a4d-a362-49ba-b485-df01c332f186",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/int-Atom_Cloud_installation_checklist_Linux_5f934fee-4eac-4386-915a-ea37ce8d3653",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_the_initial_Cloud_Molecule_on_Linux_b8a9694c-070a-4066-80fc-94c114185beb",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Installing_additional_Cloud_Molecules_on_Linux_91eadc8f-6fb9-49b9-a2b1-c29e5015bb12",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/c-atm-Atoms_in_an_Atom_Cloud_ca5fe847-12da-45a5-b99f-f284da0de177",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Setting_up_an_Atom_in_an_Atom_Cloud_45c1a7b6-8a1a-4ee4-8ba8-23d846625d6a",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Editing_a_Cloud_Molecules_properties_f39216d0-a725-4efd-b976-d6f19d99bd10",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Atom,%20Molecule,%20and%20Atom%20Cloud%20setup/t-atm-Editing_the_properties_of_an_Atom_in_a_Cloud_d915bdb2-59c6-4322-b679-67890c918256",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_building_b422a00a-b17b-4ea8-ae01-d04adaf97e16",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Build_page_layout_e1655cb0-e4da-47cf-bf55-11cc37f0b32f",
"children": [
{
"url": "https://example.com/level1/level2/level3",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Hiding_or_displaying_Component_Explorer_212668c5-0a21-4c5d-a0ad-dcc2ac75f744",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Closing_component_tabs_85d26b02-22cb-47fd-a3a2-17daf4101be8",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Components_introduction_69a449d7-8255-4fd5-a044-217a813c7435",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Component_creation_37d5c3ee-f315-41de-98fb-e28840e289c1",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Creating_a_component_using_the_Create_New_button_94753d64-9efa-427d-af06-65e4c9851dc5",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Creating_a_component_from_Component_Explorer_7f3a6565-4502-4fff-a65a-bfff7aca54dd",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Creating_a_component_from_the_process_canvas_5e1378a2-8ea8-4e4e-936e-03413b9229b9",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Component_Explorer_b293eeb3-9616-4aa0-ba2d-60cf2d1f37fd",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Creating_a_folder_in_Component_Explorer_4d8c059b-25a2-4501-8d79-973f674e524c",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Renaming_a_Component_Explorer_folder_c6af402f-71a0-4c29-a34d-0b88c6cde122",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Copying_a_folder_to_another_account_bb3e9148-5e04-41dd-882d-ce6995768e82",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Deleting_a_folder_in_Component_Explorer_6e6a947f-3281-459b-9306-1481d408cdf4",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Moving_a_folder_in_Component_Explorer_56ba33ab-42cc-471a-83ab-ae941c866a57",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Editing_a_component_9d360c6e-5d3f-41e2-8dbe-687cb0570bde",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Copying_a_component_83a52ee7-e4b0-4c8e-9256-9905b1baba67",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Moving_a_component_to_another_folder_in_Comp_Explor_963ba0ca-4910-4795-beab-b9ec4b8fc65c",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Folder_Permissions_dialog_82322fd5-6b62-41c7-a906-621afb7e906a",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_write_restrictions_to_a_folder_99713c93-56f5-4a3d-903f-5d6461b965d0",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Confirm_Deletion_of_Referenced_Component_dialog_d2089ece-9403-451d-9748-b023eead081b",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Deleting_a_component_from_an_account_b3f4765f-8b6f-420b-8b3d-950dc1eb7ef5",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Deleted_component_restoration_849e05de-1a6a-4e55-a2e3-683c7acc4ae1",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Restoring_all_components_in_a_folder_b7d9db33-ac7c-4b8b-b16e-56227e87d2b3",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Searching_for_and_restoring_a_deleted_component_394f37c5-7ef0-48de-bc2f-a81e77245c20",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Restoring_a_deleted_process_6ba9ecaf-d3f8-491a-a59c-8354c1201852",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Finding_where_a_component_is_used_7f30a40d-1c3e-4b7d-b748-f958cacf1b0f",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Components_Revision_History_dialog_23affb25-b8a8-4d5c-aa4e-99db5e3d65ed",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Viewing_a_previous_revision_of_a_component_f38c5e12-c116-4d6e-a65f-104e878f22fc",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Editing_a_previous_revision_of_a_component_07102cc3-bccc-4c01-80e5-fcd8194dafe5",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Viewing_the_XML_for_a_component_8f1e6143-fbfa-4717-97a8-c43eed9b48ed",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Viewing_the_source_of_a_copied_component_280f10c9-51db-4e2b-8535-2a557824e149",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Component_references_8d7cf9db-2716-4301-b8d8-46eb9f055999",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Component_locking_9c951ff5-186e-46eb-908e-bf32b55e87b2",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Editing_a_read-only_component_cab969f0-07af-424d-993e-d5d5b7c9f894",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Selecting_and_editing_a_revision_of_a_read-only_comp_da237395-8953-4d15-937c-a132bc44a7a1",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Component_Folder_Details_6a08d25e-f8ff-4f63-9af4-4a4e8a443158",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_components_introduction_b35a1383-169f-41a0-aa15-13a45672b9a2",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_design_and_development_tips_f9c8f5ed-dd9d-48a8-b0e4-47e5d6762c4f",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Published_processes_b8ca84b1-58d5-4a9a-adcc-800fd0b3ca51",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Browse_Process_Library_dialog_cb1e5b35-683d-4756-aede-8ec2de3c3c9b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Installing_a_published_process_5a0c3d03-4a7a-4704-9e2c-dda6e5624404",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Process_Options_dialog_97679f9e-1130-46ed-9937-8d1af5bcdbd5",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Understanding_execution_modes_2bc11045-c4a1-4601-b6fa-b1f81301e3e9",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Low_latency_processes_af9912ba-d4c8-4754-baeb-69bd9a41c48c",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Setting_process_options_to_the_recommended_settings_13c597a7-c344-4b40-9ca8-ed6575a276f9",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Setting_process_options_manually_54516828-d8fd-4bc7-a62a-6efcdd9a5fac",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_canvas_7092acce-da3a-4bf1-9130-ac2b74eebd22",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_shapes_to_a_process_e3e49675-225a-4591-b5c9-a559aa4c045a",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Getting_data_into_a_process_b33d870b-1a9a-4682-9ec4-b3e36afe4250",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Connecting_shapes_in_a_process_c1a0ab53-5b00-48f6-8398-2cced6b2f9fa",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Disconnecting_shapes_in_a_process_c6dab20c-20df-4e22-907c-21127772f90f",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Arranging_shapes_branches_and_routes_on_canvas_3bff3acb-602e-4c53-b384-1da61702d3c4",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Copying_and_pasting_a_process_shape_ca0ca249-9976-4deb-b218-37f72b144461",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Moving_a_shape_in_a_process_8636f4b9-23e3-4876-bf65-55c1a4ae869b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Removing_a_shape_from_a_process_a687aa58-65da-475c-8de1-1a0cb128d8d4",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Selecting_multiple_shapes_4d3032e5-d662-4017-ad72-7fdb17c1da10",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_notes_to_a_process_1d1c3e5d-e337-4c56-b132-cd280405dc54",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Manually_displaying_or_hiding_shapes_in_the_palet_6431a8d0-b39f-4fab-95a3-2f4f847fcdf4",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Navigation_palette_3ea13e08-d1c6-404f-a14b-b90aea9cc9bd",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Process_shapes_79b3f010-5269-46cf-95d1-db2387afe0f4",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Special_shapes_1e83e6d5-bc38-47fa-af14-ca80f1f6572a",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Start_shape_7561792f-f0b8-41f5-b06d-06e2bde5b0e5",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Start_Shape_dialogs_Connector_option_7bf0d00f-7d0c-40bd-a241-450fa9a79c44",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Start_Shape_dialogs_Trading_Partner_option_0ddc68ec-862f-45e2-a20b-bb3398e73b4b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Start_Shape_dialogs_Data_Passthrough_option_b73241bd-76e0-494f-9334-084cf9021a71",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Start_Shape_Dialogs_No_Data_Option_42b3f4e9-a681-42c3-8df8-5530ef3b460a",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Methods_for_Executing_a_Process_25766e7d-5991-4bc5-895f-6c2c2a3378cb",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Execute_shapes_1bcfafd3-d821-437e-88f0-ad10c9526eaf",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Map_shape_a481eb4d-739a-46fb-b062-866d9d13f21a",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_map_to_a_process_f31b799f-0c00-4b3f-b2da-0b5f4bf8d450",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Set_Properties_shape_d99aaa70-ed9a-4792-b641-b94aea1254b9",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Set_Properties_shape_example_054c3544-72d5-4e05-84b0-9b74a6367458",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Setting_properties_for_a_document_8c9ed359-1407-4b7b-b7a5-3720f45e4d82",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Message_shape_d7f9fd28-857c-4550-ab7d-39d4817c4668",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Notify_shape_370d8b10-3713-4ea1-95d6-a2e82db7928d",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_Notify_shape_44f87c4b-2f47-4db6-a70d-31ac44d5609b",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Program_Command_shape_2bfcdb5d-04d2-4d7a-b50f-9c45eedd8744",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Process_Call_shape_cc0f1835-4d30-499f-8fd2-95d3c0997c85",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_Call_shape_example_173c5b58-a71b-4b13-baed-5e99f10d45d9",
"children": []
}
]
},
{
"url": "hhttps://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Process_Route_shape_5ee00436-fb63-43c1-8fcb-48f8c8829115",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Data_Process_shape_8d7ca2b4-b8a7-4820-a8fe-c85dedb12b5c",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_processing_steps_to_a_Data_Process_shape_4d7e8322-f003-45fc-89ce-f53698256f5b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Data_Process_Shape_SplitCombine_Flat_Files_f1a52e14-e339-4243-b461-4c12e8d01c6c",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Data_Process_Shape_Split_Combine_XML_or_JSON_Files_1de8475b-9412-4911-91d5-6f85d8045237",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Custom_scripting_35340a9d-a236-403a-9f53-1563fceb61a5",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Document_properties_access_with_scripting_f05febe5-4acd-46d7-9645-ca633a2c16ca",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Document_property_scripting_names_dbc09b79-5369-4ee8-a452-e3ea1a7aa1c8",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Process_properties_access_with_scripting_1be3a8ea-c6c8-40a2-bf93-4adf6b8ee15f",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-AtomSphere_Scripting_API_527825be-8e93-4f71-abb6-b1520e8e8ba7",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-com_boomi_execution_ExecutionUtil_7727f7f7-f8b9-43e1-b39d-8ac28fa11fb5",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Script_development_and_testing_3cebf06a-d6ae-48ee-893b-94c447c92a8e",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Groovy_and_writing_to_the_process_logger_33299442-176d-4c4e-b11e-23330cf0ff7e",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-JavaScript_testing_outside_AtomSphere_eb037d5e-d1b9-4994-baa6-42d41545c9bb",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Groovy_testing_outside_AtomSphere_7cbc2bba-5657-4f3e-bd6e-790909d4ede6",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Custom_scripting_step_e28a6812-1cf6-4c0b-a623-224f09543c5e",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Script_execution_and_compilation_behavior_bba5a1b7-a9d7-4814-84e8-354abd8e49c8",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_custom_scripting_step_with_an_inline_script_019d4e9a-c7c3-4bf4-895f-5b479adcd053",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_custom_scripting_step_with_a_Scripting_comp_57d40ef7-9362-400b-aed1-5885c0c7f475",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Scripting_context_b8489290-b3cd-4029-ae28-04961b23f3aa",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Custom_scripting_step_examples_95ef0cff-52bb-4d37-86b4-352ce1e89e12",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Flat_file_data_parsing_e87904cb-6610-49d2-9b73-6ad5fc58b092",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-XML_data_parsing_4bde19da-aa06-468e-aca2-604689f18d23",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-json_data_parsing_6e190d31-df87-49a0-abe0-5d6c8c653760",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Initialization_logic_only_no_data_parsing_39b95d37-5da4-4025-8505-add98ee5e9ac",
"children": []
}
]
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Find_Changes_shape_96d76bf4-7d93-4430-ae3a-4d38a5871de5",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Find_Changes_shape_example_9a6b06ad-f505-4378-8efa-5d172135b131",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Add_to_Cache_shape_9723ab12-45da-4e64-aa85-c9449b587286",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_documents_to_a_document_cache_5ab8f4e7-c9b8-4a4a-90ff-b8b9e6ac0b80",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Retrieve_From_Cache_shape_aed8db7a-b2e1-4d40-b3af-ef9fa0e19864",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Retrieving_documents_from_a_document_cache_29a77959-28e3-4eba-9587-f6d96394afb7",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Remove_From_Cache_shape_2dfc4d0c-4492-4228-91b6-45445ef57b61",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Removing_documents_from_a_document_cache_d7230810-d897-4112-bef5-a97cb5313b4a",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Logic_shapes_7a64683e-8ddc-4606-97b4-497867883094",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Branch_shape_83d94692-c1c3-4ad6-a6e6-50ee0e48c495",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Branch_shape_example_b6eb5b29-7a77-4b22-bef2-30d547eb5f5d",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Route_shape_a2a2784e-244e-4d62-9b30-84be7b232802",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Route_shape_example_b78f5f9f-54d0-4d16-8fd2-917b2f913857",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Cleanse_shape_bb7ec8bb-3fc3-42a7-bd84-2ffa00ef269d",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Cleanse_shape_example_4c8a0b5f-411c-4fb5-94c7-7c5d79bcccd3",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_Cleanse_shape_to_a_process_143826d5-7b6f-4572-bd7c-5bff2d1c716f",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Decision_shape_5f328651-9d49-4362-b8bf-8d46937c9ac0",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Decision_shape_example_d8017cac-48ed-4f66-9efc-b05d6ffff06d",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_Decision_shape_to_a_process_1f59efdb-3392-4cef-bb40-25eb6ee753a0",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Exception_shape_db794c33-dd6f-490d-8b5c-237409c86ef4",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Exception_shape_example_98f89744-7afb-4111-a451-f7a3792885ac",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Stop_shape_d4dda1a9-8687-4418-8a3d-afe5f9174bc1",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_Stop_shape_to_a_process_4c0a51f3-be81-4fba-bca8-a3c351234edb",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Return_Documents_shape_61192114-0f9d-49d8-bcd0-1c8d6a843db2",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Return_Documents_Shape_Example_23e80892-ff33-4392-a486-13ba7275c898",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Flow_Control_shape_91fdf4a1-c765-4d4b-a0c0-c8159222ee32",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Flow_Control_shape_ex_Run_Each_Document_Individuall_5a1b8e96-d153-4cb3-b925-67d70eb25390",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Flow_Control_shape_ex_Parallel_Processing_option_22e12870-d2f4-485d-b5ee-7a385377f94b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Flow_Control_shape_and_fiber_executions_b03b9567-f7b2-4f43-9c34-b96904744287",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Business_Rules_shape_342f8e88-c004-4736-9b8b-2f5ea2f96811",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Business_Rules_shape_example_41f27424-482a-4cb4-b84b-5a9e3dd8ff9e",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_a_Business_Rules_shape_to_a_process_096d7f1c-1d64-472e-bac0-e65bd935c977",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_input_fields_and_functions_to_a_business_rule_2ffd355e-674c-46e1-8b15-696cba1a7a1f",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_conditions_to_a_business_rule_bdd002b4-f485-4220-894e-cccf052a9d0a",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Adding_an_error_message_to_a_business_rule_c40a882f-1940-4121-af96-f5ddc88530df",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Changing_a_business_rule_c67f4326-c31b-42db-a6e8-66fa83f855ac",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Business_Rules_Shape_dialog_68e8232b-c413-406a-ba6f-a9281cc4a263",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Business_Rules_Error_Message_window_24320144-34c2-4777-84ff-e64fa7c517d1",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Try_Catch_shape_7b3dd8df-426e-4ed7-824a-40cc0b5dc68d",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-TryCatch_shape_examples_867b8cc6-dfbc-49ac-b33e-cd803d75151a",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Connector_shapes_0322531d-6693-40df-94bf-3a83d31c196b",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Connector_shape_5db07b4d-02a2-4438-9103-153c13312ffe",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Connector_Action_dialog_General_tab_dc3bf2d8-e154-444e-8a8f-a0d07f489bfb",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Connector_Action_dialog_Parameters_tab_2b8519a4-c797-4a45-8600-22d651406b60",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/int-Connector_shape_dialog_dynamic_operation_properties_tab_e473feba-b349-4b3b-8d82-2c3c9f94469b",
"children": []
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/r-atm-Trading_Partner_shape_614fa221-8f21-4f3f-95a4-e2fc6f59315e",
"children": []
}
]
}
]
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Component_configuration_8e1b4740-6530-4e7e-9d6b-79a43b290343",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connector_components_55b55bc9-f372-46a3-9832-a3c284d2e6d7",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connector_actions_get_versus_send_0ce9d9a7-9b6d-4c92-8999-da96c897d71b",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connection_components_da4f4be0-36d4-4021-a5d6-79f6010326f5",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connector_Operation_components_106fbc54-b0eb-45aa-91df-d2a401b5a952",
"children": [
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/t-atm-Using_an_operation_components_Import_Wizard_06a221cf-becb-485b-8067-fae1f8aeeed0",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connector_operations_and_data_profiles_aabe3969-d72a-4499-9516-8b220cf2473a",
"children": []
},
{
"url": "https://help.boomi.com/docs/Atomsphere/Integration/Process%20building/c-atm-Connector_operations_filters_and_parameter_values_34d5ca37-6a21-43b6-a6f0-b2c165f7fd7f",
"children": []
},
{