Create and update custom objects from a addin
Content
I create contact with:
using Contact = ABC.Cti.ConnectService.Contact;
...
private RightNowObjectProvider _objectProvider;
...
Contact contact = new Contact();
...
RNObject retContact = _objectProvider.CreateObject(contact);
But how i do to create CustomObject?
0