WebCrmApiReadLinkedData Method |
Returns linked data for the specified entity type.
Namespace: dk.webCRM.ApiSync.WebServiceAssembly: dk.webCRM.ApiSync.WebService (in dk.webCRM.ApiSync.WebService.dll) Version: 2.0.0.5 (2.0.0.5)
Syntaxpublic ReadLinkedDataResult ReadLinkedData(
DataEntityType entityType
)
Public Function ReadLinkedData (
entityType As DataEntityType
) As ReadLinkedDataResult
public:
ReadLinkedDataResult^ ReadLinkedData(
DataEntityType entityType
)
member ReadLinkedData :
entityType : DataEntityType -> ReadLinkedDataResult
Parameters
- entityType
- Type: dk.webCRM.ApiSync.BusinessLayer.EnumsDataEntityType
Entity type.
Return Value
Type:
ReadLinkedDataResultReturns error status and the linked data.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
ReadLinkedDataResult result = Proxy.ReadLinkedData(ticket, DataEntityType.Organisations);
See Also