The request body is of type GetParticipantsUpdateable.
Request Body Parameters
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
participantUpdateableRequest | ParticipantUpdateableRequestModel |

Overview
![]() |
|
Method | GetParticipantsUpdateable |
The request body is of type GetParticipantsUpdateable.
Name | Description | Data Type |
---|---|---|
serviceAuthentication | ServiceAuthenticationModel | |
participantUpdateableRequest | ParticipantUpdateableRequestModel |
![]() |
|
The response body is of type GetParticipantsUpdateableResponse.
Name | Description | Data Type |
---|---|---|
GetParticipantsUpdateableResult | ParticipantUpdateableServiceReturnModel |
![]() |
|
var model = new ParticipantUpdateableRequestModel() { IDs = new int[] { 1234567890 } }; var results = serviceClient.GetParticipantsUpdateable(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New ParticipantUpdateableRequestModel() With { .IDs = New Integer() {1234567890} } Dim results = serviceClient.GetParticipantsUpdateable(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If