ArielM
(Ariel Mercado)
July 14, 2025, 8:56pm
1
Hello team,
I’m trying to send a form to a governance group within a workflow. If one of the group’s members approves the form, the request will be processed.
I’m sending it via a loop step. When I send it to a fixed identity, everything works fine, but when I use a variable “$.loop.loopInput.email” from the loop containing the email address of each group member, the link to the form displays the following message:
I also tried to send the name and username but it didn’t work, any idea what could be happening?
pattabhi
(Pattabhi Nandarapu)
July 14, 2025, 9:30pm
2
ksbagade
(Kartik Bagade)
July 15, 2025, 6:57am
3
Hi @ArielM ,
It’s possible that your JSONPath expression might need modification since the email attribute is part of a list.
You can try using this:
$.loop.loopInput[*].email
If this does not work, please share more details about the Loop step “Loop 2”.
1 Like
ArielM
(Ariel Mercado)
July 15, 2025, 1:48pm
4
Hi!
I tried the solution from the topic, but the same message still appears when I open the form.
Now I’m using an HTTP request to get the group members from “{{baseUrl}}/workgroups/:workgroupId/members”, and retrieving the members like this:
[
{
"email": "testmail@dummy.com",
"type": "IDENTITY",
"id": "8822d48g7fe348243546482d5410ba7e",
"name": "User Test"
}
]
Then I use a Form step outside the loop like this:
Then I received the same message “current identity not allowed to do this operation” when I open the form from the mail.
ArielM
(Ariel Mercado)
July 21, 2025, 3:08pm
5
Hi, I solved this issue by using the IDs of the users instead of their email addresses.
$.hTTPRequest3.body[*].id
system
(system)
Closed
September 19, 2025, 3:09pm
6
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.