Dynamic Endpoint Configuration for Multi-Customer Integration in ServiceNow

manish kale
Tera Guru

Hello Experts,

I need assistance with making an endpoint dynamic. We have an integration setup between multiple customers and ServiceNow, and the number of customers could be in the hundreds. Each customer sends JSON data to ServiceNow in the same format. Upon receiving the JSON, ServiceNow logs the request in a custom table and sends an acknowledgement response, which is also a JSON containing the record information, including the unique ID.

 

We have created a REST message that includes both GET and POST methods. Our goal is to make the endpoint in the POST method dynamic. Example, if the fifth customer sends JSON to ServiceNow, the acknowledgement should be sent back only to that fifth customer and not to any other customer. How can we achieve this dynamic endpoint creation?

Thanks, Manish

2 REPLIES 2

Isaac Vicentini
Mega Sage
Mega Sage

The most important in this process is to track each customer in an only record or a task record. 

 

The best way to do this is to create a Flow Designer to run when a custom table record is created and calls the integration from IntegrationHub using UniqueID as a parameter, like this:

 

IsaacVicentini_0-1723990700111.png

 


 

If my answer helped you in any way, please mark it as correct/helpful ðŸ™‚

Regards,

Isaac Vicentini.

 




Best regards,

Isaac Vicentini
MVP 2025 ✨


If my answer was helpful, mark it as Helpful or Accept as Solution.

Hello @Isaac Vicentini 

Actually the Integration is in between three layers.
   1                    2                          3
Aurora - ServiceNow - (Multiple Customer)
When one of the multiple Customers send JSON to ServiceNow, ServiceNow logs the ticket â†’ send the Updated JSON consisting of ServiceNow sys_id to Aurora â†’ Aurora logs the ticket â†’Aurora sends back the JSON with Aurora Fields and unique ID → Updates in ServiceNow → ServiceNow sends back to customer.

We have created a Script include which has all the logics and through script include we execute the different REST message, which will contain the endpoint, thus we need to make the endpoint dynamic. I don't think it will be possible to use the flow designer. Please advice.