I'm architecting a Mexico onboarding API pipeline for a new SOFOM. We need to check CURP, RFC, IMSS affiliation, and run a basic credit bureau ping — all before approving a loan application.
The question is how to sequence these checks efficiently. Some can run in parallel (CURP + RFC), others depend on earlier results. What's the best orchestration pattern for a Mexico onboarding API pipeline? Should I use a workflow engine or just a simple async queue?
I'm architecting a Mexico onboarding API pipeline for a new SOFOM. We need to check CURP, RFC, IMSS affiliation, and run a basic credit bureau ping — all before approving a loan application.
The question is how to sequence these checks efficiently. Some can run in parallel (CURP + RFC), others depend on earlier results. What's the best orchestration pattern for a Mexico onboarding API pipeline? Should I use a workflow engine or just a simple async queue?