We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Flow Designer action "Ask For Approval" -- send approval req to manager of group?

David Hepburn
Tera Guru

I am familiar with building flows that send approvals to groups.  However, I have a request from a customer to send an approval to the manager of a group.

 

I'm not seeing anything in the Flow Designer GUI that would do this, and my queries to co-workers, AIs, and the internet haven't yielded a clear answer.

 

Is anyone aware of a way to do this in Flow Designer without scripting it?

 

If scripting is the only answer, would anyone be able to help get me started with a script that would do this?  I'd like to specify the group and have the approval go to the manager (sys_user_group.manager).

 

Thanks!

David Hepburn, III (he / him) | Paramedic
CSA, Senior Enterprise Application Analyst
ServiceNow DevOps
Children’s Health System of Texas
Dallas, Texas, USA
8 REPLIES 8

jonsan09
Giga Sage

It you want to minimize customization and scripting, you could always have a record look up action to get the group object. Then dot walking to the groups manager and pass that to the approval action. If wanted to make that reusable you could package those two actions into a subflow and output if it was approved or not (RITM/Group as inputs). Then you could use it multiple times in multiple flows. 
Screenshot 2026-02-12 141717.pngScreenshot 2026-02-12 141700.pngScreenshot 2026-02-12 141654.png

Ankur Bawiskar
Tera Patron

@David Hepburn 

Best way -> include group manager as group member and rest will be taken care OOTB

OR

You can use scripted flow approval and then grab the group members and concatenate that with group manager and then use it in inline script

Scripted Approvals in Flow Designer with Flow Variables 
something like this

AnkurBawiskar_0-1770979208810.png

 

💡 If my response helped, please mark it as correct and close the thread 🔒— this helps future readers find the solution faster! 🙏

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

@David Hepburn 

Hope you are doing good.

Did my reply answer your question?

💡 If my response helped, please mark it as correct and close the thread 🔒— this helps future readers find the solution faster! 🙏

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

Utpal Dutta
Tera Guru

Hi @David Hepburn ,

I think @jonsan09 is right. Why don't you just lookup the group using "Lookup record" step and then while using "Ask for approval" action put approval for "Lookup record.manager".

 

It is OOB and should work.

 

If our answer helps then please mark it helpful & accept the solution.

 

Thanks,

Utpal