Filter guides
2022-02-10, February Release Notes
CRM KPI views in the Mass Events module Each mass event now has a static KPI view which shows the event’s current number of registrations, cancellations and people in spare places. Improvements in the Mass Events module Module tools are now enabled in the module, the attendees’ and personnel’s role can be edited afterwards, the […]
CRM-service CIWS Library for REST
CIWS Library for REST CRM-service CIWS is a client library that can be used with our REST interface. Requirements .NET Framework 4.5 or later Example Code using System; using System.Collections.Generic; using System.Linq; using CRMservice.ciws.rest; using CRMservice.ciws.rest.Authenticators; using CRMservice.ciws.rest.Core; using MongoDB.Driver; namespace SyncInterfaceService { class Program { [CrmModule(Module.Accounts)] public class CrmAccountForRelation { [CrmFieldName(“id”)] public string Id […]
How to add file to the entity using REST
General These instructions explain how you can add a specific file to the wanted entity using REST. There are a few key components needed for a successful process. The user must determine which module [module] they want to add the file to and to which entity [id] the file is attached. Authorization is done by bearer [token] and [crm_address] is […]
Integrating Web Services
Web Services Introduction CRM-service provides open REST and SOAP interfaces for creating integrations between the CRM and third party applications. For more information about the interfaces and instructions for accessing their up-to-date documentation, see the following guides: The SOAP Interface The REST Interface CIWS Libraries There are CIWS libraries for using SOAP and REST interfaces. […]
The REST Interface
The REST Interface Introduction Implementing integrations between CRM-service and third party applications is simpler and more versatile than ever before with our new REST interface, alongside with the existing SOAP interface. The REST interface can be used for reading and writing data. Testing the REST Interface Each CRM-service instance has its own test interface for developers […]