
jumo9 (jumo9) asked a question.
Hi,
I have seen the same question for Okta Workflow:
I have a table in Okta Workflow which my Help Desk team will be using. And based on the entries of these tables, the workflows will be running. So I dont think the Delegated flows will also work here. So is there any way of doing this: providing access to Okta Workflow Tables to standard users?

@jumo9 (jumo9) - Everything you described could be handled by a Delegated flow to add/update entries in the table and a scheduled flow that runs to remove users. I don't see a reason why these users would even need to directly touch Workflows.
The table would need data points like: TargetUserID, TargetGroupID, DateToBeRemoved + anything else you want to store.
The Delegated flow could then search the table to determine if TargetUserID+TargetGroupID has a match. If matched "update" the found row. If not matched Make a new row.
The scheduled flow (+1 helper) would check the table to see if the DateToBeRemoved has passed. It would then remove the specific user from the specific group. Since you potentially could find multiple results in one check you need to foreach the found rows to a helper to be processed for removal.