SISConnectorSvcGetInstance Method
The GetInstance method is used to retrieve details of an instance of a CampusNexus CRM Object.

Namespace:  SISConnectorService
 

Syntax
C#
public ReturnStatus GetInstance(
	long objectType,
	long instanceId,
	long[] propertyIds,
	out ObjectInformation objectInformation
)

Parameters

objectType
Type: SystemInt64
[in] The type of the CampusNexus CRM Object. The details of an instance of this Object must be retrieved.
instanceId
Type: SystemInt64
[in] The ID of the CampusNexus CRM Object instance whose details must be retrieved.
propertyIds
Type: SystemInt64
[in] This is an array of the Property IDs of the CampusNexus CRM Object instance.
objectInformation
Type: Talisma.Server.TLSysSISConnectorObjectInformation
[out] The ObjectInformation structure contains information about the CampusNexus CRM Object instance whose details are retrieved.

Return Value

Type: ReturnStatus
The GetInstance 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