C# code to create an incidents on RightNow
Content
Here I’m sharing the C# code to create incidents on RightNow. I think this code snippet will be helpful for those who wants to integrate 3rd party .Net application with RightNow CRM.
Code Snippet
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CreateOppertunity.OSCReference; namespace CreateOppertunity { class createIncident { private RightNowSyncPortClient _service; public createIncident() { _service = new RightNowSyncPortClient(); _service.ClientCredentials.UserName.UserName = "webservice"; _service.ClientCredentials.UserName.Password = "[email protected]##";
4