User should be import in 3 instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 03:25 AM
Hi team
If we create any user , instead of manual import them to other 2 instance .
How to to if create in dev means , it should automatically create in stage and prod .
How to configure these . Can anyone please help me here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 03:35 AM
Communication b/w instances is done through integration.
You need to call the table API for stage and prod and create an after insert BR in dev user table.
The BR will call the API and create records in another instance.
The integration will need REST message, credentials etc.
Refer : https://developer.servicenow.com/dev.do#!/reference/api/orlando/rest/c_TableAPI
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 03:36 AM
Hi @nameisnani,
There is not really a OOTB feature for this.
You could create the users on the other instances with a REST message, from a Business rule, or a Flow.
I would recommend not to use dev as source, but only to use prod as source.
Otherwise you may end up with test users on prod when they are created on dev.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.