Click or drag to resize
WebCrmApiReadLinkedData Method
Returns linked data for the specified entity type.

Namespace: dk.webCRM.ApiSync.WebService
Assembly: dk.webCRM.ApiSync.WebService (in dk.webCRM.ApiSync.WebService.dll) Version: 2.0.0.5 (2.0.0.5)
Syntax
public ReadLinkedDataResult ReadLinkedData(
	DataEntityType entityType
)

Parameters

entityType
Type: dk.webCRM.ApiSync.BusinessLayer.EnumsDataEntityType
Entity type.

Return Value

Type: ReadLinkedDataResult
Returns error status and the linked data.
Examples
// Login and get a webservice ticket
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);

// Get linked data
ReadLinkedDataResult result = Proxy.ReadLinkedData(ticket, DataEntityType.Organisations);
See Also