Using workflows to send reminder email that your access will be removed and another workflow to revoke access and send email that your access was removed

I am using workflow to remove access for user based on pattern that matches with access item
if any access matches with this pattern name:“Test-Access.-ps-” found, I need to revoke the access and I need to send an email that you access got revoked for this access item name. If I use Http request how to pass access items to manage action and in email body. could you please help me with this.

Another requirement is if any access matches with this pattern name:“Test-Access.-ps-” found, I need to send remainder email that you access will be removed for this access item name. If I use Http request how to pass access items name in email.




Hi @2135797,

The JSONPath expression for Access Name ($.hTTPRequest.body[0].access.name) is incorrect.

To test, try the path $.hTTPRequest.[0].access[0].name to get the first value of the first access item in the first identity.
For further evaluation - I would recommend using the JSONPath Evaluator.

Additionally, it would be helpful to add Operator blocks to test and check your workflow runs.

Happy testing!

1 Like

Thank you Kartik
Requirement is I need to send an email if user has specific access profiles. for that I am using certain pattern to filter access profiles that user has
eg: startswith “blackline” and substring of “task”
another requirement is to remove specific access profile that user has and send an email that your access removed.
for that I am using certain pattern to filter access profiles that user has
eg: startswith “blackline” and substring of “task”
here I am trying with 2 ways one is using hhtp request action and another one is get access action. could anyone help me how to filter this access and I need to send mail with access profile names.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.