- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2020 09:47 AM
Hello,
I don't find any documentation about the way to rename the internal name of a flow. I have changed the label of my flow and now the internal name is not appropriate. As it is a new flow i would like to rename it before used his internal name in scripts.
Do you know a solution ?
Thanks
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2020 10:01 AM
Hi,
I think Bryan is right. You can however Copy your current workflow and rename:
Give the new name:
And you have it:
Please mark as Correct answer and helpfull if it is! 😄
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2020 07:40 AM
There is another way, although the copy method works great.
Either using a fix script or background script execute the following (given your values, of course):
var sysHubFlow = new GlideRecord('sys_hub_flow');
if (sysHubFlow.get('<your flow sys_id>')) {
sysHubFlow.internal_name = '<internal name you want to change it to>';
sysHubFlow.update();
}
This worked best for me since I didn't want to have to clone all of my flows after I decided on a different naming convention.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2021 05:16 PM
Funny, just found your post today. Seems odd to me that we can't just change it in the Flow Properties. If I change the name, seems like it should automagically change the internal name.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2021 12:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2021 08:05 AM
This worked for me, Thanks Bob! marked as helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2022 09:00 AM - edited 02-22-2023 06:21 PM
I know I'm reviving a thread from the dead here, but you can technically change the internal name of a flow. You need to navigate to the Flow table, add the Internal Name column, and list edit the value.
While I take no responsibility if this blows up something in your instance, I've done this multiple times without issues.