How can I host the html page inside creatio?
Like
I have created a custom unsubscribe HTML page to allow end users to manage their subscriptions based on the bulk email type. I want to host this page within Creatio itself rather than on an external server or website.
I hope my use case is clear.
You can use a configuration service to return the HTML as a GET request and the browser will load it like any page. I typically create an object to store the HTML pages in the database so they're easily editable, and the service just reads the HTML from the database and returns it. See https://customerfx.com/article/returning-an-html-page-from-a-creatio-configuration-service/
Ryan
Thank you, Ryan, for sharing the article.
We followed the steps outlined and were able to successfully create an anonymous web service that can be accessed from outside Creatio. However, when we attempt to run a process map through the anonymous web service, we encounter a 403 (Forbidden) error.
Could you please help us understand why this is happening and what configuration or permissions might be missing?