Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

CxSDKWebService.GetAllUsers Method

public CxWSResponseUserData GetAllUsers
(string sessionID
);

Parameters

Return Value

CxWSResponseUserData, which includes:

UserDataList: AN array that contains all visible users.

Example

To get the list of all visible users:

internal void Main(string [] args)
{
String sessionID = args[0];
CxSDKWebService cxSDKProxy = new CxSDKWebService();
 
      CxWSResponseGroupList response =                       
           cxSDKProxy.GetAllUsers(sessionId);
UserData[] users = response.UserDataList;
}

SOAP to REST Mapping

This section covers SOAP to REST migration and mapping of our legacy SOAP based SDK to the new REST APIs. It is recommended to use this reference only once CxSAST V8.8.0 is installed.

GetAllUsers

For future release

For more mapping information, refer to API Mapping (SOAP to REST). You can also find a summary of our REST APIs here.






  • No labels