Is it possible to execute scripts via Orchestrator to have output of first script used as an input in the second & upcoming scripts ?
Example:-
I create an opportunity and associated quote in first script.
In the second script, I will search for the created Opportunity via first script and do some validation(v1).
In the third script, I will search for the Created opportunity via first script and some changes are done in second script and will feed the data in the third script to make some validation(v2).
Create Scripts: Develop separate scripts for each task (creating an opportunity, searching for the opportunity, performing validations, etc.).
Define Input/Output Parameters: Define input and output parameters for each script to exchange data between them. For example, the first script could output the ID of the created opportunity, which is then used as input in subsequent scripts.
Basically You can use the output of the first script in the 2nd script as input
If it is in python this video will give you more clarity