The request body is of type GetGroups.
Request Body Parameters
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
groupDetailsRequest | GroupDetailsRequestModel |

Overview
![]() |
|
Method | GetGroups |
The request body is of type GetGroups.
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
groupDetailsRequest | GroupDetailsRequestModel |
![]() |
|
The response body is of type GetGroupsResponse.
Name | Description | Data Type |
---|---|---|
GetGroupsResult | GroupDetailsServiceReturnModel |
![]() |
|
var model = new GroupDetailsRequestModel() { ProntoIDs = new string[] { "MyAccountName" } }; var results = serviceClient.GetGroups(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New GroupDetailsRequestModel() With { .ProntoIDs = New String() {"MyAccountName"} } Dim results = serviceClient.GetGroups(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If