Admin users are not able to see the URL retrieved from the sys_service_endpoint recordsDescriptionAdmin users are not able to see the URL retrieved from the sys_service_endpoint recordsSteps to Reproduce In Assistant designer,navigate to Voice assistant's telephony provider and observe that url is displayed as "-"Expected: url should be retrieved and displayed properly.WorkaroundFix is available in Now Assist AIA Voice v2.1 sn_voice_aia For earlier versions and as a workaround, you can update the _getServiceEndpointUrl function in the VoiceServiceConfigurationSNC script include to this: _getServiceEndpointUrl: function(serviceId) { const url = sn_one_extend.GenerativeAIUtility.getServiceRecordURL(serviceId); if (!url || !url.trim()) { gs.error(gs.getMessage('VoiceServiceConfigurationSNC: Invalid URL for service endpoint: {0}', [serviceId])); return null; } const urlWithoutProtocol = url.includes('//') ? url.split('//')[1] : url; return urlWithoutProtocol;},Related Problem: PRB1972987