The request body is of type GetTasksUpdateable.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| taskUpdateableRequest | TaskUpdateableRequestModel |

Overview
![]() |
|
| Method | GetTasksUpdateable |
The request body is of type GetTasksUpdateable.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| taskUpdateableRequest | TaskUpdateableRequestModel |

![]() |
|
The response body is of type GetTasksUpdateableResponse.
| Name | Description | Data Type |
|---|---|---|
| GetTasksUpdateableResult | TaskUpdateableServiceReturnModel |

![]() |
|
var model = new TaskUpdateableRequestModel() { IDs = new int[] { 1234567890 } }; var results = serviceClient.GetTasksUpdateable(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New TaskUpdateableRequestModel() With { .IDs = New Integer() {1234567890} } Dim results = serviceClient.GetTasksUpdateable(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If