You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

C# code to create an incidents on RightNow

Received Response
24
Views
5
Comments
edited Jun 8, 2022 11:59AM in General Technical Discussions 5 comments

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]##";

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!