ServiceNow Infoblox connectivity not workingIssue Whenever we are trying to do a test connection for SG-Infoblox Connection, below is the error that is being displayed: """"Error: Unable to make a connection to Infoblox API. Please check your credential configuration. Check system logs for more details""""CauseThe "sys_outbound_http_log" records created doesn't populate scope name in the "Application scope" column, instead it updates it with the sys_id of the app. URL - https://<instance-name>.service-now.com/sys_outbound_http_log_list.do?sysparm_query=sys_created_byLIKE<name of midserver> The reason for this being: Any outbound http log that is going to mid from flow, action, steps will have the application sys_id as application scope vs when the step doesn't go to mid/it is origination from outside the flow designer, it will have the scope name as application scope. This should be the expected behaviour as of now.ResolutionAs of Now the resolution is: Customer can modify below line in the script include(InfobloxConnectionUtil) Line 64 to unblock. New Code : gr.addEncodedQuery('hostname=' + hostname + '^sys_created_onONLast minute@javascript:gs.beginningOfLastMinute()@javascript:gs.endOfLastMinute()');Old Code - gr.addEncodedQuery('hostname=' + hostname + '^app_scope=sn_infoblox_integ^sys_created_onONLast minute@javascript:gs.beginningOfLastMinute()@javascript:gs.endOfLastMinute()');Related LinksAn PRB has been created: PRB1693418, to address this issue in upcoming releases.