SISConnectorSvcUpdateInstance Method
The UpdateInstance method is used to update details of an instance of a CampusNexus CRM Object.

Namespace:  SISConnectorService
 

Syntax
C#
public ReturnStatus UpdateInstance(
	ObjectInformation objectInformation,
	out OperationInformation operationInformation,
	GeneralInfo[] generalInfo
)

Parameters

objectInformation
Type: Talisma.Server.TLSysSISConnectorObjectInformation
[in] The ObjectInformation structure contains information about the Object whose instance must be updated.
operationInformation
Type: Talisma.Server.TLSysSISConnectorOperationInformation
[out] The OperationInformation structure returns the ID of the SIS Object instance that was passed as input in the ExternalInstanceId member of the objectInformation parameter, the ID of the CampusNexus CRM Object instance, and the Transaction ID of the create operation.
generalInfo
Type: Talisma.Server.TLSysSISConnectorGeneralInfo
[in] The generalInfo parameter is an array of the GeneralInfo structure that contains information about the ignoreMandatoryCheck and updateReadOnly flags. You must specify values for the members of this structure only if you want to update the details of the Object instance without passing values for the mandatory Properties, or to update the values for the read-only Properties.

Return Value

Type: ReturnStatus
The UpdateInstance method returns the ReturnStatus structure with the value of the statusId member as 0 if the operation is successful and -1 along with the error code and error message if the operation fails.
See Also