C# Code to create custom object on RightNow
Content
I think most of the developers come across the requirement to integrate third-party application with RN system. Sometimes we might need to create entries in the Custom object. Here is the sample code to create custom object entries in RN CO.
Code Snippet
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using UpdateOrderHistory.OSCReference; using System.Net.Security; using System.Security.Cryptography.X509Certificates; namespace UpdateOrderHistory { class UpdateEXOrderHistory { private RightNowSyncPortClient _service; public UpdateEXOrderHistory() { _service = new RightNowSyncPortClient(); _service.ClientCredentials.UserName.UserName = "xxxxx";
7