Deeplink Not Triggering in QA Environment with anonymous role (Works Fine Locally)

0
Dear All, I'm implementing an email-based approval flow in Mendix. When the initiator submits a request, a microflow is triggered that generates a random token string, stores it in a custom Token entity, and associates it with the request. This token is then embedded in the approval URL sent to the approver via email. The URL format is:http://localhost:8080/link/linkhandler?Token=dTpHUNJmy4ZR9UlEwDsRf7K6m7dPJpmJClicking the "Proceed" button in the email triggers the Deeplink microflow using this URL. Everything works perfectly in my local environment — the microflow is triggered as expected. However, in the QA (Acceptance) environment, the Deeplink is not working. No logs appear in the Mendix console, and the microflow does not get triggered at all. Deeplink microflow:    Deeplink configuration:   The microflow will trigger before login (Anonymous role). The option "Do not force login" is checked.   The button uses the following URL: http://localhost:8080/link/linkhandler?Token=dTpHUNJmy4ZR9UlEwDsRf7K6m7dPJpmJ
asked
1 answers
0

MIght be that the /link handler is not accesible in your cloud environment due to permission settings.

See the Path Based Access Restrictions under the details of your environment in the cloud portal.

answered