The request body is of type GetGroupsUpdateable.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| groupUpdateableRequest | GroupUpdateableRequestModel |

Overview
![]() |
|
| Method | GetGroupsUpdateable |
The request body is of type GetGroupsUpdateable.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| groupUpdateableRequest | GroupUpdateableRequestModel |

![]() |
|
The response body is of type GetGroupsUpdateableResponse.
| Name | Description | Data Type |
|---|---|---|
| GetGroupsUpdateableResult | GroupUpdateableServiceReturnModel |

![]() |
|
var model = new GroupUpdateableRequestModel() { ProntoIDs = new string[] { "MyAccountName" } }; var results = serviceClient.GetGroupsUpdateable(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New GroupUpdateableRequestModel() With { .ProntoIDs = New String() {"MyAccountName"} } Dim results = serviceClient.GetGroupsUpdateable(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If