The request body is of type GetDocumentsUpdateable.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| documentUpdateableRequest | DocumentUpdateableRequestModel |

Overview
![]() |
|
| Method | GetDocumentsUpdateable |
The request body is of type GetDocumentsUpdateable.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| documentUpdateableRequest | DocumentUpdateableRequestModel |

![]() |
|
The response body is of type GetDocumentsUpdateableResponse.
| Name | Description | Data Type |
|---|---|---|
| GetDocumentsUpdateableResult | DocumentUpdateableServiceReturnModel |

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