I need to integrate Mulesoft with OutSystems. Can anyone help me in knowing the basics?
Thanks.
I need to integrate Mulesoft with OutSystems. Can anyone help me in knowing the basics?
Thanks.
As OutSystems and and Mulesoft both can consume and produce REST as well as SOAP API. You can integrate Mulesoft using any of these web services
You can refer OutSystems article and for Mulesoft documentation for more details.
To Add to AnupamBhusari answer. You also need to define how you're going to implement the authorization. Either use API keys that you can send to Mulesoft as REST parameters or Headers or make use of long lived OAuth2 tokens.
You also need to consider how to implement versioning of the consumed API and have a good architecture that decouples the changes in the MuleSoft exposed API. Check the external Core Service pattern described in this link.