The request body is of type GetUsers.
Request Body Parameters
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
userDetailsRequestModel | UserDetailsRequestModel |

Overview
![]() |
|
Method | GetUsers |
The request body is of type GetUsers.
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
userDetailsRequestModel | UserDetailsRequestModel |
![]() |
|
The response body is of type GetUsersResponse.
Name | Description | Data Type |
---|---|---|
GetUsersResult | UserDetailsServiceReturnModel |
![]() |
|
var model = new UserDetailsRequestModel() { IDs = new int[] { 123 } }; var results = serviceClient.GetUsers(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New UserDetailsRequestModel() With { .IDs = New Integer() {123} } Dim results = serviceClient.GetUsers(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If