Beispiel #1
0
        public async Task <OutBoundIntegrationCredentialsRes> DeleteOutBoundIntegrationCredentials([FromBody] OutBoundIntegrationCredentialsReq request)
        {
            var response = new OutBoundIntegrationCredentialsRes();

            response = await _settingsRepository.DeleteOutBoundIntegrationCredentials(request);

            return(response);
        }