Prerequisites
Workflow definition#
yaml
Let's save this file as payment_to_wallet.yaml. We can now create this workflow with the following command:
POST/api/orchestration/workflows
Now that we have a workflow, we can run a workflow instance with the following command:
POST/api/orchestration/workflows/<workflow-id>/instances
Note that we're passing in the payment ID, wallet ID, and deposit ID as variables. These variables are used in the workflow definition to reference the payment, wallet, and deposit objects. You'll need to replace these values with the IDs of the payment, wallet you prepared in the prerequisites.