Click or drag to resize
WebCrmApiReturnUserDetails Method
Returns the user details for a specific user identified by loginName.

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 ReturnUserDetailsResult ReturnUserDetails(
	string loginName
)

Parameters

loginName
Type: SystemString
Login name.

Return Value

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

// Return user details
ReturnUserDetailsResult result = proxy.ReturnUserDetails(ticket, "loginname");
See Also