- Checkmarx Documentation
- Checkmarx SAST
- SAST API Guide
- CxSAST (SOAP) API
- Working with Scans
- Getting Group Information
Getting Group Information
The API client can get information on all groups related to the current user.
CxSDKWebService.GetAssociatedGroupsList Method
public CxWSResponseGroupList GetAssociatedGroupsList( string SessionID );
Parameters
sessionID: The current Session ID
Return Value
CxWSResponseGroupList.GroupList contains an array of group data.
Example
internal void Main(string [] args) { String sessionID = args[0]; CxSDKWebServiceSoapClient cxSDKProxy = new CxSDKWebServiceSoapClient(); CxWSResponseGroupList response = cxSDKProxy.GetAssociatedGroupsList(sessionId); Teams = response.GroupList; }
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.
GetAssociatedGroupsList | GET /auth/teams | Gets details of all teams. |
For more mapping information, refer to API Mapping (SOAP to REST). You can also find a summary of our REST APIs here.
See more:
In this section: