- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-23-2023 10:35 AM
Trying to match user from instance 1 on instance 2 where unique field is email address, and capture sys_id of this user, so incident can be created on instance 2 with matched user:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-10-2023 11:57 PM
Found solution - I replaced user email address '@' with '%40' and added to URL endpoint (get method), so could query sys_user table to find user by email in Instance 2, in response body I captured user sys_id and parse in Instance 1, then I could create INC record from instance1 to instance2 with correct sys_id.
By steps:
1. create GET method - with api table to sys_user endpoint
2. create POST method with captured data to create INC's - with record producer endpoint
3. create PUT method to update INC's - with incident table endpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-07-2023 03:30 AM
Hi Peter
To create an incident on the destination instance where some scripting logic is applied, I suggest looking Exalate, which is a decentralized integration solution, where you can granuarly decide which data will be send over.
You have to install it on both sides, but trust me, you will see the level of configuration you can do. Reach out to Exalate for a demonstration!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-10-2023 11:57 PM
Found solution - I replaced user email address '@' with '%40' and added to URL endpoint (get method), so could query sys_user table to find user by email in Instance 2, in response body I captured user sys_id and parse in Instance 1, then I could create INC record from instance1 to instance2 with correct sys_id.
By steps:
1. create GET method - with api table to sys_user endpoint
2. create POST method with captured data to create INC's - with record producer endpoint
3. create PUT method to update INC's - with incident table endpoint