Flowable as rule engine

I have the below use case and unable to design or understand how to it implement it by using flowable.

Use case:
I need to develop application which has the Flowable ui where I could add different decision tables and flows. And these flow executors must be accessible to other Microservices through rest calls.

Could anyone direct me on how this could be achieved.

@adityaKuna the OSS docs indicate that as long as the DMN model has been deployed to the engine, you can use the REST API to execute rules. See this and this. Of course, you will want to be mindful of how much of Flowable is exposed to the other microservices, in case you need to switch out your rule engine in the future. Hope that helps!