I would like to force logout a user without user interaction.
I know that Appian has Session timeout, but I would like to logout a user on a specific workflow (after 30 sec) without disturbing Appian default session timeout settings.
Discussion posts and replies are publicly visible
Try using Deactivate User then Reactivate User again in the workflow's exception flow.
I would probably trigger a integration object after 30 sec using exception flow which calls and Appian webApi that has following code
a!httpResponse( statusCode: 307, headers: { a!httpHeader(name: "Location", value: "https://testingenv.appian.com/suite/logout") } )
I have not tested this idea, Let me know if it works suresh2804
Try this, I made something similar in the past with http headers and it worked....